Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 39026 invoked from network); 22 Mar 2005 11:41:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Mar 2005 11:41:15 -0000 Received: (qmail 77782 invoked by uid 500); 22 Mar 2005 11:41:14 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 77745 invoked by uid 500); 22 Mar 2005 11:41:13 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 77731 invoked by uid 500); 22 Mar 2005 11:41:13 -0000 Received: (qmail 77727 invoked by uid 99); 22 Mar 2005 11:41:13 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 22 Mar 2005 03:41:13 -0800 Received: (qmail 29736 invoked by uid 1146); 22 Mar 2005 11:13:11 -0000 Date: 22 Mar 2005 11:13:11 -0000 Message-ID: <20050322111311.29735.qmail@minotaur.apache.org> From: bodewig@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/docs/manual/OptionalTasks attrib.html chgrp.html chown.html X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N bodewig 2005/03/22 03:13:11 Modified: docs/manual/CoreTasks Tag: ANT_16_BRANCH chmod.html docs/manual/OptionalTasks Tag: ANT_16_BRANCH attrib.html chgrp.html chown.html Log: merge Revision Changes Path No revision No revision 1.15.2.7 +11 -0 ant/docs/manual/CoreTasks/chmod.html Index: chmod.html =================================================================== RCS file: /home/cvs/ant/docs/manual/CoreTasks/chmod.html,v retrieving revision 1.15.2.6 retrieving revision 1.15.2.7 diff -u -r1.15.2.6 -r1.15.2.7 --- chmod.html 9 Mar 2005 11:30:57 -0000 1.15.2.6 +++ chmod.html 22 Mar 2005 11:13:10 -0000 1.15.2.7 @@ -26,6 +26,17 @@

Starting with Ant 1.6, this task also supports nested filelists.

+

By default this task will use a single invocation of the underlying +chmod command. If you are working on a large number of files this may +result in a command line that is too long for your operating system. +If you encounter such problems, you should set the maxparallel +attribute of this task to a non-zero value. The number to use highly +depends on the length of your file names (the depth of your directory +tree) and your operating system, so you'll have to experiment a +little. POSIX recommends command line length limits of at least 4096 +characters, this may give you an approximation for the number you +could use as initial value for these experiments.

+

Parameters

No revision No revision 1.5.2.3 +8 -0 ant/docs/manual/OptionalTasks/attrib.html Index: attrib.html =================================================================== RCS file: /home/cvs/ant/docs/manual/OptionalTasks/attrib.html,v retrieving revision 1.5.2.2 retrieving revision 1.5.2.3 diff -u -r1.5.2.2 -r1.5.2.3 --- attrib.html 9 Feb 2004 22:12:11 -0000 1.5.2.2 +++ attrib.html 22 Mar 2005 11:13:10 -0000 1.5.2.3 @@ -23,6 +23,14 @@ nested <fileset>, <dirset> and <filelist> elements.

+

By default this task will use a single invocation of the underlying +attrib command. If you are working on a large number of files this +may result in a command line that is too long for your operating +system. If you encounter such problems, you should set the +maxparallel attribute of this task to a non-zero value. The number to +use highly depends on the length of your file names (the depth of your +directory tree), so you'll have to experiment a little.

+

Parameters

1.4.2.4 +11 -0 ant/docs/manual/OptionalTasks/chgrp.html Index: chgrp.html =================================================================== RCS file: /home/cvs/ant/docs/manual/OptionalTasks/chgrp.html,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -u -r1.4.2.3 -r1.4.2.4 --- chgrp.html 12 Nov 2004 10:38:05 -0000 1.4.2.3 +++ chgrp.html 22 Mar 2005 11:13:10 -0000 1.4.2.4 @@ -23,6 +23,17 @@ nested <fileset>, <dirset> and <filelist> elements.

+

By default this task will use a single invocation of the underlying +chgrp command. If you are working on a large number of files this may +result in a command line that is too long for your operating system. +If you encounter such problems, you should set the maxparallel +attribute of this task to a non-zero value. The number to use highly +depends on the length of your file names (the depth of your directory +tree) and your operating system, so you'll have to experiment a +little. POSIX recommends command line length limits of at least 4096 +characters, this may give you an approximation for the number you +could use as initial value for these experiments.

+

Parameters

1.4.2.4 +11 -0 ant/docs/manual/OptionalTasks/chown.html Index: chown.html =================================================================== RCS file: /home/cvs/ant/docs/manual/OptionalTasks/chown.html,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -u -r1.4.2.3 -r1.4.2.4 --- chown.html 12 Nov 2004 10:38:05 -0000 1.4.2.3 +++ chown.html 22 Mar 2005 11:13:10 -0000 1.4.2.4 @@ -24,6 +24,17 @@ <filelist> elements.

+

By default this task will use a single invocation of the underlying +chown command. If you are working on a large number of files this may +result in a command line that is too long for your operating system. +If you encounter such problems, you should set the maxparallel +attribute of this task to a non-zero value. The number to use highly +depends on the length of your file names (the depth of your directory +tree) and your operating system, so you'll have to experiment a +little. POSIX recommends command line length limits of at least 4096 +characters, this may give you an approximation for the number you +could use as initial value for these experiments.

+

Parameters

--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org