From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../ant/apache-ant-1.9.6/manual/Types/fileset.html | 186 --------------------- 1 file changed, 186 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/fileset.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/fileset.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/fileset.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/fileset.html deleted file mode 100644 index 9a7c7d71..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Types/fileset.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - -FileSet Type - - - - -

FileSet

-

A FileSet is a group of files. These files can be found in a -directory tree starting in a base directory and are matched by -patterns taken from a number of PatternSets and -Selectors. -

PatternSets can be specified as nested -<patternset> elements. In addition, FileSet holds -an implicit PatternSet and supports the nested -<include>, <includesfile>, -<exclude> and <excludesfile> -elements of PatternSet directly, as well as PatternSet's -attributes.

-

Selectors are available as nested elements within the FileSet. -If any of the selectors within the FileSet do not select the file, the -file is not considered part of the FileSet. This makes a FileSet -equivalent to an <and> selector container.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
dirthe root of the directory tree of this FileSet.Either dir or file must be specified
fileshortcut for specifying a single-file fileset
defaultexcludesindicates whether default excludes should be used or not - (yes | no); default excludes are used when omitted.No
includescomma- or space-separated list of patterns of files that must be - included; all files are included when omitted.No
includesfilethe name of a file; each line of this file is - taken to be an include pattern.
- Note: if the file is empty and there are no other - patterns defined for the fileset, all files will be included. -
No
excludescomma- or space-separated list of patterns of files that must be - excluded; no files (except default excludes) are excluded when omitted.No
excludesfilethe name of a file; each line of this file is - taken to be an exclude pattern.No
casesensitiveMust the include and exclude patterns be treated in a case sensitive way? - Defaults to true.No
followsymlinksShall symbolic links be followed? Defaults to - true. See the note below.No
erroronmissingdir - Specify what happens if the base directory does not exist. - If true a build error will happen, if false, the fileset - will be ignored/empty. - Defaults to true. - Since Apache Ant 1.7.1 (default is true for backward compatibility - reasons.) - No
- -

Note: All files/directories for which -the canonical path is different from its path are considered symbolic -links. On Unix systems this usually means the file really is a -symbolic link but it may lead to false results on other -platforms.

- -

Examples

-
-<fileset dir="${server.src}" casesensitive="yes">
-  <include name="**/*.java"/>
-  <exclude name="**/*Test*"/>
-</fileset>
-
-

Groups all files in directory ${server.src} that are Java -source files and don't have the text Test in their -name.

- -
-<fileset dir="${server.src}" casesensitive="yes">
-  <patternset id="non.test.sources">
-    <include name="**/*.java"/>
-    <exclude name="**/*Test*"/>
-  </patternset>
-</fileset>
-
-

Groups the same files as the above example, but also establishes -a PatternSet that can be referenced in other -<fileset> elements, rooted at a different directory.

- -
-<fileset dir="${client.src}" >
-  <patternset refid="non.test.sources"/>
-</fileset>
-
-

Groups all files in directory ${client.src}, using the -same patterns as the above example.

- -
-<fileset dir="${server.src}" casesensitive="yes">
-  <filename name="**/*.java"/>
-  <filename name="**/*Test*" negate="true"/>
-</fileset>
-
-

Groups the same files as the top example, but using the -<filename> selector.

- -
-<fileset dir="${server.src}" casesensitive="yes">
-  <filename name="**/*.java"/>
-  <not>
-    <filename name="**/*Test*"/>
-  </not>
-</fileset>
-
-

Groups the same files as the previous example using a combination of the -<filename> selector and the <not> -selector container.

- -
-<fileset dir="src" includes="main/" />
-
-

Selects all files in src/main (e.g. src/main/Foo.java or -src/main/application/Bar.java).

- - - - - - -- cgit 1.2.3-korg