Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 50366 invoked from network); 3 Feb 2002 01:53:42 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 3 Feb 2002 01:53:42 -0000 Received: (qmail 10282 invoked by uid 97); 3 Feb 2002 01:53:46 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 10266 invoked by uid 97); 3 Feb 2002 01:53:45 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 10254 invoked by uid 97); 3 Feb 2002 01:53:45 -0000 Date: 3 Feb 2002 01:53:34 -0000 Message-ID: <20020203015334.54730.qmail@icarus.apache.org> From: umagesh@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant DirectoryScanner.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N umagesh 02/02/02 17:53:34 Modified: . WHATSNEW docs/manual dirtasks.html src/main/org/apache/tools/ant DirectoryScanner.java Log: The pattern definition **/._* has been added to the default excludes list. PR: 5886 Requested by: gerti-apache@bitart.com (Gerd Knops) Revision Changes Path 1.203 +4 -0 jakarta-ant/WHATSNEW Index: WHATSNEW =================================================================== RCS file: /home/cvs/jakarta-ant/WHATSNEW,v retrieving revision 1.202 retrieving revision 1.203 diff -u -r1.202 -r1.203 --- WHATSNEW 1 Feb 2002 22:29:21 -0000 1.202 +++ WHATSNEW 3 Feb 2002 01:53:34 -0000 1.203 @@ -28,6 +28,10 @@ a check is made to see if there is another overloaded method that takes in some other type of argument. If there is one such method, then the method that takes in String as an argument is not selected by the Introspector. + +* The pattern definition **/._* has been included into the Default + Excludes list. + Fixed bugs: ----------- 1.12 +8 -7 jakarta-ant/docs/manual/dirtasks.html Index: dirtasks.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/manual/dirtasks.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- dirtasks.html 10 Jan 2002 08:48:28 -0000 1.11 +++ dirtasks.html 3 Feb 2002 01:53:34 -0000 1.12 @@ -26,7 +26,7 @@ the include patterns, and don't match the exclude patterns, are used.

Patterns can be specified inside the buildfile via task attributes or nested elements and via external files. Each line of the external file -is taken as a pattern that is added to the list of include or exclude +is taken as a pattern that is added to the list of include or exclude patterns.

Patterns

As described earlier, patterns are used for the inclusion and exclusion. @@ -125,11 +125,11 @@ way to select just the files you want.

Examples

-
  
  +
   <copy todir="${dist}">
  -  <fileset dir="${src}" 
  -           includes="**/images/*" 
  -           excludes="**/*.gif" 
  +  <fileset dir="${src}"
  +           includes="**/images/*"
  +           excludes="**/*.gif"
     />
   </copy>

This copies all files in directories called images that are @@ -154,6 +154,7 @@ **/#*# **/.#* **/%*% + **/._* **/CVS **/CVS/** **/.cvsignore @@ -161,10 +162,10 @@ **/SCCS/** **/vssver.scc

-

If you do not want these default excludes applied, you may disable them with the +

If you do not want these default excludes applied, you may disable them with the defaultexcludes="no" attribute.


-

Copyright © 2001 Apache Software Foundation. All rights +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

1.21 +2 -1 jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java Index: DirectoryScanner.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- DirectoryScanner.java 10 Jan 2002 11:21:19 -0000 1.20 +++ DirectoryScanner.java 3 Feb 2002 01:53:34 -0000 1.21 @@ -1,7 +1,7 @@ /* * The Apache Software License, Version 1.1 * - * Copyright (c) 2000-2001 The Apache Software Foundation. All rights + * Copyright (c) 2000-2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -151,6 +151,7 @@ "**/#*#", "**/.#*", "**/%*%", + "**/._*", "**/CVS", "**/CVS/**", "**/.cvsignore", -- To unsubscribe, e-mail: For additional commands, e-mail: