diff --git a/manual/Types/selectors.html b/manual/Types/selectors.html
index eee0a8942..b4aa8b641 100644
--- a/manual/Types/selectors.html
+++ b/manual/Types/selectors.html
@@ -46,8 +46,7 @@
Core Selectors
.
Core selectors are the ones that come standard with Ant. They can be used within a fileset and can be contained @@ -95,8 +94,7 @@ Select files if they are writable. - -
The <contains>
tag in a FileSet limits
the files defined by that fileset to only those which contain the
@@ -149,8 +147,7 @@
script
.
The <date>
tag in a FileSet will put
a limit on the files specified by the include tag, so that tags
@@ -231,8 +228,7 @@
January 1, 2001.
The <depend>
tag selects files
whose last modified date is later than another, equivalent file in
@@ -284,8 +280,7 @@
The <depth>
tag selects files based on
how many directory levels deep they are in relation to the base
@@ -415,8 +410,7 @@
and selects those who are different, disregarding file times.
The <filename>
tag acts like the
<include>
and <exclude>
@@ -474,8 +468,7 @@
Selects all the cascading style sheet files.
- -The <present>
tag selects files
that have an equivalent file in another directory tree.
The <containsregexp>
tag in a FileSet limits
the files defined by that fileset to only those which contents contain a
@@ -593,8 +585,7 @@
(have a 4,5 or 6 followed by a period and a number from 0 to 9).
-
-
The <size>
tag in a FileSet will put
a limit on the files specified by the include tag, so that tags
@@ -654,8 +645,7 @@
Selects all JAR files that are larger than 4096 bytes.
- -The <type>
tag selects files of a certain type:
directory or regular.
The <modified>
selector computes a value for a file, compares that
to the value stored in a cache and select the file, if these two values
differ.
Uses com.mycompany.MyCache from a jar outside of Ants own classpath as cache implementation
- -The RuleBasedCollator needs a format for its work, but its needed while instantiation. There is a problem in the initialization algorithm for this case. Therefore you should not use this (or tell me the workaround :-).
- -
The <signedselector>
tag selects signed files and optionaly
@@ -1004,8 +991,7 @@
-
-
The <readable>
selector selects only files
that are readable. Ant only invokes
@@ -1013,8 +999,7 @@
but the Java VM cannot detect this state, this selector will
still select the file.
The <writable>
selector selects only files
that are writable. Ant only invokes
@@ -1022,8 +1007,7 @@
but the Java VM cannot detect this state, this selector will
still select the file.
The <scriptselector>
element enables you
@@ -1183,8 +1167,7 @@
Select files whose filename length is even.
-
-
To create more complex selections, a variety of selectors that contain other selectors are available for your use. They combine the @@ -1235,8 +1218,7 @@ Select files whose filename length is even.
<size>
The <and>
tag selects files that are
selected by all of the elements it contains. It returns as
@@ -1260,8 +1242,7 @@ Select files whose filename length is even.
The <majority>
tag selects files provided
that a majority of the contained elements also select it. Ties are
@@ -1303,8 +1284,7 @@ Select files whose filename length is even.
The <none>
tag selects files that are
not selected by any of the elements it contains. It returns as
@@ -1330,8 +1310,7 @@ Select files whose filename length is even.
The <not>
tag reverses the meaning of the
single selector it contains.
@@ -1352,8 +1331,7 @@ Select files whose filename length is even.
The <or>
tag selects files that are
selected by any one of the elements it contains. It returns as
@@ -1379,8 +1357,7 @@ Select files whose filename length is even.
The <selector>
tag is used to create selectors
that can be reused through references. It is the only selector which can
@@ -1477,8 +1454,7 @@ Select files whose filename length is even.
A fileset that conditionally contains Java source files and Test source and class files.
- -You can write your own selectors and use them within the selector
containers by specifying them within the <custom>
tag.