jhm 2004/05/06 02:08:43 Modified: docs/manual/CoreTasks concat.html docs/manual/CoreTypes regexp.html docs/manual/Integration VAJAntTool.html xdocs external.xml Log: Link Check Revision Changes Path 1.12 +61 -61 ant/docs/manual/CoreTasks/concat.html Index: concat.html =================================================================== RCS file: /home/cvs/ant/docs/manual/CoreTasks/concat.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- concat.html 20 Apr 2004 12:48:43 -0000 1.11 +++ concat.html 6 May 2004 09:08:42 -0000 1.12 @@ -12,58 +12,58 @@ <h3>Description</h3> <p> - Concatenates a file, or a series of files, to a single file or - the console. The destination file will be created if it does - not exist. + Concatenates a file, or a series of files, to a single file or + the console. The destination file will be created if it does + not exist. </p> <p> <a href="../using.html#path">Path</a>s and/or - <a href="../CoreTypes/fileset.html">FileSet</a>s and/or <a - href="../CoreTypes/filelist.html">FileList</a>s are used to - select which files are to be concatenated. There is no - singular 'file' attribute to specify a single file to cat. + <a href="../CoreTypes/fileset.html">FileSet</a>s and/or <a + href="../CoreTypes/filelist.html">FileList</a>s are used to + select which files are to be concatenated. There is no + singular 'file' attribute to specify a single file to cat. </p> <h3>Parameters</h3> <table border="1" cellpadding="2" cellspacing="0"> - <tr> - <td valign="top"><b>Attribute</b></td> - <td valign="top"><b>Description</b></td> - <td align="center" valign="top"><b>Required</b></td> - </tr> - - <tr> - <td valign="top">destfile</td> - <td valign="top"> - The destination file for the concatenated stream. + <tr> + <td valign="top"><b>Attribute</b></td> + <td valign="top"><b>Description</b></td> + <td align="center" valign="top"><b>Required</b></td> + </tr> + + <tr> + <td valign="top">destfile</td> + <td valign="top"> + The destination file for the concatenated stream. If not specified the console will be used instead. - </td> - <td valign="top" align="center"> - No - </td> - </tr> - - <tr> - <td valign="top">append</td> - <td valign="top"> - Specifies whether or not the file specified by 'destfile' - should be appended. Defaults to "no". - </td> - <td valign="top" align="center">No</td> - </tr> - <tr> - <td valign="top">force</td> + </td> + <td valign="top" align="center"> + No + </td> + </tr> + + <tr> + <td valign="top">append</td> + <td valign="top"> + Specifies whether or not the file specified by 'destfile' + should be appended. Defaults to "no". + </td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">force</td> <td valign="top"> - Specifies whether or not the file specified by 'destfile' - should be written to even if it is newer than all source files. + Specifies whether or not the file specified by 'destfile' + should be written to even if it is newer than all source files. <em>since Ant 1.6</em>. Defaults to "yes". - </td> - <td valign="top" align="center">No</td> - </tr> + </td> + <td valign="top" align="center">No</td> + </tr> <tr> <td valign="top">encoding</td> @@ -89,7 +89,7 @@ <tr> <td valign="top">fixlastline</td> <td valign="top"> - Specifies whether or not to check if + Specifies whether or not to check if each file concatenated is terminated by a new line. If this attribute is "yes" a new line will be appended to the stream if @@ -108,17 +108,17 @@ <em>since Ant 1.6</em> Valid values for this property are: <ul> - <li>cr: a single CR</li> - <li>lf: a single LF</li> - <li>crlf: the pair CRLF</li> - <li>mac: a single CR</li> - <li>unix: a single LF</li> - <li>dos: the pair CRLF</li> - </ul> + <li>cr: a single CR</li> + <li>lf: a single LF</li> + <li>crlf: the pair CRLF</li> + <li>mac: a single CR</li> + <li>unix: a single LF</li> + <li>dos: the pair CRLF</li> + </ul> The default is platform dependent. For Unix platforms, the default is "lf". - For DOS based systems (including Windows), - the default is "crlf". + For DOS based systems (including Windows), + the default is "crlf". For Mac OS, the default is "cr". </td> <td valign="top" align="center">No</td> @@ -131,7 +131,7 @@ <p><em>since Ant 1.6</em>.</p> <p> - This is a <a href="../CoreTypes/path.html">Path</a>. This is + This is a <a href="../using.html#path">Path</a>. This is used to select file files to be concatenated. Note that a file can only appear once in a path. If this is an issue consider using multiple paths. @@ -140,11 +140,11 @@ <h4>fileset</h4> <p> - <a href="../CoreTypes/fileset.html">FileSet</a>s are used to - select files to be concatenated. Note that the order in which - the files selected from a fileset are concatenated is - <i>not</i> guaranteed. If this is an issue, use multiple - filesets or consider using filelists. + <a href="../CoreTypes/fileset.html">FileSet</a>s are used to + select files to be concatenated. Note that the order in which + the files selected from a fileset are concatenated is + <i>not</i> guaranteed. If this is an issue, use multiple + filesets or consider using filelists. </p> <h4>filelist</h4> @@ -156,7 +156,7 @@ </p> <h4>filterchain</h4> <p><em>since Ant 1.6</em>.</p> - <p>The concat task supports nested + <p>The concat task supports nested <a href="../CoreTypes/filterchain.html"> FilterChain</a>s.</p> <h4>header,footer</h4> @@ -226,10 +226,10 @@ <pre> <concat destfile="${docbook.dir}/all-sections.xml" force="no"> - <filelist dir="${docbook.dir}/sections" + <filelist dir="${docbook.dir}/sections" files="introduction.xml,overview.xml"/> - <fileset dir="${docbook.dir}" - includes="sections/*.xml" + <fileset dir="${docbook.dir}" + includes="sections/*.xml" excludes="introduction.xml,overview.xml"/> </concat> </pre> @@ -267,10 +267,10 @@ <hr> <p align="center"> - Copyright © 2002-2004 The Apache Software Foundation. All - Rights Reserved. + Copyright © 2002-2004 The Apache Software Foundation. All + Rights Reserved. </p> </body> - </html> + </html> \ No newline at end of file 1.4 +2 -2 ant/docs/manual/CoreTypes/regexp.html Index: regexp.html =================================================================== RCS file: /home/cvs/ant/docs/manual/CoreTypes/regexp.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- regexp.html 9 Feb 2004 21:50:07 -0000 1.3 +++ regexp.html 6 May 2004 09:08:42 -0000 1.4 @@ -81,7 +81,7 @@ <h3>Usage</h3> The following tasks and types use the Regexp type : <ul> -<li><a href="CoreTasks/replaceregexp.html">ReplaceRegExp task</a></li> +<li><a href="../OptionalTasks/replaceregexp.html">ReplaceRegExp task</a></li> <li><a href="filterchain.html#linecontainsregexp">LineContainsRegexp filter</a></li> </ul> <p> @@ -95,4 +95,4 @@ <p align="center">Copyright © 2003-2004 The Apache Software Foundation. All rights Reserved.</p> </body> -</html> +</html> \ No newline at end of file 1.21 +4 -5 ant/docs/manual/Integration/VAJAntTool.html Index: VAJAntTool.html =================================================================== RCS file: /home/cvs/ant/docs/manual/Integration/VAJAntTool.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- VAJAntTool.html 21 May 2003 06:34:39 -0000 1.20 +++ VAJAntTool.html 6 May 2004 09:08:43 -0000 1.21 @@ -56,8 +56,8 @@ <td valign="top"> <UL> <LI>Now works outside of VAJ. - <LI>Added attribute haltonerror, "*" and "**" version qualifiers. - <LI>Amended documentation (this file) accordingly. + <LI>Added attribute haltonerror, "*" and "**" version qualifiers. + <LI>Amended documentation (this file) accordingly. </LI></UL></TD></TR> <tr valign="top"> <td valign="top">2001/06/14</TD> @@ -160,7 +160,7 @@ <h3>Description:</H3> <p>Exports Java source files, class files and/or resources from the workspace to the file system. Exports can be specified by giving the VAJ project -name and package name(s). This works very similar to +name and package name(s). This works very similar to <A href="../CoreTypes/fileset.html">FileSets</A>. </P> <h3>Parameters</H3> @@ -322,7 +322,7 @@ <h3>Parameters specified as nested elements</H3> <h4>fileset</H4> -A <A href="index.html#fileset">FileSet</A> specifies the files to import. +A <A href="../CoreTypes/fileset.html">FileSet</A> specifies the files to import. <h3>Example</H3> <pre><vajimport project="Test" importClasses="true"> @@ -566,4 +566,3 @@ Foundation. All rights Reserved.</CENTER> </body> </html> - 1.124 +1 -1 ant/xdocs/external.xml Index: external.xml =================================================================== RCS file: /home/cvs/ant/xdocs/external.xml,v retrieving revision 1.123 retrieving revision 1.124 diff -u -r1.123 -r1.124 --- external.xml 6 May 2004 06:03:45 -0000 1.123 +++ external.xml 6 May 2004 09:08:43 -0000 1.124 @@ -389,7 +389,7 @@ </tr> <tr> <th>Contact:</th> - <td><a href="[EMAIL PROTECTED]">[EMAIL PROTECTED]</a></td> + <td><a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</a></td> </tr> <tr> <th>License:</th>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]