diff --git a/WHATSNEW b/WHATSNEW
index 334839934..efe58a94c 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -335,13 +335,13 @@ Other changes:
*
The files and/or directories of a number of FileSets or FileLists are passed as arguments -to the system command.
+href="../CoreTypes/fileset.html">FileSets, DirSets (since Ant 1.6) +or FileLists (since Ant +1.6) are passed as arguments to the system command.If you specify a nested mapper and the dest attribute, the timestamp of each source file is compared to the timestamp of a @@ -137,7 +138,10 @@ one mapper.
You can use any number of nested <filelist>
elements to define the files for this task and refer to
<filelist>
s defined elsewhere.
Since Ant 1.6
+You can use any number of nested <dirset>
+elements to define the directories for this task and refer to
+<dirset>
s defined elsewhere.
Command line arguments should be specified as nested
<arg>
elements. See See the section on directory based
tasks, on how the inclusion/exclusion of files works, and how to
write patterns.
This task holds an implicit FileSet and
-supports all of FileSet's attributes and nested elements
-directly. More FileSets can be specified using nested
-<fileset>
elements.
This task holds an implicit FileSet and supports all of
+FileSet's attributes and nested elements directly. More sets can be
+specified using nested <fileset>
or
+<dirset>
(since Ant 1.6) elements.
Starting with Ant 1.6, this task also supports nested filelists.
@@ -75,7 +77,10 @@ href="../CoreTypes/filelist.html">filelists.- <chmod dir="${dist}/bin" perm="ugo+rx" includes="**/*.sh"/> +<chmod dir="${dist}/bin" perm="ugo+rx" + includes="**/*.sh"/>
makes all ".sh" files below ${dist}/bin
@@ -120,8 +126,29 @@ below any directory named trial) writable for members of the same
group on a UNIX system. In addition all files belonging to a FileSet
with id
other.shared.sources
get the same
permissions.
Copyright © 2000-2003 Apache Software Foundation. All rights -Reserved.
+ +++ ++<chmod perm="go-rwx" type="file"> + <fileset dir="/web"> + <include name="**/*.cgi"/> + <include name="**/*.old"/> + </fileset> + <dirset dir="/web"> + <include name="**/private_*"/> + </dirset> +</chmod> ++
keeps non-owners from touching cgi scripts, files with a .old
+extension or directories begining with private_
. A directory
+ending in .old
or a file begining with private_ would remain
+unaffected.
Copyright © 2000-2003 Apache Software Foundation. +All rights Reserved.