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/Tasks/attrib.html | 167 --------------------- 1 file changed, 167 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/attrib.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/attrib.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/attrib.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/attrib.html deleted file mode 100644 index a26f0c55..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/attrib.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -Apache Ant User Manual - - - - -

Attrib

-

Since Apache Ant 1.6.

-

Description

- -

Changes the attributes of a file or all files inside specified -directories. Right now it has effect only under Windows. Each of the -4 possible permissions has its own attribute, matching the arguments -for the attrib command.

- -

FileSets, -DirSets or FileLists can be specified using -nested <fileset>, <dirset> and -<filelist> elements.

- -

Starting with Ant 1.7, this task supports arbitrary Resource Collections -as nested elements.

- - - -

By default this task won't do anything unless it detects it is - running on a Windows system. If you know for sure that you have a - "attrib" executable on your PATH that is command line compatible with - the Windows command, you can use the task's os attribute and set its - value to your current os.

- -

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
filethe file or directory of which the permissions must be - changed.Yes or nested - <fileset/list> elements.
readonlythe readonly permission.at least one of the four.
archivethe archive permission.
systemthe system permission.
hiddenthe hidden permission.
typeOne of file, dir or both. If set to - file, only the permissions of plain files are going to be changed. - If set to dir, only the directories are considered.
- Note: The type attribute does not apply to - nested dirsets - dirsets always implicitly - assume type to be dir.
No, default is file
verboseWhether to print a summary after execution or not. - Defaults to false.No
oslist of Operating Systems on which the command may be - executed.No
osfamilyOS family as used in - the <os> - condition.No - defaults to "windows"
- -

Examples

-
-
<attrib file="${dist}/run.bat" readonly="true" hidden="true"/>
-
-

makes the "run.bat" file read-only and hidden.

- -
-
<attrib readonly="false">
-  <fileset dir="${meta.inf}" includes="**/*.xml"/>
-</attrib>
-
-
-

makes all ".xml" files below ${meta.inf} readable.

- -
-
-<attrib readonly="true" archive="true">
-  <fileset dir="shared/sources1">
-    <exclude name="**/trial/**"/>
-  </fileset>
-  <fileset refid="other.shared.sources"/>
-</attrib>
-
-
-

makes all files below shared/sources1 (except those below any - directory named trial) read-only and archived. In addition all files belonging - to a FileSet with id other.shared.sources get the - same attributes.

- - - - - -- cgit 1.2.3-korg