bodewig 2003/02/20 00:34:13
Modified: docs/manual/CoreTypes Tag: ANT_15_BRANCH selectors.html
src/main/org/apache/tools/ant Tag: ANT_15_BRANCH
IntrospectionHelper.java
src/script Tag: ANT_15_BRANCH lcp.bat
Log:
2003
Revision Changes Path
No revision
No revision
1.1.2.8 +26 -27 ant/docs/manual/CoreTypes/selectors.html
Index: selectors.html
===================================================================
RCS file: /home/cvs/ant/docs/manual/CoreTypes/selectors.html,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -u -r1.1.2.7 -r1.1.2.8
--- selectors.html 10 Feb 2003 13:59:38 -0000 1.1.2.7
+++ selectors.html 20 Feb 2003 08:34:13 -0000 1.1.2.8
@@ -14,18 +14,18 @@
<h3>How to use a Selector</h3>
- <p>A selector is an element of FileSet, and appears within it. It can
+ <p>A selector is an element of FileSet, and appears within it. It can
also be defined outside of any target by using the <selector> tag
and then using it as a reference.
</p>
<p>Different selectors have different attributes. Some selectors can
- contain other selectors, and these are called
- <a href="#selectcontainers"><code>Selector Containers</code></a>.
+ contain other selectors, and these are called
+ <a href="#selectcontainers"><code>Selector Containers</code></a>.
There is also a category of selectors that allow
user-defined extensions, called
<a href="#customselect"><code>Custom Selectors</code></a>.
- The ones built in to Ant are called
+ The ones built in to Ant are called
<a href="#coreselect"><code>Core Selectors</code></a>.
</p>
@@ -58,7 +58,6 @@
that are larger or smaller than a particular number of bytes.
</ul>
-
<a name="containsselect"></a>
<h4>Contains Selector</h4>
@@ -175,11 +174,11 @@
<p>The <code><depend></code> tag selects files
whose last modified date is later than another, equivalent file in
another location.</p>
-
+
<p>The <code><depend></code> tag supports the use of a
- contained <a href="mapper.html"><code><mapper></code></a> element
- to define the location of the file to be compared against. If no
- <code><mapper></code> element is specified, the
+ contained <a href="mapper.html"><code><mapper></code></a> element
+ to define the location of the file to be compared against. If no
+ <code><mapper></code> element is specified, the
<code>identity</code> type mapper is used.</p>
<table border="1" cellpadding="2" cellspacing="0">
@@ -216,7 +215,7 @@
</fileset>
</pre></blockquote>
- <p>Selects all the Java source files which were modified in the
+ <p>Selects all the Java source files which were modified in the
1.5 release.
</p>
@@ -320,11 +319,11 @@
<p>The <code><present></code> tag selects files
that have an equivalent file in another directory tree.</p>
-
+
<p>The <code><present></code> tag supports the use of a
- contained <a href="mapper.html"><code><mapper></code></a> element
- to define the location of the file to be tested against. If no
- <code><mapper></code> element is specified, the
+ contained <a href="mapper.html"><code><mapper></code></a> element
+ to define the location of the file to be tested against. If no
+ <code><mapper></code> element is specified, the
<code>identity</code> type mapper is used.</p>
<table border="1" cellpadding="2" cellspacing="0">
@@ -343,18 +342,18 @@
</tr>
<tr>
<td valign="top">present</td>
- <td valign="top">Whether we are requiring that a file is present in
+ <td valign="top">Whether we are requiring that a file is present in
the src directory tree only, or in both the src and the target
directory tree. Valid values are:
<ul>
- <li>srconly - select files only if they are in the src
+ <li>srconly - select files only if they are in the src
directory tree but not in the target directory tree
<li>both - select files only if they are present both in the
src and target directory trees
</ul>
Default is both. Setting this attribute to "srconly"
- is equivalent to wrapping the selector in the <not>
- selector container.
+ is equivalent to wrapping the selector in the <not>
+ selector container.
</td>
<td valign="top" align="center">No</td>
</tr>
@@ -368,7 +367,7 @@
</fileset>
</pre></blockquote>
- <p>Selects all the Java source files which are new in the
+ <p>Selects all the Java source files which are new in the
1.5 release.
</p>
@@ -491,7 +490,7 @@
soon as it finds a selector that does not select the file,
so it is not guaranteed to check every selector.
</p>
-
+
<p>Here is an example of how to use the And Selector:</p>
<blockquote><pre>
@@ -545,8 +544,8 @@
</fileset>
</pre></blockquote>
- <p>Selects all the HTML files which contain at least two of the three
- phrases "project", "taskdef", and "IntrospectionHelper" (this last
phrase must
+ <p>Selects all the HTML files which contain at least two of the three
+ phrases "project", "taskdef", and "IntrospectionHelper" (this last
phrase must
match case exactly).
</p>
@@ -559,7 +558,7 @@
soon as it finds a selector that selects the file,
so it is not guaranteed to check every selector.
</p>
-
+
<p>Here is an example of how to use the None Selector:</p>
<blockquote><pre>
@@ -573,7 +572,7 @@
</fileset>
</pre></blockquote>
- <p>Selects only Java files which do not have equivalent java or
+ <p>Selects only Java files which do not have equivalent java or
class files in the dest directory.
</p>
@@ -584,7 +583,7 @@
<p>The <code><not></code> tag reverses the meaning of the
single selector it contains.
</p>
-
+
<p>Here is an example of how to use the Not Selector:</p>
<blockquote><pre>
@@ -608,7 +607,7 @@
soon as it finds a selector that selects the file,
so it is not guaranteed to check every selector.
</p>
-
+
<p>Here is an example of how to use the Or Selector:</p>
<blockquote><pre>
@@ -622,7 +621,7 @@
</fileset>
</pre></blockquote>
- <p>Selects all the files in the top directory along with all the
+ <p>Selects all the files in the top directory along with all the
image files below it.
</p>
No revision
No revision
1.42.2.3 +1 -1
ant/src/main/org/apache/tools/ant/IntrospectionHelper.java
Index: IntrospectionHelper.java
===================================================================
RCS file:
/home/cvs/ant/src/main/org/apache/tools/ant/IntrospectionHelper.java,v
retrieving revision 1.42.2.2
retrieving revision 1.42.2.3
diff -u -r1.42.2.2 -r1.42.2.3
--- IntrospectionHelper.java 19 Feb 2003 14:44:54 -0000 1.42.2.2
+++ IntrospectionHelper.java 20 Feb 2003 08:34:13 -0000 1.42.2.3
@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
- * Copyright (c) 2000-2002 The Apache Software Foundation. All rights
+ * Copyright (c) 2000-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
No revision
No revision
1.3.2.4 +1 -1 ant/src/script/lcp.bat
Index: lcp.bat
===================================================================
RCS file: /home/cvs/ant/src/script/lcp.bat,v
retrieving revision 1.3.2.3
retrieving revision 1.3.2.4
diff -u -r1.3.2.3 -r1.3.2.4
--- lcp.bat 19 Feb 2003 10:47:30 -0000 1.3.2.3
+++ lcp.bat 20 Feb 2003 08:34:13 -0000 1.3.2.4
@@ -1,4 +1,4 @@
-REM Copyright (c) 2001-2002 The Apache Software Foundation. All rights
+REM Copyright (c) 2001-2003 The Apache Software Foundation. All rights
REM reserved.
set _CLASSPATHCOMPONENT=%1