Browse Source

<tag /> ---> <tag/>

remove some stray CRs
fix some typos

Submitted by:	Larry Shatzer <Larry.Shatzer@Spirent.com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273291 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
7f2af7960c
59 changed files with 719 additions and 755 deletions
  1. +341
    -341
      build.xml
  2. +9
    -9
      docs/manual/CoreTasks/ant.html
  3. +1
    -1
      docs/manual/CoreTasks/antcall.html
  4. +2
    -2
      docs/manual/CoreTasks/apply.html
  5. +4
    -4
      docs/manual/CoreTasks/concat.html
  6. +8
    -6
      docs/manual/CoreTasks/condition.html
  7. +4
    -4
      docs/manual/CoreTasks/conditions.html
  8. +8
    -8
      docs/manual/CoreTasks/copy.html
  9. +3
    -5
      docs/manual/CoreTasks/copyfile.html
  10. +0
    -3
      docs/manual/CoreTasks/cvstagdiff.html
  11. +2
    -2
      docs/manual/CoreTasks/delete.html
  12. +4
    -4
      docs/manual/CoreTasks/echo.html
  13. +1
    -1
      docs/manual/CoreTasks/exec.html
  14. +1
    -1
      docs/manual/CoreTasks/get.html
  15. +1
    -1
      docs/manual/CoreTasks/input.html
  16. +1
    -1
      docs/manual/CoreTasks/java.html
  17. +3
    -3
      docs/manual/CoreTasks/javadoc.html
  18. +3
    -3
      docs/manual/CoreTasks/loadfile.html
  19. +1
    -1
      docs/manual/CoreTasks/loadproperties.html
  20. +1
    -1
      docs/manual/CoreTasks/mail.html
  21. +6
    -6
      docs/manual/CoreTasks/manifest.html
  22. +4
    -4
      docs/manual/CoreTasks/move.html
  23. +2
    -4
      docs/manual/CoreTasks/pack.html
  24. +3
    -3
      docs/manual/CoreTasks/parallel.html
  25. +4
    -4
      docs/manual/CoreTasks/recorder.html
  26. +2
    -2
      docs/manual/CoreTasks/replace.html
  27. +3
    -3
      docs/manual/CoreTasks/sequential.html
  28. +2
    -2
      docs/manual/CoreTasks/sleep.html
  29. +5
    -5
      docs/manual/CoreTasks/sql.html
  30. +1
    -2
      docs/manual/CoreTasks/unzip.html
  31. +1
    -1
      docs/manual/CoreTasks/xmlproperty.html
  32. +1
    -1
      docs/manual/CoreTypes/dirset.html
  33. +3
    -3
      docs/manual/CoreTypes/fileset.html
  34. +1
    -1
      docs/manual/CoreTypes/filterset.html
  35. +5
    -5
      docs/manual/CoreTypes/patternset.html
  36. +7
    -7
      docs/manual/Integration/VAJAntTool.html
  37. +2
    -2
      docs/manual/OptionalTasks/BorlandEJBTasks.html
  38. +1
    -1
      docs/manual/OptionalTasks/antlr.html
  39. +1
    -1
      docs/manual/OptionalTasks/ccm.html
  40. +3
    -3
      docs/manual/OptionalTasks/clearcase.html
  41. +2
    -2
      docs/manual/OptionalTasks/echoproperties.html
  42. +27
    -19
      docs/manual/OptionalTasks/ejb.html
  43. +4
    -4
      docs/manual/OptionalTasks/ftp.html
  44. +2
    -2
      docs/manual/OptionalTasks/javah.html
  45. +6
    -5
      docs/manual/OptionalTasks/jdepend.html
  46. +1
    -1
      docs/manual/OptionalTasks/jspc.html
  47. +10
    -10
      docs/manual/OptionalTasks/junit.html
  48. +1
    -1
      docs/manual/OptionalTasks/mmetrics.html
  49. +3
    -3
      docs/manual/OptionalTasks/native2ascii.html
  50. +23
    -23
      docs/manual/OptionalTasks/perforce.html
  51. +4
    -4
      docs/manual/OptionalTasks/propertyfile.html
  52. +8
    -8
      docs/manual/OptionalTasks/replaceregexp.html
  53. +7
    -6
      docs/manual/OptionalTasks/serverdeploy.html
  54. +37
    -78
      docs/manual/OptionalTasks/sos.html
  55. +115
    -115
      docs/manual/OptionalTasks/starteam.html
  56. +10
    -9
      docs/manual/OptionalTasks/wljspc.html
  57. +1
    -1
      docs/manual/OptionalTasks/xmlvalidate.html
  58. +2
    -2
      docs/manual/OptionalTypes/classfileset.html
  59. +1
    -1
      docs/manual/OptionalTypes/extension.html

+ 341
- 341
build.xml
File diff suppressed because it is too large
View File


+ 9
- 9
docs/manual/CoreTasks/ant.html View File

@@ -172,10 +172,10 @@ details:</p>
<pre> <pre>
&lt;path id="path1"&gt; &lt;path id="path1"&gt;
... ...
&lt;/&gt;
&lt;/path&gt;
&lt;path id="path2"&gt; &lt;path id="path2"&gt;
... ...
&lt;/&gt;
&lt;/path&gt;
</pre> </pre>


<p>and the called build file (<code>subbuild.xml</code>) also defines <p>and the called build file (<code>subbuild.xml</code>) also defines
@@ -183,7 +183,7 @@ a <code>&lt;path&gt;</code> with the id <code>path1</code>, but
<code>path2</code> is not defined:</p> <code>path2</code> is not defined:</p>


<pre> <pre>
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;true&quot; /&gt;
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;true&quot;/&gt;
</pre> </pre>


<p>will not override <code>subbuild</code>'s definition of <p>will not override <code>subbuild</code>'s definition of
@@ -191,21 +191,21 @@ a <code>&lt;path&gt;</code> with the id <code>path1</code>, but
<code>path2</code> available in the subbuild.</p> <code>path2</code> available in the subbuild.</p>


<pre> <pre>
&lt;ant antfile=&quot;subbuild.xml&quot; /&gt;
&lt;ant antfile=&quot;subbuild.xml&quot;/&gt;
</pre> </pre>


<p>as well as</p> <p>as well as</p>


<pre> <pre>
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot; /&gt;
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;/&gt;
</pre> </pre>


<p>will neither override <code>path1</code> nor copy <p>will neither override <code>path1</code> nor copy
<code>path2</code>.</p> <code>path2</code>.</p>


<pre> <pre>
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot; &gt;
&lt;reference refid=&quot;path1&quot; /&gt;
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
&lt;reference refid=&quot;path1&quot;/&gt;
&lt;/ant&gt; &lt;/ant&gt;
</pre> </pre>


@@ -213,8 +213,8 @@ a <code>&lt;path&gt;</code> with the id <code>path1</code>, but
<code>path1</code>.</p> <code>path1</code>.</p>


<pre> <pre>
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot; &gt;
&lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot; /&gt;
&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
&lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
&lt;/ant&gt; &lt;/ant&gt;
</pre> </pre>




+ 1
- 1
docs/manual/CoreTasks/antcall.html View File

@@ -105,7 +105,7 @@ optionally changing their id.</p>


<pre> <pre>
&lt;antcall ... &gt; &lt;antcall ... &gt;
&lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot; /&gt;
&lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
&lt;/antcall&gt; &lt;/antcall&gt;
</pre> </pre>




+ 2
- 2
docs/manual/CoreTasks/apply.html View File

@@ -157,7 +157,7 @@ system command via nested <code>&lt;env&gt;</code> elements. See the
description in the section about <a href="exec.html#env">exec</a></p> description in the section about <a href="exec.html#env">exec</a></p>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote><pre> <blockquote><pre>
&lt;apply executable=&quot;ls&quot; &gt;
&lt;apply executable=&quot;ls&quot;&gt;
&lt;arg value=&quot;-l&quot;/&gt; &lt;arg value=&quot;-l&quot;/&gt;
&lt;fileset dir=&quot;/tmp&quot;&gt; &lt;fileset dir=&quot;/tmp&quot;&gt;
&lt;patternset&gt; &lt;patternset&gt;
@@ -172,7 +172,7 @@ files below <code>/tmp</code> not ending in <code>.txt</code> and all
files of the FileSet with <code>id</code> <code>other.files</code> to files of the FileSet with <code>id</code> <code>other.files</code> to
the command line.</p> the command line.</p>
<blockquote><pre> <blockquote><pre>
&lt;apply executable=&quot;somecommand&quot; parallel=&quot;false&quot; &gt;
&lt;apply executable=&quot;somecommand&quot; parallel=&quot;false&quot;&gt;
&lt;arg value=&quot;arg1&quot;/&gt; &lt;arg value=&quot;arg1&quot;/&gt;
&lt;srcfile/&gt; &lt;srcfile/&gt;
&lt;arg value=&quot;arg2&quot;/&gt; &lt;arg value=&quot;arg2&quot;/&gt;


+ 4
- 4
docs/manual/CoreTasks/concat.html View File

@@ -103,7 +103,7 @@


<pre> <pre>
&lt;concat&gt; &lt;concat&gt;
&lt;fileset dir=&quot;messages&quot; includes=&quot;*important*&quot; /&gt;
&lt;fileset dir=&quot;messages&quot; includes=&quot;*important*&quot;/&gt;
&lt;/concat&gt; &lt;/concat&gt;
</pre> </pre>


@@ -111,7 +111,7 @@


<pre> <pre>
&lt;concat destfile=&quot;NOTES&quot; append=&quot;true&quot;&gt; &lt;concat destfile=&quot;NOTES&quot; append=&quot;true&quot;&gt;
&lt;filelist dir=&quot;notes&quot; files=&quot;note.txt&quot; /&gt;
&lt;filelist dir=&quot;notes&quot; files=&quot;note.txt&quot;/&gt;
&lt;/concat&gt; &lt;/concat&gt;
</pre> </pre>


@@ -121,10 +121,10 @@
<pre> <pre>
&lt;concat destfile=&quot;${docbook.dir}/all-sections.xml&quot;&gt; &lt;concat destfile=&quot;${docbook.dir}/all-sections.xml&quot;&gt;
&lt;filelist dir=&quot;${docbook.dir}/sections&quot; &lt;filelist dir=&quot;${docbook.dir}/sections&quot;
files=&quot;introduction.xml,overview.xml&quot; /&gt;
files=&quot;introduction.xml,overview.xml&quot;/&gt;
&lt;fileset dir=&quot;${docbook.dir}&quot; &lt;fileset dir=&quot;${docbook.dir}&quot;
includes=&quot;sections/*.xml&quot; includes=&quot;sections/*.xml&quot;
excludes=&quot;introduction.xml,overview.xml&quot; /&gt;
excludes=&quot;introduction.xml,overview.xml&quot;/&gt;
&lt;/concat&gt; &lt;/concat&gt;
</pre> </pre>




+ 8
- 6
docs/manual/CoreTasks/condition.html View File

@@ -45,8 +45,8 @@ complete list see <a href="conditions.html">here</a>.</p>
<pre> <pre>
&lt;condition property=&quot;javamail.complete&quot;&gt; &lt;condition property=&quot;javamail.complete&quot;&gt;
&lt;and&gt; &lt;and&gt;
&lt;available classname=&quot;javax.activation.DataHandler&quot; /&gt;
&lt;available classname=&quot;javax.mail.Transport&quot; /&gt;
&lt;available classname=&quot;javax.activation.DataHandler&quot;/&gt;
&lt;available classname=&quot;javax.mail.Transport&quot;/&gt;
&lt;/and&gt; &lt;/and&gt;
&lt;/condition&gt; &lt;/condition&gt;
</pre> </pre>
@@ -57,9 +57,11 @@ classpath.</p>
<pre> <pre>
&lt;condition property=&quot;isMacOsButNotMacOsX&quot;&gt; &lt;condition property=&quot;isMacOsButNotMacOsX&quot;&gt;
&lt;and&gt; &lt;and&gt;
&lt;os family=&quot;mac&quot; /&gt;
&lt;os family=&quot;mac&quot;/&gt;

&lt;not&gt; &lt;not&gt;
&lt;os family=&quot;unix&quot; /&gt;
&lt;os family=&quot;unix&quot;/&gt;

&lt;/not&gt; &lt;/not&gt;
&lt;/and&gt; &lt;/and&gt;
&lt;/condition&gt; &lt;/condition&gt;
@@ -70,7 +72,8 @@ in the Unix family as well.</p>


<pre> <pre>
&lt;condition property=&quot;isSunOSonSparc&quot;&gt; &lt;condition property=&quot;isSunOSonSparc&quot;&gt;
&lt;os name=&quot;SunOS&quot; arch=&quot;sparc&quot; /&gt;
&lt;os name=&quot;SunOS&quot; arch=&quot;sparc&quot;/&gt;

&lt;/condition&gt; &lt;/condition&gt;
</pre> </pre>
<p>sets the property <code>isSunOSonSparc</code> if the current <p>sets the property <code>isSunOSonSparc</code> if the current
@@ -82,4 +85,3 @@ Foundation. All rights Reserved.</p>


</body> </body>
</html> </html>


+ 4
- 4
docs/manual/CoreTasks/conditions.html View File

@@ -268,8 +268,8 @@ that is "true","yes", or "on"</p>
</tr> </tr>
</table> </table>
<pre> <pre>
&lt;istrue value=&quot;${someproperty}&quot; /&gt;
&lt;istrue value=&quot;false&quot; /&gt;
&lt;istrue value=&quot;${someproperty}&quot;/&gt;
&lt;istrue value=&quot;false&quot;/&gt;
</pre> </pre>


<h4>isfalse</h4> <h4>isfalse</h4>
@@ -288,8 +288,8 @@ that is "true","yes", or "on"</p>
</tr> </tr>
</table> </table>
<pre> <pre>
&lt;isfalse value=&quot;${someproperty}&quot; /&gt;
&lt;isfalse value=&quot;false&quot; /&gt;
&lt;isfalse value=&quot;${someproperty}&quot;/&gt;
&lt;isfalse value=&quot;false&quot;/&gt;
</pre> </pre>


<hr> <hr>


+ 8
- 8
docs/manual/CoreTasks/copy.html View File

@@ -140,21 +140,21 @@ followed by &lt;filterset&gt; elements.
</pre> </pre>
<p><b>Copy a set of files to a directory</b></p> <p><b>Copy a set of files to a directory</b></p>
<pre> <pre>
&lt;copy todir=&quot;../dest/dir&quot; &gt;
&lt;fileset dir=&quot;src_dir&quot; &gt;
&lt;copy todir=&quot;../dest/dir&quot;&gt;
&lt;fileset dir=&quot;src_dir&quot;&gt;
&lt;exclude name=&quot;**/*.java&quot;/&gt; &lt;exclude name=&quot;**/*.java&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;/copy&gt; &lt;/copy&gt;


&lt;copy todir=&quot;../dest/dir&quot; &gt;
&lt;copy todir=&quot;../dest/dir&quot;&gt;
&lt;fileset dir=&quot;src_dir&quot; excludes=&quot;**/*.java&quot;/&gt; &lt;fileset dir=&quot;src_dir&quot; excludes=&quot;**/*.java&quot;/&gt;
&lt;/copy&gt; &lt;/copy&gt;
</pre> </pre>
<p><b>Copy a set of files to a directory, appending <p><b>Copy a set of files to a directory, appending
<code>.bak</code> to the file name on the fly</b></p> <code>.bak</code> to the file name on the fly</b></p>
<pre> <pre>
&lt;copy todir=&quot;../backup/dir&quot; &gt;
&lt;fileset dir=&quot;src_dir&quot; /&gt;
&lt;copy todir=&quot;../backup/dir&quot;&gt;
&lt;fileset dir=&quot;src_dir&quot;/&gt;
&lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*.bak&quot;/&gt; &lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*.bak&quot;/&gt;
&lt;/copy&gt; &lt;/copy&gt;
</pre> </pre>
@@ -163,10 +163,10 @@ followed by &lt;filterset&gt; elements.
<p><b>Copy a set of files to a directory, replacing @TITLE@ with Foo Bar <p><b>Copy a set of files to a directory, replacing @TITLE@ with Foo Bar
in all files.</b></p> in all files.</b></p>
<pre> <pre>
&lt;copy todir=&quot;../backup/dir&quot; &gt;
&lt;fileset dir=&quot;src_dir&quot; /&gt;
&lt;copy todir=&quot;../backup/dir&quot;&gt;
&lt;fileset dir=&quot;src_dir&quot;/&gt;
&lt;filterset&gt; &lt;filterset&gt;
&lt;filter token=&quot;TITLE&quot; value=&quot;Foo Bar&quot; /&gt;
&lt;filter token=&quot;TITLE&quot; value=&quot;Foo Bar&quot;/&gt;
&lt;/filterset&gt; &lt;/filterset&gt;
&lt;/copy&gt; &lt;/copy&gt;
</pre> </pre>


+ 3
- 5
docs/manual/CoreTasks/copyfile.html View File

@@ -46,12 +46,10 @@ does not exist.</p>
</table> </table>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote> <blockquote>
<p><code>&lt;copyfile src=&quot;test.java&quot; dest=&quot;subdir/test.java&quot;
/&gt;</code></p>
<p><code>&lt;copyfile src=&quot;${src}/index.html&quot; dest=&quot;${dist}/help/index.html&quot;
/&gt;</code></p>
<p><code>&lt;copyfile src=&quot;test.java&quot; dest=&quot;subdir/test.java&quot;/&gt;</code></p>
<p><code>&lt;copyfile src=&quot;${src}/index.html&quot; dest=&quot;${dist}/help/index.html&quot;/&gt;</code></p>
</blockquote> </blockquote>
<hr><p align="center">Copyright &copy; 2000-2001 Apache Software Foundation. All rights
<hr><p align="center">Copyright &copy; 2000-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>


</body> </body>


+ 0
- 3
docs/manual/CoreTasks/cvstagdiff.html View File

@@ -1,12 +1,9 @@
<html> <html>

<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Language" content="en-us">
<title>CvsTagDiff Task</title> <title>CvsTagDiff Task</title>
</head> </head>

<body> <body>

<h2><a name="cvstagdiff">CvsTagDiff</a></h2> <h2><a name="cvstagdiff">CvsTagDiff</a></h2>
<h3>Description</h3> <h3>Description</h3>
<p>Generates an XML-formatted report file of the changes between two tags or dates recorded in a <p>Generates an XML-formatted report file of the changes between two tags or dates recorded in a


+ 2
- 2
docs/manual/CoreTasks/delete.html View File

@@ -143,8 +143,8 @@ and subdirectories of <code>lib</code>.</p>
</pre> </pre>
<p>deletes all files with the extension <code>.bak</code> from the current directory <p>deletes all files with the extension <code>.bak</code> from the current directory
and any subdirectories.</p> and any subdirectories.</p>
<pre> &lt;delete includeEmptyDirs=&quot;true&quot; &gt;
&lt;fileset dir=&quot;build&quot; /&gt;
<pre> &lt;delete includeEmptyDirs=&quot;true&quot;&gt;
&lt;fileset dir=&quot;build&quot;/&gt;
&lt;/delete&gt; &lt;/delete&gt;
</pre> </pre>
<p>deletes all files and subdirectories of <code>build</code>, including <p>deletes all files and subdirectories of <code>build</code>, including


+ 4
- 4
docs/manual/CoreTasks/echo.html View File

@@ -66,16 +66,16 @@ three lines; the first line is a blank
As XML parsers are wont to do, the first newline in the text element As XML parsers are wont to do, the first newline in the text element
has been included in the text. has been included in the text.


<pre>&lt;echo message=&quot;Deleting drive C:&quot; level=&quot;debug&quot; /&gt;</pre>
<pre>&lt;echo message=&quot;Deleting drive C:&quot; level=&quot;debug&quot;/&gt;</pre>
A message which only appears in <tt>-debug</tt> mode. A message which only appears in <tt>-debug</tt> mode.
<pre>&lt;echo level=&quot;error&quot; &gt;
<pre>&lt;echo level=&quot;error&quot;&gt;
Imminent failure in the antimatter containment facility. Imminent failure in the antimatter containment facility.
Please withdraw to safe location at least 50km away. Please withdraw to safe location at least 50km away.
&lt;/echo&gt; &lt;/echo&gt;
</pre> </pre>
A message which appears even in <tt>-quiet</tt> mode. A message which appears even in <tt>-quiet</tt> mode.


<pre>&lt;echo file="runner.csh" append="false" &gt;#\!/bin/tcsh
<pre>&lt;echo file="runner.csh" append="false"&gt;#\!/bin/tcsh
java-1.3.1 -mx1024m ${project.entrypoint} $$* java-1.3.1 -mx1024m ${project.entrypoint} $$*
</echo></pre> </echo></pre>
Generate a shell script by echoing to a file. Generate a shell script by echoing to a file.
@@ -83,7 +83,7 @@ Note the use of a double $ symbol to stop Ant
filtering out the single $ during variable expansion filtering out the single $ during variable expansion
<hr> <hr>


<p align="center">Copyright &copy; 2000-2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2000-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>


</body> </body>


+ 1
- 1
docs/manual/CoreTasks/exec.html View File

@@ -170,7 +170,7 @@ but some configuration problem on your machine.


<h3>Examples</h3> <h3>Examples</h3>
<blockquote><pre> <blockquote><pre>
&lt;exec executable=&quot;emacs&quot; &gt;
&lt;exec executable=&quot;emacs&quot;&gt;
&lt;env key=&quot;DISPLAY&quot; value=&quot;:1.0&quot;/&gt; &lt;env key=&quot;DISPLAY&quot; value=&quot;:1.0&quot;/&gt;
&lt;/exec&gt; &lt;/exec&gt;
</pre></blockquote> </pre></blockquote>


+ 1
- 1
docs/manual/CoreTasks/get.html View File

@@ -93,7 +93,7 @@ for progress information.
<pre> &lt;get src=&quot;https://insecure-bank.org/statement/user=1214&quot; <pre> &lt;get src=&quot;https://insecure-bank.org/statement/user=1214&quot;
dest=&quot;statement.html&quot; dest=&quot;statement.html&quot;
username="1214"; username="1214";
password="secret" /&gt;</pre>
password="secret"/&gt;</pre>
<p> <p>
Fetches some file from a server with access control. Because https is being used the Fetches some file from a server with access control. Because https is being used the
fact that basic auth sends passwords in plaintext is moot. fact that basic auth sends passwords in plaintext is moot.


+ 1
- 1
docs/manual/CoreTasks/input.html View File

@@ -80,7 +80,7 @@ continue...&quot; and pause the build run until return key is pressed
addproperty=&quot;do.delete&quot; addproperty=&quot;do.delete&quot;
/&gt; /&gt;
&lt;condition property=&quot;do.abort&quot;&gt; &lt;condition property=&quot;do.abort&quot;&gt;
&lt;equals arg1=&quot;n&quot; arg2=&quot;${do.delete}&quot; /&gt;
&lt;equals arg1=&quot;n&quot; arg2=&quot;${do.delete}&quot;/&gt;
&lt;/condition&gt; &lt;/condition&gt;
&lt;fail if=&quot;do.abort&quot;&gt;Build aborted by user.&lt;/fail&gt; &lt;fail if=&quot;do.abort&quot;&gt;Build aborted by user.&lt;/fail&gt;
</pre> </pre>


+ 1
- 1
docs/manual/CoreTasks/java.html View File

@@ -138,7 +138,7 @@ section about <a href="exec.html#env">exec</a></p>
<p>Settings will be ignored if fork is disabled.</p> <p>Settings will be ignored if fork is disabled.</p>
<h3>Examples</h3> <h3>Examples</h3>
<pre> <pre>
&lt;java classname=&quot;test.Main&quot; &gt;
&lt;java classname=&quot;test.Main&quot;&gt;
&lt;arg value=&quot;-h&quot;/&gt; &lt;arg value=&quot;-h&quot;/&gt;
&lt;classpath&gt; &lt;classpath&gt;
&lt;pathelement location=&quot;dist/test.jar&quot;/&gt; &lt;pathelement location=&quot;dist/test.jar&quot;/&gt;


+ 3
- 3
docs/manual/CoreTasks/javadoc.html View File

@@ -579,7 +579,7 @@ therefore, if they can be interpreted by the doclet in use.</p>
element. These paramaters are restricted to simple strings. An example usage element. These paramaters are restricted to simple strings. An example usage
of the doclet element is shown below:</p> of the doclet element is shown below:</p>


<pre> &lt;javadoc ...&gt;
<pre> &lt;javadoc ... &gt;
&lt;doclet name=&quot;theDoclet&quot; &lt;doclet name=&quot;theDoclet&quot;
path=&quot;path/to/theDoclet&quot;&gt; path=&quot;path/to/theDoclet&quot;&gt;
&lt;param name=&quot;-foo&quot; value=&quot;foovalue&quot;/&gt; &lt;param name=&quot;-foo&quot; value=&quot;foovalue&quot;/&gt;
@@ -688,7 +688,7 @@ respectively.</p>


&lt;packageset dir=&quot;src&quot; defaultexcludes=&quot;yes&quot;&gt; &lt;packageset dir=&quot;src&quot; defaultexcludes=&quot;yes&quot;&gt;
&lt;include name=&quot;com/dummy/test/**&quot; /&gt; &lt;include name=&quot;com/dummy/test/**&quot; /&gt;
&lt;exclude name=&quot;com/dummy/test/doc-files/**&quot; /&gt;
&lt;exclude name=&quot;com/dummy/test/doc-files/**&quot;/&gt;
&lt;/packageset&gt; &lt;/packageset&gt;


&lt;doctitle&gt;&lt;![CDATA[&lt;h1&gt;Test&lt;/h1&gt;]]&gt;&lt;/doctitle&gt; &lt;doctitle&gt;&lt;![CDATA[&lt;h1&gt;Test&lt;/h1&gt;]]&gt;&lt;/doctitle&gt;
@@ -711,7 +711,7 @@ respectively.</p>


&lt;fileset dir=&quot;src&quot; defaultexcludes=&quot;yes&quot;&gt; &lt;fileset dir=&quot;src&quot; defaultexcludes=&quot;yes&quot;&gt;
&lt;include name=&quot;com/dummy/test/**&quot; /&gt; &lt;include name=&quot;com/dummy/test/**&quot; /&gt;
&lt;exclude name=&quot;com/dummy/test/doc-files/**&quot; /&gt;
&lt;exclude name=&quot;com/dummy/test/doc-files/**&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;


&lt;doctitle&gt;&lt;![CDATA[&lt;h1&gt;Test&lt;/h1&gt;]]&gt;&lt;/doctitle&gt; &lt;doctitle&gt;&lt;![CDATA[&lt;h1&gt;Test&lt;/h1&gt;]]&gt;&lt;/doctitle&gt;


+ 3
- 3
docs/manual/CoreTasks/loadfile.html View File

@@ -48,21 +48,21 @@ FilterChain</a>s.


<h3>Examples</h3> <h3>Examples</h3>
<pre> &lt;loadfile property="message" <pre> &lt;loadfile property="message"
srcFile="message.txt" /&gt;
srcFile="message.txt"/&gt;
</pre> </pre>
Load file message.txt into property "message"; an <tt>&lt;echo&gt;</tt> Load file message.txt into property "message"; an <tt>&lt;echo&gt;</tt>
can print this. can print this.


<pre> &lt;loadfile property="encoded-file" <pre> &lt;loadfile property="encoded-file"
srcFile="loadfile.xml" srcFile="loadfile.xml"
encoding="ISO-8859-1" /&gt;
encoding="ISO-8859-1"/&gt;
</pre> </pre>
Load a file using the latin-1 encoding Load a file using the latin-1 encoding


<pre> &lt;loadfile <pre> &lt;loadfile
property="optional.value" property="optional.value"
srcFile="optional.txt" srcFile="optional.txt"
failonerror="false" /&gt;
failonerror="false"/&gt;
</pre> </pre>
Load a file, don't fail if it is missing (a message is printed, though) Load a file, don't fail if it is missing (a message is printed, though)




+ 1
- 1
docs/manual/CoreTasks/loadproperties.html View File

@@ -39,7 +39,7 @@ The LoadProperties task supports nested <a href="../CoreTypes/filterchain.html">
FilterChain</a>s. FilterChain</a>s.


<h3>Examples</h3> <h3>Examples</h3>
<pre> &lt;loadproperties srcFile="file.properties" /&gt;
<pre> &lt;loadproperties srcFile="file.properties"/&gt;
</pre> </pre>
Load contents of file.properties as Ant properties. Load contents of file.properties as Ant properties.




+ 1
- 1
docs/manual/CoreTasks/mail.html View File

@@ -164,7 +164,7 @@ the <code>&lt;message&gt;</code> element.</p>
&lt;mail from=&quot;me&quot; &lt;mail from=&quot;me&quot;
tolist=&quot;you&quot; tolist=&quot;you&quot;
subject=&quot;Results of nightly build&quot; subject=&quot;Results of nightly build&quot;
files=&quot;build.log&quot; /&gt;
files=&quot;build.log&quot;/&gt;
</pre></blockquote> </pre></blockquote>


<p>Sends an email from <i>me</i> to <i>you</i> with a subject of <p>Sends an email from <i>me</i> to <i>you</i> with a subject of


+ 6
- 6
docs/manual/CoreTasks/manifest.html View File

@@ -88,12 +88,12 @@ href="#attribute">attribute</a> elements into sections.</p>
&lt;manifest file=&quot;MANIFEST.MF&quot;&gt; &lt;manifest file=&quot;MANIFEST.MF&quot;&gt;
&lt;attribute name=&quot;Built-By&quot; value=&quot;${user.name}&quot;/&gt; &lt;attribute name=&quot;Built-By&quot; value=&quot;${user.name}&quot;/&gt;
&lt;section name=&quot;common&quot;&gt; &lt;section name=&quot;common&quot;&gt;
&lt;attribute name=&quot;Specification-Title&quot; value=&quot;Example&quot; /&gt;
&lt;attribute name=&quot;Specification-Version&quot; value=&quot;${version}&quot; /&gt;
&lt;attribute name=&quot;Specification-Vendor&quot; value=&quot;Example Organization&quot; /&gt;
&lt;attribute name=&quot;Implementation-Title&quot; value=&quot;common&quot; /&gt;
&lt;attribute name=&quot;Implementation-Version&quot; value=&quot;${version} ${TODAY}&quot; /&gt;
&lt;attribute name=&quot;Implementation-Vendor&quot; value=&quot;Example Corp.&quot; /&gt;
&lt;attribute name=&quot;Specification-Title&quot; value=&quot;Example&quot;/&gt;
&lt;attribute name=&quot;Specification-Version&quot; value=&quot;${version}&quot;/&gt;
&lt;attribute name=&quot;Specification-Vendor&quot; value=&quot;Example Organization&quot;/&gt;
&lt;attribute name=&quot;Implementation-Title&quot; value=&quot;common&quot;/&gt;
&lt;attribute name=&quot;Implementation-Version&quot; value=&quot;${version} ${TODAY}&quot;/&gt;
&lt;attribute name=&quot;Implementation-Vendor&quot; value=&quot;Example Corp.&quot;/&gt;
&lt;/section&gt; &lt;/section&gt;
&lt;section name=&quot;common/class1.class&quot;&gt; &lt;section name=&quot;common/class1.class&quot;&gt;
&lt;attribute name=&quot;Sealed&quot; value=&quot;false&quot;/&gt; &lt;attribute name=&quot;Sealed&quot; value=&quot;false&quot;/&gt;


+ 4
- 4
docs/manual/CoreTasks/move.html View File

@@ -103,8 +103,8 @@ followed by &lt;filterset&gt; elements.
</pre> </pre>
<p><b>Move a set of files to a new directory</b></p> <p><b>Move a set of files to a new directory</b></p>
<pre> <pre>
&lt;move todir=&quot;some/new/dir&quot; &gt;
&lt;fileset dir=&quot;my/src/dir&quot; &gt;
&lt;move todir=&quot;some/new/dir&quot;&gt;
&lt;fileset dir=&quot;my/src/dir&quot;&gt;
&lt;include name=&quot;**/*.jar&quot;/&gt; &lt;include name=&quot;**/*.jar&quot;/&gt;
&lt;exclude name=&quot;**/ant.jar&quot;/&gt; &lt;exclude name=&quot;**/ant.jar&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
@@ -113,8 +113,8 @@ followed by &lt;filterset&gt; elements.
<p><b>Append <code>&quot;.bak&quot;</code> to the names of all files <p><b>Append <code>&quot;.bak&quot;</code> to the names of all files
in a directory.</b></p> in a directory.</b></p>
<pre> <pre>
&lt;move todir=&quot;my/src/dir&quot; &gt;
&lt;fileset dir=&quot;my/src/dir&quot; &gt;
&lt;move todir=&quot;my/src/dir&quot;&gt;
&lt;fileset dir=&quot;my/src/dir&quot;&gt;
&lt;exclude name=&quot;**/*.bak&quot;/&gt; &lt;exclude name=&quot;**/*.bak&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*.bak&quot;/&gt; &lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*.bak&quot;/&gt;


+ 2
- 4
docs/manual/CoreTasks/pack.html View File

@@ -32,12 +32,10 @@ file is newer.</p>
</table> </table>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote> <blockquote>
<p><code>&lt;gzip src=&quot;test.tar&quot; zipfile=&quot;test.tar.gz&quot;
/&gt;</code></p>
<p><code>&lt;gzip src=&quot;test.tar&quot; zipfile=&quot;test.tar.gz&quot;/&gt;</code></p>
</blockquote> </blockquote>
<blockquote> <blockquote>
<p><code>&lt;bzip2 src=&quot;test.tar&quot; zipfile=&quot;test.tar.bz2&quot;
/&gt;</code></p>
<p><code>&lt;bzip2 src=&quot;test.tar&quot; zipfile=&quot;test.tar.bz2&quot;/&gt;</code></p>
</blockquote> </blockquote>
<hr> <hr>
<p align="center">Copyright &copy; 2000-2002 Apache Software Foundation. All rights <p align="center">Copyright &copy; 2000-2002 Apache Software Foundation. All rights


+ 3
- 3
docs/manual/CoreTasks/parallel.html View File

@@ -44,10 +44,10 @@ within the parallel block</p>
<h3>Examples</h3> <h3>Examples</h3>
<pre> <pre>
&lt;parallel&gt; &lt;parallel&gt;
&lt;wlrun ...&gt;
&lt;wlrun ... &gt;
&lt;sequential&gt; &lt;sequential&gt;
&lt;sleep seconds=&quot;30&quot;/&gt; &lt;sleep seconds=&quot;30&quot;/&gt;
&lt;junit ...&gt;
&lt;junit ... &gt;
&lt;wlstop/&gt; &lt;wlstop/&gt;
&lt;/sequential&gt; &lt;/sequential&gt;
&lt;/parallel&gt; &lt;/parallel&gt;
@@ -76,7 +76,7 @@ noted above, you need to be careful that the two tasks are independent, both in
terms of their dependencies and in terms of their potential interactions in terms of their dependencies and in terms of their potential interactions in
Ant's external environment.</p> Ant's external environment.</p>
<hr> <hr>
<p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2001-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>
</body> </body>
</html> </html>


+ 4
- 4
docs/manual/CoreTasks/recorder.html View File

@@ -77,9 +77,9 @@ to record just the <code>&lt;javac&gt;</code> task:</p>
<pre> <pre>
... ...
&lt;compile &gt; &lt;compile &gt;
&lt;record name=&quot;log.txt&quot; action=&quot;start&quot; /&gt;
&lt;record name=&quot;log.txt&quot; action=&quot;start&quot;/&gt;
&lt;javac ... &lt;javac ...
&lt;record name=&quot;log.txt&quot; action=&quot;stop&quot; /&gt;
&lt;record name=&quot;log.txt&quot; action=&quot;stop&quot;/&gt;
&lt;compile/&gt; &lt;compile/&gt;
... ...
</pre> </pre>
@@ -90,8 +90,8 @@ recorders: one to file &quot;records-simple.log&quot; at logging level <code>inf
<code>verbose</code>.</p> <code>verbose</code>.</p>
<pre> <pre>
... ...
&lt;record name=&quot;records-simple.log&quot; /&gt;
&lt;record name=&quot;ISO.log&quot; loglevel=&quot;verbose&quot; /&gt;
&lt;record name=&quot;records-simple.log&quot;/&gt;
&lt;record name=&quot;ISO.log&quot; loglevel=&quot;verbose&quot;/&gt;
... ...
</pre> </pre>




+ 2
- 2
docs/manual/CoreTasks/replace.html View File

@@ -162,9 +162,9 @@ token]]&gt;&lt;/replacevalue&gt;
&lt;replace &lt;replace
file=&quot;configure.sh&quot; file=&quot;configure.sh&quot;
value=&quot;defaultvalue&quot; value=&quot;defaultvalue&quot;
propertyFile=&quot;source/name.properties&quot; &gt;
propertyFile=&quot;source/name.properties&quot;&gt;
&lt;replacefilter &lt;replacefilter
token=&quot;@token1@&quot; /&gt;
token=&quot;@token1@&quot;/&gt;
&lt;replacefilter &lt;replacefilter
token=&quot;@token2@&quot; token=&quot;@token2@&quot;
value=&quot;value2&quot;/&gt; value=&quot;value2&quot;/&gt;


+ 3
- 3
docs/manual/CoreTasks/sequential.html View File

@@ -21,10 +21,10 @@ sequential task.</p>
<h3>Example</h3> <h3>Example</h3>
<pre> <pre>
&lt;parallel&gt; &lt;parallel&gt;
&lt;wlrun ...&gt;
&lt;wlrun ... &gt;
&lt;sequential&gt; &lt;sequential&gt;
&lt;sleep seconds=&quot;30&quot;/&gt; &lt;sleep seconds=&quot;30&quot;/&gt;
&lt;junit ...&gt;
&lt;junit ... &gt;
&lt;wlstop/&gt; &lt;wlstop/&gt;
&lt;/sequential&gt; &lt;/sequential&gt;
&lt;/parallel&gt; &lt;/parallel&gt;
@@ -33,7 +33,7 @@ sequential task.</p>
sequence, while another task is being executed in a separate thread. </p> sequence, while another task is being executed in a separate thread. </p>


<hr> <hr>
<p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2001-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>
</body> </body>
</html> </html>


+ 2
- 2
docs/manual/CoreTasks/sleep.html View File

@@ -59,11 +59,11 @@ Sleep for about 10 mS.
Sleep for about 2 seconds. Sleep for about 2 seconds.
<pre> &lt;sleep hours=&quot;1&quot; minutes=&quot;-59&quot; seconds=&quot;-58&quot;/&gt;</pre> <pre> &lt;sleep hours=&quot;1&quot; minutes=&quot;-59&quot; seconds=&quot;-58&quot;/&gt;</pre>
<p>Sleep for one hour less 59:58, or two seconds again </p> <p>Sleep for one hour less 59:58, or two seconds again </p>
<pre> &lt;sleep /&gt;</pre>
<pre> &lt;sleep/&gt;</pre>
Sleep for no time at all. This may yield the CPU time to another thread or process. Sleep for no time at all. This may yield the CPU time to another thread or process.
<hr> <hr>


<p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2001-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>


</body> </body>


+ 5
- 5
docs/manual/CoreTasks/sql.html View File

@@ -218,9 +218,9 @@ operation on <i>some_other_table</i>.</p>
url=&quot;jdbc:database-url&quot; url=&quot;jdbc:database-url&quot;
userid=&quot;sa&quot; userid=&quot;sa&quot;
password=&quot;pass&quot; &gt; password=&quot;pass&quot; &gt;
&lt;transaction src=&quot;data1.sql&quot; /&gt;
&lt;transaction src=&quot;data2.sql&quot; /&gt;
&lt;transaction src=&quot;data3.sql&quot; /&gt;
&lt;transaction src=&quot;data1.sql&quot;/&gt;
&lt;transaction src=&quot;data2.sql&quot;/&gt;
&lt;transaction src=&quot;data3.sql&quot;/&gt;
&lt;transaction&gt; &lt;transaction&gt;
truncate table some_other_table; truncate table some_other_table;
&lt;/transaction&gt; &lt;/transaction&gt;
@@ -236,9 +236,9 @@ run before <code>data2.sql</code>.</p>
driver=&quot;org.database.jdbcDriver&quot; driver=&quot;org.database.jdbcDriver&quot;
url=&quot;jdbc:database-url&quot; url=&quot;jdbc:database-url&quot;
userid=&quot;sa&quot; userid=&quot;sa&quot;
password=&quot;pass&quot; &gt;
password=&quot;pass&quot;&gt;
&lt;fileset dir=&quot;.&quot;&gt; &lt;fileset dir=&quot;.&quot;&gt;
&lt;include name=&quot;data*.sql&quot; /&gt;
&lt;include name=&quot;data*.sql&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;transaction&gt; &lt;transaction&gt;
truncate table some_other_table; truncate table some_other_table;


+ 1
- 2
docs/manual/CoreTasks/unzip.html View File

@@ -55,8 +55,7 @@ to perform unarchival upon.
</table> </table>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote> <blockquote>
<p><code>&lt;unzip src=&quot;${tomcat_src}/tools-src.zip&quot; dest=&quot;${tools.home}&quot;
/&gt;</code></p>
<p><code>&lt;unzip src=&quot;${tomcat_src}/tools-src.zip&quot; dest=&quot;${tools.home}&quot;/&gt;</code></p>
</blockquote> </blockquote>
<blockquote> <blockquote>
<p><code> <p><code>


+ 1
- 1
docs/manual/CoreTasks/xmlproperty.html View File

@@ -72,7 +72,7 @@ file's element and attribute names.</p>


<p>These are the properties loaded by this task from the previous example file.</p> <p>These are the properties loaded by this task from the previous example file.</p>


<pre> &lt;xmlproperty file="somefile.xml" collapseAttributes="true" /&gt;</pre>
<pre> &lt;xmlproperty file="somefile.xml" collapseAttributes="true"/&gt;</pre>


<p>Load contents of somefile.xml as Ant properties collapsing attributes as nodes.</p> <p>Load contents of somefile.xml as Ant properties collapsing attributes as nodes.</p>




+ 1
- 1
docs/manual/CoreTypes/dirset.html View File

@@ -93,7 +93,7 @@ that have the text <code>Test</code> in their name.</p>
a PatternSet that can be referenced in other a PatternSet that can be referenced in other
<code>&lt;dirset&gt;</code> elements, rooted at a different directory.</p> <code>&lt;dirset&gt;</code> elements, rooted at a different directory.</p>
<blockquote><pre> <blockquote><pre>
&lt;dirset dir=&quot;${debug_build.dir}&quot; &gt;
&lt;dirset dir=&quot;${debug_build.dir}&quot;&gt;
&lt;patternset refid=&quot;non.test.classes&quot;/&gt; &lt;patternset refid=&quot;non.test.classes&quot;/&gt;
&lt;/dirset&gt; &lt;/dirset&gt;
</pre></blockquote> </pre></blockquote>


+ 3
- 3
docs/manual/CoreTypes/fileset.html View File

@@ -84,7 +84,7 @@ platforms.</p>


<h4>Examples</h4> <h4>Examples</h4>
<blockquote><pre> <blockquote><pre>
&lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot; &gt;
&lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
&lt;include name=&quot;**/*.java&quot;/&gt; &lt;include name=&quot;**/*.java&quot;/&gt;
&lt;exclude name=&quot;**/*Test*&quot;/&gt; &lt;exclude name=&quot;**/*Test*&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
@@ -93,8 +93,8 @@ platforms.</p>
source files and don't have the text <code>Test</code> in their source files and don't have the text <code>Test</code> in their
name.</p> name.</p>
<blockquote><pre> <blockquote><pre>
&lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot; &gt;
&lt;patternset id=&quot;non.test.sources&quot; &gt;
&lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
&lt;patternset id=&quot;non.test.sources&quot;&gt;
&lt;include name=&quot;**/*.java&quot;/&gt; &lt;include name=&quot;**/*.java&quot;/&gt;
&lt;exclude name=&quot;**/*Test*&quot;/&gt; &lt;exclude name=&quot;**/*Test*&quot;/&gt;
&lt;/patternset&gt; &lt;/patternset&gt;


+ 1
- 1
docs/manual/CoreTypes/filterset.html View File

@@ -106,7 +106,7 @@ but wish to replace the token <code>%DATE*</code> with today's date.</p>


<p>Copy all the docs but change all dates and appropriate notices as stored in a file.</p> <p>Copy all the docs but change all dates and appropriate notices as stored in a file.</p>
<BLOCKQUOTE><PRE> <BLOCKQUOTE><PRE>
&lt;copy toDir=&quot;${dist.dir}/docs&quot; &gt;
&lt;copy toDir=&quot;${dist.dir}/docs&quot;&gt;
&lt;fileset dir=&quot;${build.dir}/docs&quot;&gt; &lt;fileset dir=&quot;${build.dir}/docs&quot;&gt;
&lt;include name=&quot;**/*.html&quot;&gt; &lt;include name=&quot;**/*.html&quot;&gt;
&lt;/fileset&gt; &lt;/fileset&gt;


+ 5
- 5
docs/manual/CoreTypes/patternset.html View File

@@ -111,7 +111,7 @@ you can use to test the existance of a property.</p>
patterns to the parent patternset.</p> patterns to the parent patternset.</p>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote><pre> <blockquote><pre>
&lt;patternset id=&quot;non.test.sources&quot; &gt;
&lt;patternset id=&quot;non.test.sources&quot;&gt;
&lt;include name=&quot;**/*.java&quot;/&gt; &lt;include name=&quot;**/*.java&quot;/&gt;
&lt;exclude name=&quot;**/*Test*&quot;/&gt; &lt;exclude name=&quot;**/*Test*&quot;/&gt;
&lt;/patternset&gt; &lt;/patternset&gt;
@@ -131,7 +131,7 @@ specify that the element should only be used if a property is set, or
that it should be used only if a property is not set.</p> that it should be used only if a property is not set.</p>
<p>For example</p> <p>For example</p>
<blockquote><pre> <blockquote><pre>
&lt;patternset id=&quot;sources&quot; &gt;
&lt;patternset id=&quot;sources&quot;&gt;
&lt;include name=&quot;std/**/*.java&quot;/&gt; &lt;include name=&quot;std/**/*.java&quot;/&gt;
&lt;include name=&quot;prof/**/*.java&quot; if=&quot;professional&quot;/&gt; &lt;include name=&quot;prof/**/*.java&quot; if=&quot;professional&quot;/&gt;
&lt;exclude name=&quot;**/*Test*&quot;/&gt; &lt;exclude name=&quot;**/*Test*&quot;/&gt;
@@ -141,19 +141,19 @@ that it should be used only if a property is not set.</p>
<em>professional</em> is set to some value.</p> <em>professional</em> is set to some value.</p>
<p>The two sets</p> <p>The two sets</p>
<blockquote><pre> <blockquote><pre>
&lt;patternset includesfile=&quot;some-file&quot; /&gt;
&lt;patternset includesfile=&quot;some-file&quot;/&gt;
</pre></blockquote> </pre></blockquote>
<p>and</p> <p>and</p>
<blockquote><pre> <blockquote><pre>
&lt;patternset&gt; &lt;patternset&gt;
&lt;includesfile name=&quot;some-file&quot; /&gt;
&lt;includesfile name=&quot;some-file&quot;/&gt;
&lt;patternset/&gt; &lt;patternset/&gt;
</pre></blockquote> </pre></blockquote>
<p>are identical. The include patterns will be read from the file <p>are identical. The include patterns will be read from the file
<code>some-file</code>, one pattern per line.</p> <code>some-file</code>, one pattern per line.</p>
<blockquote><pre> <blockquote><pre>
&lt;patternset&gt; &lt;patternset&gt;
&lt;includesfile name=&quot;some-file&quot; /&gt;
&lt;includesfile name=&quot;some-file&quot;/&gt;
&lt;includesfile name=&quot;${some-other-file}&quot; &lt;includesfile name=&quot;${some-other-file}&quot;
if=&quot;some-other-file&quot; if=&quot;some-other-file&quot;
/&gt; /&gt;


+ 7
- 7
docs/manual/Integration/VAJAntTool.html View File

@@ -22,16 +22,16 @@ Version 1.2 - 2001/06/14<br>
<li><A href="#introduction">Introduction</A> <li><A href="#introduction">Introduction</A>
<li><A href="#tasks">The Tasks</A><A href="#introduction"></A> <li><A href="#tasks">The Tasks</A><A href="#introduction"></A>
<ul> <ul>
<li><A href="#vajload">VAJLoad</A>&gt;
<li><A href="#vajexport">VAJExport</A>&gt;
<li><A href="#vajimport">VAJImport</A>&gt;</LI></UL>
<li><A href="#vajload">VAJLoad</A>
<li><A href="#vajexport">VAJExport</A>
<li><A href="#vajimport">VAJImport</A></LI></UL>
<li><A href="#sample_buildfile">A sample build file</A><br> <li><A href="#sample_buildfile">A sample build file</A><br>
<li><A href="#plugin">The Plugin</A> <li><A href="#plugin">The Plugin</A>
<ul> <ul>
<li><A href="#installation">Installation</A>&gt;
<li><A href="#installation">Installation</A>
<li><A href="#usage">Usage</A> </LI></UL> <li><A href="#usage">Usage</A> </LI></UL>
<li><A href="#faq">Frequently Asked Questions</A>&gt;
<li><A href="#va_versions">Visual Age Versions</A>&gt;
<li><A href="#faq">Frequently Asked Questions</A>
<li><A href="#va_versions">Visual Age Versions</A>
<li><A href="#history">History</A><A href="#history"></A> </LI></UL> <li><A href="#history">History</A><A href="#history"></A> </LI></UL>


<hr> <hr>
@@ -130,7 +130,7 @@ workspace.</P>
<h3>Example</H3> <h3>Example</H3>
<pre>&lt;vajload remote="localhost:32767"&gt; <pre>&lt;vajload remote="localhost:32767"&gt;
&lt;vajproject name="My Testcases" version="1.7beta"/&gt; &lt;vajproject name="My Testcases" version="1.7beta"/&gt;
&lt;vajproject name="JUnit" version="3.2" /&gt;
&lt;vajproject name="JUnit" version="3.2"/&gt;
&lt;/vajload&gt; &lt;/vajload&gt;
</PRE> </PRE>




+ 2
- 2
docs/manual/OptionalTasks/BorlandEJBTasks.html View File

@@ -94,9 +94,9 @@
<h3>Examples</h3> <h3>Examples</h3>
<p>The following build.xml snippet is an example of how to use Borland element <p>The following build.xml snippet is an example of how to use Borland element
into the ejbjar task</p> into the ejbjar task</p>
<pre> &lt;ejbjar srcdir=&quot;${build.classes}&quot; basejarname=&quot;vsmp&quot; descriptordir=&quot;${rsc.dir}/hrmanager&quot;&gt;
<pre> &lt;ejbjar srcdir=&quot;${build.classes}&quot; basejarname=&quot;vsmp&quot; descriptordir=&quot;${rsc.dir}/hrmanager&quot;&gt;
&lt;borland destdir=&quot;lib&quot; verify=&quot;on&quot; generateclient=&quot;on&quot; version=&quot;5&quot;&gt; &lt;borland destdir=&quot;lib&quot; verify=&quot;on&quot; generateclient=&quot;on&quot; version=&quot;5&quot;&gt;
&lt;classpath refid=&quot;classpath&quot; /&gt;
&lt;classpath refid=&quot;classpath&quot;/&gt;
&lt;/borland&gt; &lt;/borland&gt;
&lt;include name=&quot;**\ejb-jar.xml&quot;/&gt; &lt;include name=&quot;**\ejb-jar.xml&quot;/&gt;
&lt;support dir=&quot;${build.classes}&quot;&gt; &lt;support dir=&quot;${build.classes}&quot;&gt;


+ 1
- 1
docs/manual/OptionalTasks/antlr.html View File

@@ -146,7 +146,7 @@ ANTLR jar in the normal Ant lib repository will be enough.</p>
VM via nested <code>&lt;jvmarg&gt;</code> attributes, for example:</p> VM via nested <code>&lt;jvmarg&gt;</code> attributes, for example:</p>


<pre> <pre>
&lt;antlr target=...&gt;
&lt;antlr target="..."&gt;
&lt;jvmarg value=&quot;-Djava.compiler=NONE&quot;/&gt; &lt;jvmarg value=&quot;-Djava.compiler=NONE&quot;/&gt;
... ...
&lt;/antlr&gt; &lt;/antlr&gt;


+ 1
- 1
docs/manual/OptionalTasks/ccm.html View File

@@ -53,7 +53,7 @@ Task to checkin a file
<h3>Examples</h3> <h3>Examples</h3>
<blockquote> <blockquote>
<pre>&lt;ccmcheckin file=&quot;c:/wa/com/foo/MyFile.java&quot; <pre>&lt;ccmcheckin file=&quot;c:/wa/com/foo/MyFile.java&quot;
comment=&quot;mycomment&quot; /&gt;
comment=&quot;mycomment&quot;/&gt;
</pre> </pre>
</blockquote> </blockquote>
<p>Checks in the file <i>c:/wa/com/foo/MyFile.java</i>. <p>Checks in the file <i>c:/wa/com/foo/MyFile.java</i>.


+ 3
- 3
docs/manual/OptionalTasks/clearcase.html View File

@@ -69,9 +69,9 @@ Task to perform a Checkin command to ClearCase.
<blockquote> <blockquote>
<pre> <pre>
&lt;cccheckin viewpath=&quot;c:/views/viewdir/afile&quot; &lt;cccheckin viewpath=&quot;c:/views/viewdir/afile&quot;
commentfile=&quot;acomment.txt&quot;/&gt;
commentfile=&quot;acomment.txt&quot;
nowarn=&quot;true&quot; nowarn=&quot;true&quot;
identical=&quot;true&quot;
identical=&quot;true&quot;/&gt;
</pre> </pre>
</blockquote> </blockquote>
<p>Does a ClearCase <i>checkin</i> on the file <i>c:/views/viewdir/afile</i>. <p>Does a ClearCase <i>checkin</i> on the file <i>c:/views/viewdir/afile</i>.
@@ -254,7 +254,7 @@ A graphical dialog will be displayed. The output will be logged to
time will be set to the current time.</p> time will be set to the current time.</p>


<hr> <hr>
<p align="center">Copyright &copy; 2000-2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2000-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>
</body> </body>




+ 2
- 2
docs/manual/OptionalTasks/echoproperties.html View File

@@ -54,11 +54,11 @@ but is really for debugging build files.</p>
</table> </table>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote><pre> <blockquote><pre>
&lt;echoproperties /&gt;
&lt;echoproperties/&gt;
</pre></blockquote> </pre></blockquote>
<p>Report the current properties to the log.</p> <p>Report the current properties to the log.</p>
<blockquote><pre> <blockquote><pre>
&lt;echoproperties destfile="my.properties" /&gt;
&lt;echoproperties destfile="my.properties"/&gt;
</pre></blockquote> </pre></blockquote>
<p>Report the current properties to the file "my.properties", and will <p>Report the current properties to the file "my.properties", and will
fail the build if the file could not be created or written to.</p> fail the build if the file could not be created or written to.</p>


+ 27
- 19
docs/manual/OptionalTasks/ejb.html View File

@@ -111,7 +111,7 @@ is based on the standard Ant include and exclude selection mechanisms.
<pre>&lt;ddcreator descriptors=&quot;${dd.dir}&quot; <pre>&lt;ddcreator descriptors=&quot;${dd.dir}&quot;
dest=&quot;${gen.classes}&quot; dest=&quot;${gen.classes}&quot;
classpath=&quot;${descriptorbuild.classpath}&quot;&gt; classpath=&quot;${descriptorbuild.classpath}&quot;&gt;
&lt;include name=&quot;*.txt&quot; /&gt;
&lt;include name=&quot;*.txt&quot;/&gt;
&lt;/ddcreator&gt; &lt;/ddcreator&gt;
</pre> </pre>


@@ -183,7 +183,7 @@ or are out of date, the ejbc tool is run to generate new versions.</p>
dest=&quot;${gen.classes}&quot; dest=&quot;${gen.classes}&quot;
manifest=&quot;${build.manifest}&quot; manifest=&quot;${build.manifest}&quot;
classpath=&quot;${descriptorbuild.classpath}&quot;&gt; classpath=&quot;${descriptorbuild.classpath}&quot;&gt;
&lt;include name=&quot;*.ser&quot; /&gt;
&lt;include name=&quot;*.ser&quot;/&gt;
&lt;/ejbc&gt; &lt;/ejbc&gt;
</pre> </pre>


@@ -295,20 +295,22 @@ Examples</h3>
<pre>&lt;iplanet-ejbc ejbdescriptor="ejb-jar.xml" <pre>&lt;iplanet-ejbc ejbdescriptor="ejb-jar.xml"
iasdescriptor="ias-ejb-jar.xml" iasdescriptor="ias-ejb-jar.xml"
dest="${build.classesdir}" dest="${build.classesdir}"
classpath="${ias.ejbc.cpath}" /&gt;
classpath="${ias.ejbc.cpath}"/&gt;



&lt;iplanet-ejbc ejbdescriptor="ejb-jar.xml" &lt;iplanet-ejbc ejbdescriptor="ejb-jar.xml"
iasdescriptor="ias-ejb-jar.xml" iasdescriptor="ias-ejb-jar.xml"
dest="${build.classesdir}" dest="${build.classesdir}"
keepgenerated="yes" keepgenerated="yes"
debug="yes" debug="yes"
iashome="${ias.home}" &gt;
iashome="${ias.home}"&gt;
&lt;classpath&gt; &lt;classpath&gt;
&lt;pathelement path="." /&gt;
&lt;pathelement path="${build.classpath}" /&gt;
&lt;pathelement path="."/&gt;
&lt;pathelement path="${build.classpath}"/&gt;
&lt;/classpath&gt; &lt;/classpath&gt;
&lt;/iplanet-ejbc&gt; &lt;/iplanet-ejbc&gt;



</pre> </pre>


<hr> <hr>
@@ -1347,7 +1349,7 @@ in the descriptor dir:</p>
&lt;websphere dbvendor="DB2UDBOS390_V6" &lt;websphere dbvendor="DB2UDBOS390_V6"
ejbdeploy="true" ejbdeploy="true"
oldCMP="false" oldCMP="false"
tempdir="/tmp"
tempdir="/tmp"
destdir="${dist.server}"&gt; destdir="${dist.server}"&gt;
&lt;wasclasspath&gt; &lt;wasclasspath&gt;
&lt;pathelement location="${was4.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/&gt; &lt;pathelement location="${was4.home}/deploytool/itp/plugins/org.eclipse.core.boot/boot.jar"/&gt;
@@ -1368,7 +1370,8 @@ in the descriptor dir:</p>


<h3><a name="ejbjar_iplanet">iPlanet Application Server (iAS) element</a></h3> <h3><a name="ejbjar_iplanet">iPlanet Application Server (iAS) element</a></h3>


The &lt;iplanet&gt; nested element is used to build iAS-specific stubs and
The &lt;iplanet&lt; nested element is used to build iAS-specific stubs and

skeletons and construct a JAR file which may be deployed to the iPlanet skeletons and construct a JAR file which may be deployed to the iPlanet
Application Server 6.0. The build process will always determine if Application Server 6.0. The build process will always determine if
the EJB stubs/skeletons and the EJB-JAR file are up to date, and it will the EJB stubs/skeletons and the EJB-JAR file are up to date, and it will
@@ -1471,35 +1474,40 @@ It will name each EJB-JAR using the "basename" prepended to each standard
EJB descriptor. For example, if the descriptor named "Account-ejb-jar.xml" EJB descriptor. For example, if the descriptor named "Account-ejb-jar.xml"
is processed, the EJB-JAR will be named "Account.jar" is processed, the EJB-JAR will be named "Account.jar"
<pre> &lt;ejbjar srcdir="${build.classesdir}" <pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}" &gt;
descriptordir="${src}"&gt;

&lt;iplanet destdir="${assemble.ejbjar}" &lt;iplanet destdir="${assemble.ejbjar}"
classpath="${ias.ejbc.cpath}" /&gt;
classpath="${ias.ejbc.cpath}"/&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt; &lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt; &lt;exclude name="**/*ias-*.xml"/&gt;
&lt;/ejbjar&gt;</pre> &lt;/ejbjar&gt;</pre>

This example demonstrates the use of a nested classpath element as well This example demonstrates the use of a nested classpath element as well
as some of the other optional attributes. as some of the other optional attributes.
<pre> &lt;ejbjar srcdir="${build.classesdir}" <pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}" &gt;
descriptordir="${src}"&gt;

&lt;iplanet destdir="${assemble.ejbjar}" &lt;iplanet destdir="${assemble.ejbjar}"
iashome="${ias.home}" iashome="${ias.home}"
debug="yes" debug="yes"
keepgenerated="yes" &gt;
keepgenerated="yes"&gt;
&lt;classpath&gt; &lt;classpath&gt;
&lt;pathelement path="." /&gt;
&lt;pathelement path="${build.classpath}" /&gt;
&lt;pathelement path="."/&gt;
&lt;pathelement path="${build.classpath}"/&gt;
&lt;/classpath&gt; &lt;/classpath&gt;
&lt;/iplanet&gt; &lt;/iplanet&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt; &lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt; &lt;exclude name="**/*ias-*.xml"/&gt;
&lt;/ejbjar&gt;</pre> &lt;/ejbjar&gt;</pre>

This example demonstrates the use of basejarname attribute. In this This example demonstrates the use of basejarname attribute. In this
case, the completed EJB-JAR will be named "HelloWorld.jar" If multiple case, the completed EJB-JAR will be named "HelloWorld.jar" If multiple
EJB descriptors might be found, care must be taken to ensure that the completed EJB descriptors might be found, care must be taken to ensure that the completed
JAR files don't overwrite each other. JAR files don't overwrite each other.
<pre> &lt;ejbjar srcdir="${build.classesdir}" <pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}" descriptordir="${src}"
basejarname="HelloWorld" &gt;
basejarname="HelloWorld"&gt;

&lt;iplanet destdir="${assemble.ejbjar}" &lt;iplanet destdir="${assemble.ejbjar}"
classpath="${ias.ejbc.cpath}"/&gt; classpath="${ias.ejbc.cpath}"/&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt; &lt;include name="**/*-ejb-jar.xml"/&gt;
@@ -1513,9 +1521,10 @@ local DTDs are found in the [iAS-install-directory]/dtd directory.
<pre> &lt;ejbjar srcdir="${build.classesdir}" <pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}"&gt; descriptordir="${src}"&gt;
&lt;iplanet destdir="${assemble.ejbjar}"&gt; &lt;iplanet destdir="${assemble.ejbjar}"&gt;
classpath="${ias.ejbc.cpath}" /&gt;
classpath="${ias.ejbc.cpath}"/&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt; &lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt; &lt;exclude name="**/*ias-*.xml"/&gt;

&lt;dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" &lt;dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN"
location="${ias.home}/APPS/ejb-jar_1_1.dtd"/&gt; location="${ias.home}/APPS/ejb-jar_1_1.dtd"/&gt;
&lt;dtd publicId="-//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN" &lt;dtd publicId="-//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN"
@@ -1686,7 +1695,7 @@ directory.&nbsp;</p>
descriptordir="${descriptor.dir}"&gt; descriptordir="${descriptor.dir}"&gt;
&lt;jonas destdir="${deploymentjars.dir}" &lt;jonas destdir="${deploymentjars.dir}"
jonasroot="${jonas.root}" jonasroot="${jonas.root}"
orb="RMI" /&gt;
orb="RMI"/&gt;
&lt;include name="**/*.xml"/&gt; &lt;include name="**/*.xml"/&gt;
&lt;exclude name="**/jonas-*.xml"/&gt; &lt;exclude name="**/jonas-*.xml"/&gt;
&lt;support dir="${build.classes}"&gt; &lt;support dir="${build.classes}"&gt;
@@ -1707,7 +1716,7 @@ descriptors to use the naming standard. This will create only one ejb jar file -
&lt;jonas destdir="${deploymentjars.dir}" &lt;jonas destdir="${deploymentjars.dir}"
jonasroot="${jonas.root}" jonasroot="${jonas.root}"
suffix=".jar" suffix=".jar"
classpath="${descriptorbuild.classpath}" /&gt;
classpath="${descriptorbuild.classpath}"/&gt;
&lt;include name="**/ejb-jar.xml"/&gt; &lt;include name="**/ejb-jar.xml"/&gt;
&lt;exclude name="**/jonas-ejb-jar.xml"/&gt; &lt;exclude name="**/jonas-ejb-jar.xml"/&gt;
&lt;/ejbjar&gt; &lt;/ejbjar&gt;
@@ -1721,4 +1730,3 @@ Reserved.</p>
</body> </body>


</html> </html>


+ 4
- 4
docs/manual/OptionalTasks/ftp.html View File

@@ -205,7 +205,7 @@ into. The file structure from the FTP site is preserved on the local machine.</
server=&quot;ftp.apache.org&quot; server=&quot;ftp.apache.org&quot;
userid=&quot;anonymous&quot; userid=&quot;anonymous&quot;
password=&quot;me@myorg.com&quot;&gt; password=&quot;me@myorg.com&quot;&gt;
&lt;fileset dir=&quot;htdocs/manual&quot; &gt;
&lt;fileset dir=&quot;htdocs/manual&quot;&gt;
&lt;include name=&quot;**/*.html&quot;/&gt; &lt;include name=&quot;**/*.html&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;/ftp&gt; &lt;/ftp&gt;
@@ -224,7 +224,7 @@ fact, the dir attribute of the fileset is ignored completely.
&lt;ftp action=&quot;del&quot; &lt;ftp action=&quot;del&quot;
server=&quot;ftp.apache.org&quot; server=&quot;ftp.apache.org&quot;
userid=&quot;anonymous&quot; userid=&quot;anonymous&quot;
password=&quot;me@myorg.com&quot; &gt;
password=&quot;me@myorg.com&quot;&gt;
&lt;fileset&gt; &lt;fileset&gt;
&lt;include name=&quot;**/*.tmp&quot;/&gt; &lt;include name=&quot;**/*.tmp&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
@@ -239,7 +239,7 @@ If you don't have permission to delete a file, a BuildException is thrown.</p>
server=&quot;ftp.apache.org&quot; server=&quot;ftp.apache.org&quot;
userid=&quot;anonymous&quot; userid=&quot;anonymous&quot;
password=&quot;me@myorg.com&quot; password=&quot;me@myorg.com&quot;
listing=&quot;data/ftp.listing&quot; &gt;
listing=&quot;data/ftp.listing&quot;&gt;
&lt;fileset&gt; &lt;fileset&gt;
&lt;include name=&quot;**&quot;/&gt; &lt;include name=&quot;**&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
@@ -257,7 +257,7 @@ remotedir attribute.</p>
server=&quot;ftp.apache.org&quot; server=&quot;ftp.apache.org&quot;
userid=&quot;anonymous&quot; userid=&quot;anonymous&quot;
password=&quot;me@myorg.com&quot; password=&quot;me@myorg.com&quot;
remotedir=&quot;some/remote/dir&quot; /&gt;
remotedir=&quot;some/remote/dir&quot;/&gt;
</pre> </pre>
<p>This creates the directory <code>some/remote/dir</code> beneath the default root <p>This creates the directory <code>some/remote/dir</code> beneath the default root
directory. As with all other actions, the directory separator character must be correct directory. As with all other actions, the directory separator character must be correct


+ 2
- 2
docs/manual/OptionalTasks/javah.html View File

@@ -77,7 +77,7 @@ systems are used.</p>
</table> </table>
<p>Either outputFile or destdir must be supplied, but not both.&nbsp;</p> <p>Either outputFile or destdir must be supplied, but not both.&nbsp;</p>
<h3>Examples</h3> <h3>Examples</h3>
<pre> &lt;javah destdir=&quot;c&quot; class=&quot;org.foo.bar.Wibble&quot; /&gt;</pre>
<pre> &lt;javah destdir=&quot;c&quot; class=&quot;org.foo.bar.Wibble&quot;/&gt;</pre>
<p>makes a JNI header of the named class, using the JDK1.2 JNI model. Assuming <p>makes a JNI header of the named class, using the JDK1.2 JNI model. Assuming
the directory 'c' already exists, the file <tt>org_foo_bar_Wibble.h</tt> the directory 'c' already exists, the file <tt>org_foo_bar_Wibble.h</tt>
is created there. If this file already exists, it is left unchanged.</p> is created there. If this file already exists, it is left unchanged.</p>
@@ -112,7 +112,7 @@ describe its progress.</p>
<hr> <hr>


<hr> <hr>
<p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2001-2002 Apache Software Foundation. All rights
Reserved.</p> Reserved.</p>
</body> </body>




+ 6
- 5
docs/manual/OptionalTasks/jdepend.html View File

@@ -90,9 +90,10 @@ that represent <a href="../using.html#path">PATH like structures</a>.</p>
<pre> <pre>
&lt;jdepend classpathref="base.path"&gt; &lt;jdepend classpathref="base.path"&gt;
&nbsp;&nbsp;&nbsp; &lt;sourcespath&gt; &nbsp;&nbsp;&nbsp; &lt;sourcespath&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" /&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src"/&gt;
&nbsp;&nbsp;&nbsp; &lt;/sourcespath&gt; &nbsp;&nbsp;&nbsp; &lt;/sourcespath&gt;
&lt;/jdepend&gt; &lt;/jdepend&gt;

</pre> </pre>
</blockquote> </blockquote>


@@ -103,13 +104,14 @@ The classpath is defined using a classpath reference.
<pre> <pre>
&lt;jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml"&gt; &lt;jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml"&gt;
&nbsp;&nbsp;&nbsp; &lt;sourcespath&gt; &nbsp;&nbsp;&nbsp; &lt;sourcespath&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" /&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src"/&gt;
&nbsp;&nbsp;&nbsp; &lt;/sourcespath&gt; &nbsp;&nbsp;&nbsp; &lt;/sourcespath&gt;
&nbsp;&nbsp;&nbsp; &lt;classpath&gt; &nbsp;&nbsp;&nbsp; &lt;classpath&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="classes" /&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="lib/jdepend.jar" /&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="classes"/&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="lib/jdepend.jar"/&gt;
&nbsp;&nbsp;&nbsp; &lt;/classpath&gt; &nbsp;&nbsp;&nbsp; &lt;/classpath&gt;
&lt;/jdepend&gt; &lt;/jdepend&gt;

</pre> </pre>
</blockquote> </blockquote>


@@ -123,4 +125,3 @@ Reserved.</p>
</html> </html>






+ 1
- 1
docs/manual/OptionalTasks/jspc.html View File

@@ -219,7 +219,7 @@ package heirarchy beginning with com.i3sp.jsp.
srcdir="interim" srcdir="interim"
destdir="build" destdir="build"
classpath="lib/taglibs.jar" classpath="lib/taglibs.jar"
debug="on" /&gt;
debug="on"/&gt;
</pre> </pre>
Generate jsp pages then javac them down to Generate jsp pages then javac them down to
bytecodes. Include lib/taglib jar in the java compilation. bytecodes. Include lib/taglib jar in the java compilation.


+ 10
- 10
docs/manual/OptionalTasks/junit.html View File

@@ -425,7 +425,7 @@ generates a test class name for each file that ends in


<pre> <pre>
&lt;junit&gt; &lt;junit&gt;
&lt;test name="my.test.TestCase" /&gt;
&lt;test name="my.test.TestCase"/&gt;
&lt;/junit&gt; &lt;/junit&gt;
</pre> </pre>


@@ -434,8 +434,8 @@ VM. No output will be generated unless the test fails.</p>


<pre> <pre>
&lt;junit printsummary="yes" fork="yes" haltonfailure="yes"&gt; &lt;junit printsummary="yes" fork="yes" haltonfailure="yes"&gt;
&lt;formatter type="plain" /&gt;
&lt;test name="my.test.TestCase" /&gt;
&lt;formatter type="plain"/&gt;
&lt;test name="my.test.TestCase"/&gt;
&lt;/junit&gt; &lt;/junit&gt;
</pre> </pre>


@@ -448,20 +448,20 @@ stopped if the test fails.</p>
<pre> <pre>
&lt;junit printsummary="yes" haltonfailure="yes"&gt; &lt;junit printsummary="yes" haltonfailure="yes"&gt;
&lt;classpath&gt; &lt;classpath&gt;
&lt;pathelement location="${build.tests}" /&gt;
&lt;pathelement path="${java.class.path}" /&gt;
&lt;pathelement location="${build.tests}"/&gt;
&lt;pathelement path="${java.class.path}"/&gt;
&lt;/classpath&gt; &lt;/classpath&gt;


&lt;formatter type="plain" /&gt;
&lt;formatter type="plain"/&gt;


&lt;test name="my.test.TestCase" haltonfailure="no" outfile="result" &gt;
&lt;formatter type="xml" /&gt;
&lt;test name="my.test.TestCase" haltonfailure="no" outfile="result"&gt;
&lt;formatter type="xml"/&gt;
&lt;/test&gt; &lt;/test&gt;


&lt;batchtest fork="yes" todir="${reports.tests}"&gt; &lt;batchtest fork="yes" todir="${reports.tests}"&gt;
&lt;fileset dir="${src.tests}"&gt; &lt;fileset dir="${src.tests}"&gt;
&lt;include name="**/*Test*.java" /&gt;
&lt;exclude name="**/AllTests.java" /&gt;
&lt;include name="**/*Test*.java"/&gt;
&lt;exclude name="**/AllTests.java"/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;/batchtest&gt; &lt;/batchtest&gt;
&lt;/junit&gt; &lt;/junit&gt;


+ 1
- 1
docs/manual/OptionalTasks/mmetrics.html View File

@@ -112,7 +112,7 @@ The stylesheet takes an <i>output.dir</i> parameter (otherwise it will be genera
in the current directory), it can be run in Ant as follows: in the current directory), it can be run in Ant as follows:
<pre> <pre>
&lt;style in=java &quot;${metrics.xml}&quot; style=&quot;mmetrics-frames.xsl&quot; out="null.tmp"&gt; &lt;style in=java &quot;${metrics.xml}&quot; style=&quot;mmetrics-frames.xsl&quot; out="null.tmp"&gt;
&lt;param name=&quot;output.dir&quot; expression=&quot;${report.dir}quot;/&gt;
&lt;param name=&quot;output.dir&quot; expression=&quot;${report.dir}&quot;/&gt;
&lt;/style&gt; &lt;/style&gt;
</pre> </pre>
<hr> <hr>


+ 3
- 3
docs/manual/OptionalTasks/native2ascii.html View File

@@ -111,7 +111,7 @@


<pre> <pre>
&lt;native2ascii encoding=&quot;EUCJIS&quot; src=&quot;srcdir&quot; dest=&quot;srcdir&quot; &lt;native2ascii encoding=&quot;EUCJIS&quot; src=&quot;srcdir&quot; dest=&quot;srcdir&quot;
includes=&quot;**/*.eucjis&quot; ext=&quot;.java&quot; /&gt;
includes=&quot;**/*.eucjis&quot; ext=&quot;.java&quot;/&gt;
</pre> </pre>


<p> <p>
@@ -121,8 +121,8 @@
</p> </p>


<pre> <pre>
&lt;native2ascii encoding='EUCJIS&quot; src=&quot;native/japanese&quot; dest=&quot;src&quot;
includes=&quot;**/*.java /&gt;
&lt;native2ascii encoding=&quot;EUCJIS&quot; src=&quot;native/japanese&quot; dest=&quot;src&quot;
includes=&quot;**/*.java&quot;/&gt;
</pre> </pre>


<p> <p>


+ 23
- 23
docs/manual/OptionalTasks/perforce.html View File

@@ -175,16 +175,16 @@ available from the <a href="http://www.perforce.com/" target="_top">Perforce web
<h3>Taskdefs</h3> <h3>Taskdefs</h3>
<p>Standard taskdefs (for you to copy'n'paste) -- normally this is done automatically if you install this optional task.</p> <p>Standard taskdefs (for you to copy'n'paste) -- normally this is done automatically if you install this optional task.</p>
<pre> <pre>
&lt;taskdef name=&quot;p4sync&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Sync&quot; /&gt;
&lt;taskdef name=&quot;p4change&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Change&quot; /&gt;
&lt;taskdef name=&quot;p4edit&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Edit&quot; /&gt;
&lt;taskdef name=&quot;p4submit&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Submit&quot; /&gt;
&lt;taskdef name=&quot;p4have&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Have&quot; /&gt;
&lt;taskdef name=&quot;p4label&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Label&quot; /&gt;
&lt;taskdef name=&quot;p4counter&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Counter&quot; /&gt;
&lt;taskdef name=&quot;p4reopen&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Reopen&quot; /&gt;
&lt;taskdef name=&quot;p4revert&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Revert&quot; /&gt;
&lt;taskdef name=&quot;p4add&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Add&quot; /&gt;
&lt;taskdef name=&quot;p4sync&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Sync&quot;/&gt;
&lt;taskdef name=&quot;p4change&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Change&quot;/&gt;
&lt;taskdef name=&quot;p4edit&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Edit&quot;/&gt;
&lt;taskdef name=&quot;p4submit&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Submit&quot;/&gt;
&lt;taskdef name=&quot;p4have&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Have&quot;/&gt;
&lt;taskdef name=&quot;p4label&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Label&quot;/&gt;
&lt;taskdef name=&quot;p4counter&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Counter&quot;/&gt;
&lt;taskdef name=&quot;p4reopen&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Reopen&quot;/&gt;
&lt;taskdef name=&quot;p4revert&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Revert&quot;/&gt;
&lt;taskdef name=&quot;p4add&quot; classname=&quot;org.apache.tools.ant.taskdefs.optional.perforce.P4Add&quot;/&gt;
</pre> </pre>


<hr> <hr>
@@ -215,8 +215,8 @@ available from the <a href="http://www.perforce.com/" target="_top">Perforce web
</table> </table>


<h3>Examples</h3> <h3>Examples</h3>
<pre>&lt;p4sync label=&quot;nightlybuild-0.0123&quot; force=&quot;foo&quot; /&gt;
&lt;p4sync view=&quot;//depot/projects/projectfoo/main/src/...&quot; /&gt;
<pre>&lt;p4sync label=&quot;nightlybuild-0.0123&quot; force=&quot;foo&quot;/&gt;
&lt;p4sync view=&quot;//depot/projects/projectfoo/main/src/...&quot;/&gt;
</pre> </pre>
<hr> <hr>


@@ -280,7 +280,7 @@ although P4Edit can open files to the default change, P4Submit cannot yet submi
<pre> <pre>
&lt;p4edit &lt;p4edit
view=&quot;//depot/projects/projectfoo/main/src/Blah.java...&quot; view=&quot;//depot/projects/projectfoo/main/src/Blah.java...&quot;
change=&quot;${p4.change}&quot; /&gt;
change=&quot;${p4.change}&quot;/&gt;
</pre> </pre>
<hr> <hr>


@@ -306,7 +306,7 @@ although P4Edit can open files to the default change, P4Submit cannot yet submi
</table> </table>


<h3>Examples</h3> <h3>Examples</h3>
<pre>&lt;p4submit change=&quot;${p4.change}&quot; /&gt;
<pre>&lt;p4submit change=&quot;${p4.change}&quot;/&gt;
</pre> </pre>
<hr> <hr>


@@ -332,7 +332,7 @@ although P4Edit can open files to the default change, P4Submit cannot yet submi
</table> </table>


<h3>Examples</h3> <h3>Examples</h3>
<pre>&lt;p4have /&gt;
<pre>&lt;p4have/&gt;
</pre> </pre>
<hr> <hr>


@@ -426,16 +426,16 @@ as defined by Perforce protections in order for this task to succeed.
<h3>Examples</h3> <h3>Examples</h3>
Print the value of the counter named &quot;last-clean-build&quot; to the output stream: Print the value of the counter named &quot;last-clean-build&quot; to the output stream:
<pre> <pre>
&lt;p4counter name=&quot;last-clean-build&quot; /&gt;
&lt;p4counter name=&quot;last-clean-build&quot;/&gt;
</PRE> </PRE>
Set the value of the counter based on the value of the &quot;TSTAMP&quot; property: Set the value of the counter based on the value of the &quot;TSTAMP&quot; property:
<PRE> <PRE>
&lt;p4counter name=&quot;last-clean-build&quot; value=&quot;${TSTAMP}&quot; /&gt;
&lt;p4counter name=&quot;last-clean-build&quot; value=&quot;${TSTAMP}&quot;/&gt;
</PRE> </PRE>
Set the value of the &quot;p4.last.clean.build&quot; property to the current Set the value of the &quot;p4.last.clean.build&quot; property to the current
value of the &quot;last-clean-build&quot; counter: value of the &quot;last-clean-build&quot; counter:
<PRE> <PRE>
&lt;p4counter name=&quot;last-clean-build&quot; property=&quot;${p4.last.clean.build}&quot; /&gt;
&lt;p4counter name=&quot;last-clean-build&quot; property=&quot;${p4.last.clean.build}&quot;/&gt;
</pre> </pre>
<hr> <hr>


@@ -464,12 +464,12 @@ Move (or reopen in Perforce speak) checkout files between changelists.
<h3>Examples</h3> <h3>Examples</h3>
Move all open files to the default changelist Move all open files to the default changelist
<pre> <pre>
&lt;p4reopen view=&quot;//...&quot; tochange=&quot;default&quot; /&gt;
&lt;p4reopen view=&quot;//...&quot; tochange=&quot;default&quot;/&gt;
</PRE> </PRE>
Create a new changelist then reopen into it, any files from the view //projects/foo/main/... Create a new changelist then reopen into it, any files from the view //projects/foo/main/...
<PRE> <PRE>
&lt;p4change description="Move files out of the way" /&gt;
&lt;p4reopen view=&quot;//projects/foo/main/...&quot; tochange=&quot;${p4.change}&quot; /&gt;
&lt;p4change description="Move files out of the way"/&gt;
&lt;p4reopen view=&quot;//projects/foo/main/...&quot; tochange=&quot;${p4.change}&quot;/&gt;
</pre> </pre>
<hr> <hr>


@@ -503,11 +503,11 @@ Reverts files.
<h3>Examples</h3> <h3>Examples</h3>
Revert everything! Revert everything!
<pre> <pre>
&lt;p4revert view=&quot;//...&quot; /&gt;
&lt;p4revert view=&quot;//...&quot;/&gt;
</PRE> </PRE>
Revert any unchanged files in the default change Revert any unchanged files in the default change
<PRE> <PRE>
&lt;p4revert change="default" revertonlyunchanged=&quot;true&quot; /&gt;
&lt;p4revert change="default" revertonlyunchanged=&quot;true&quot;/&gt;
</pre> </pre>
<hr> <hr>




+ 4
- 4
docs/manual/OptionalTasks/propertyfile.html View File

@@ -152,8 +152,8 @@ The slashes conform to the expectations of the Properties class. The file will


<blockquote><pre>&lt;propertyfile <blockquote><pre>&lt;propertyfile
file=&quot;my.properties&quot; file=&quot;my.properties&quot;
comment&quot;My properties&quot; &gt;
&lt;entry key=&quot;akey&quot; value=&quot;avalue&quot; /&gt;
comment&quot;My properties&quot;&gt;
&lt;entry key=&quot;akey&quot; value=&quot;avalue&quot;/&gt;
&lt;entry key=&quot;adate&quot; type=&quot;date&quot; value=&quot;now&quot;/&gt; &lt;entry key=&quot;adate&quot; type=&quot;date&quot; value=&quot;now&quot;/&gt;
&lt;entry key=&quot;anint&quot; type=&quot;int&quot; operation=&quot;+&quot;/&gt; &lt;entry key=&quot;anint&quot; type=&quot;int&quot; operation=&quot;+&quot;/&gt;
&lt;entry key=&quot;formated.int&quot; type=&quot;int&quot; default=&quot;0013&quot; operation=&quot;+&quot; pattern=&quot;0000&quot;/&gt; &lt;entry key=&quot;formated.int&quot; type=&quot;int&quot; default=&quot;0013&quot; operation=&quot;+&quot; pattern=&quot;0000&quot;/&gt;
@@ -164,7 +164,7 @@ The slashes conform to the expectations of the Properties class. The file will
To produce dates relative from today :</p> To produce dates relative from today :</p>
<blockquote><pre>&lt;propertyfile <blockquote><pre>&lt;propertyfile
file=&quot;my.properties&quot; file=&quot;my.properties&quot;
comment=&quot;My properties&quot; &gt;
comment=&quot;My properties&quot;&gt;
&lt;entry key=&quot;formated.date-1&quot; &lt;entry key=&quot;formated.date-1&quot;
type=&quot;date&quot; default=&quot;now&quot; pattern=&quot;DDD&quot; type=&quot;date&quot; default=&quot;now&quot; pattern=&quot;DDD&quot;
operation=&quot;-&quot; value=&quot;1&quot;/&gt; operation=&quot;-&quot; value=&quot;1&quot;/&gt;
@@ -178,7 +178,7 @@ To produce dates relative from today :</p>
Concatenation of strings :</p> Concatenation of strings :</p>
<blockquote><pre>&lt;propertyfile <blockquote><pre>&lt;propertyfile
file=&quot;my.properties&quot; file=&quot;my.properties&quot;
comment=&quot;My properties&quot; &gt;
comment=&quot;My properties&quot;&gt;
&lt;entry key=&quot;progress&quot; default=&quot;&quot; operation=&quot;+&quot; value=&quot;.&quot;/&gt; &lt;entry key=&quot;progress&quot; default=&quot;&quot; operation=&quot;+&quot; value=&quot;.&quot;/&gt;
&lt;/propertyfile&gt; &lt;/propertyfile&gt;
</pre></blockquote> </pre></blockquote>


+ 8
- 8
docs/manual/OptionalTasks/replaceregexp.html View File

@@ -86,7 +86,7 @@ We <b>strongly</b> recommend that you use Jakarta Oro.
<pre> &lt;replaceregexp file=&quot;${src}/build.properties&quot; <pre> &lt;replaceregexp file=&quot;${src}/build.properties&quot;
match=&quot;OldProperty=(.*)&quot; match=&quot;OldProperty=(.*)&quot;
replace=&quot;NewProperty=\1&quot; replace=&quot;NewProperty=\1&quot;
byline=&quot;true&quot; /&gt;
byline=&quot;true&quot;/&gt;
</pre> </pre>
<p>replaces occurrences of the property name &quot;OldProperty&quot; <p>replaces occurrences of the property name &quot;OldProperty&quot;
with &quot;NewProperty&quot; in a properties file, preserving the existing with &quot;NewProperty&quot; in a properties file, preserving the existing
@@ -98,24 +98,24 @@ value, in the file <code>${src}/build.properties</code></p>
the regular expression. You can use this element to refer to a previously the regular expression. You can use this element to refer to a previously
defined regular expression datatype instance.</p> defined regular expression datatype instance.</p>
<blockquote> <blockquote>
&lt;regexp id="id" pattern="expression" /&gt;<br />
&lt;regexp refid="id" /&gt;
&lt;regexp id="id" pattern="expression"/&gt;<br />
&lt;regexp refid="id"/&gt;
</blockquote> </blockquote>
<p>This task supports a nested <i>Substitution</i> element to specify <p>This task supports a nested <i>Substitution</i> element to specify
the substitution pattern. You can use this element to refer to a previously the substitution pattern. You can use this element to refer to a previously
defined substitution pattern datatype instance.</p> defined substitution pattern datatype instance.</p>
<blockquote> <blockquote>
&lt;substitution id="id" pattern="expression" /&gt;<br />
&lt;substitution refid="id" /&gt;
&lt;substitution id="id" pattern="expression"/&gt;<br />
&lt;substitution refid="id"/&gt;
</blockquote> </blockquote>
<h3>Examples</h3> <h3>Examples</h3>
<blockquote> <blockquote>
<pre> <pre>
&lt;replaceregexp byline=&quot;true&quot;&gt; &lt;replaceregexp byline=&quot;true&quot;&gt;
&lt;regexp expression=&quot;OldProperty=(.*)&quot; /&gt;
&lt;substitution expression=&quot;NewProperty=\1&quot; /&gt;
&lt;regexp expression=&quot;OldProperty=(.*)&quot;/&gt;
&lt;substitution expression=&quot;NewProperty=\1&quot;/&gt;
&lt;fileset dir=&quot;.&quot;&gt; &lt;fileset dir=&quot;.&quot;&gt;
&lt;includes=&quot;*.properties&quot; /&gt;
&lt;includes=&quot;*.properties&quot;/&gt;
&lt;/fileset&gt; &lt;/fileset&gt;
&lt;/replaceregexp&gt; &lt;/replaceregexp&gt;
</pre></blockquote> </pre></blockquote>


+ 7
- 6
docs/manual/OptionalTasks/serverdeploy.html View File

@@ -288,10 +288,11 @@ task.


<pre> <pre>
&lt;serverdeploy action=&quot;deploy&quot; source=&quot;${lib.dir}/ejb_myApp.jar&quot;&gt; &lt;serverdeploy action=&quot;deploy&quot; source=&quot;${lib.dir}/ejb_myApp.jar&quot;&gt;
&lt;jonas server=&quot;MyJOnAS&quot; jonasroot="${jonas.root}" &gt;
&lt;jonas server=&quot;MyJOnAS&quot; jonasroot="${jonas.root}"&gt;

&lt;classpath&gt; &lt;classpath&gt;
&lt;pathelement path=&quot;${jonas.root}/lib/RMI_jonas.jar&quot; /&gt;
&lt;pathelement path=&quot;${jonas.root}/config/&quot; /&gt;
&lt;pathelement path=&quot;${jonas.root}/lib/RMI_jonas.jar&quot;/&gt;
&lt;pathelement path=&quot;${jonas.root}/config/&quot;/&gt;
&lt;/classpath&gt; &lt;/classpath&gt;
&lt;/jonas&gt; &lt;/jonas&gt;
&lt;/serverdeploy&gt; &lt;/serverdeploy&gt;
@@ -301,8 +302,8 @@ task.
JOnAS server and a WebLogic server:</p> JOnAS server and a WebLogic server:</p>


<pre> <pre>
&lt;serverdeploy action=&quot;list&quot; /&gt
&lt;jonas jonasroot=&quot;${jonas.root}&quot; orb=&quot;JEREMIE&quot; /&gt;
&lt;serverdeploy action=&quot;list&quot;/&gt
&lt;jonas jonasroot=&quot;${jonas.root}&quot; orb=&quot;JEREMIE&quot;/&gt;
&lt;weblogic application=&quot;myapp&quot &lt;weblogic application=&quot;myapp&quot
server=&quot;t3://myserver:7001&quot; server=&quot;t3://myserver:7001&quot;
classpath=&quot;${weblogic.home}/lib/weblogic.jar&quot; classpath=&quot;${weblogic.home}/lib/weblogic.jar&quot;
@@ -315,4 +316,4 @@ JOnAS server and a WebLogic server:</p>
<hr> <hr>
<p align="center">Copyright &copy; 2002 Apache Software Foundation. All rights Reserved.</p> <p align="center">Copyright &copy; 2002 Apache Software Foundation. All rights Reserved.</p>
</body> </body>
</html>
</html>

+ 37
- 78
docs/manual/OptionalTasks/sos.html View File

@@ -172,23 +172,17 @@ have been tested with Linux, Solaris &amp; Windows2000.</p>
</table> </table>


<h3>Example</h3> <h3>Example</h3>
&nbsp;&nbsp;&nbsp;
<small>&lt;sosget&nbsp;&nbsp;&nbsp;verbose="true"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;recursive="true"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;username="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;password="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;localpath="tmp"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;projectpath="/SourceRoot/project1"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sosserverpath="192.168.10.6:8888"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;vssserverpath="d:\vss\srcsafe.ini"/&gt;</small><br><br>


<pre>
&lt;sosget verbose="true"
recursive="true"
username="build"
password="build"
localpath="tmp"
projectpath="/SourceRoot/project1"
sosserverpath="192.168.10.6:8888"
vssserverpath="d:\vss\srcsafe.ini"/&gt;
</pre>
<small>Connects to a SourceOffsite server on 192.168.10.6:8888 with <small>Connects to a SourceOffsite server on 192.168.10.6:8888 with
build,build as the username &amp; password. The SourceSafe database resides build,build as the username &amp; password. The SourceSafe database resides
on the same box as the SOS server &amp; the VSS database is at on the same box as the SOS server &amp; the VSS database is at
@@ -259,23 +253,14 @@ using tmp as the working directory. </small><br>
</table> </table>


<h3>Example</h3> <h3>Example</h3>
&nbsp;&nbsp;&nbsp;
<small>&lt;soslabel&nbsp;&nbsp;&nbsp;username="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
password="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
label="test label"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
projectpath="/SourceRoot/project1<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
sosserverpath="192.168.10.6:8888"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
vssserverpath="d:\vss\srcsafe.ini"/&gt;</small><br><br>
<pre>
&lt;soslabel username="build"
password="build"
label="test label"
projectpath="/SourceRoot/project1
sosserverpath="192.168.10.6:8888"
vssserverpath="d:\vss\srcsafe.ini"/&gt;
</pre>


<small>Connects to a SourceOffsite server on 192.168.10.6:8888 with <small>Connects to a SourceOffsite server on 192.168.10.6:8888 with
build,build as the username &amp; password. The SourceSafe database resides build,build as the username &amp; password. The SourceSafe database resides
@@ -372,30 +357,16 @@ on the same box as the SOS server &amp; the VSS database is at
</table> </table>


<h3>Example</h3> <h3>Example</h3>
&nbsp;&nbsp;&nbsp;
<small>&lt;soscheckin&nbsp;&nbsp;&nbsp;username="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;password="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;file="foobar.txt"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;verbose="true"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;comment="comment abc"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;projectpath="/SourceRoot/project1"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sosserverpath="server1:8888"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;vssserverpath="\\server2\vss\srcsafe.ini"/&gt;
</small><br><br>
<pre>
&lt;soscheckin username="build"
password="build"
file="foobar.txt"
verbose="true"
comment="comment abc"
projectpath="/SourceRoot/project1"
sosserverpath="server1:8888"
vssserverpath="\\server2\vss\srcsafe.ini"/&gt;
</pre>


<small>Connects to a SourceOffsite server on server1:8888 with build,build as <small>Connects to a SourceOffsite server on server1:8888 with build,build as
the username &amp; password. The SourceSafe database resides on a different the username &amp; password. The SourceSafe database resides on a different
@@ -490,27 +461,15 @@ messages will be displayed on screen.</small><br>
<br> <br>


<h3>Example</h3> <h3>Example</h3>
&nbsp;&nbsp;&nbsp;
<small>&lt;soscheckout&nbsp;&nbsp;&nbsp;soscmd="/usr/local/bin"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;verbose="true"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;username="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;password="build"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;projectpath="/SourceRoot/project1"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sosserverpath="192.168.10.6:8888"<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;vssserverpath="\\server2\vss\srcsafe.ini"/&gt;
</small><br><br>
<pre>
&lt;soscheckout soscmd="/usr/local/bin"
verbose="true"
username="build"
password="build"
projectpath="/SourceRoot/project1"
sosserverpath="192.168.10.6:8888"
vssserverpath="\\server2\vss\srcsafe.ini"/&gt;
</pre>


<small>Connects to a SourceOffsite server on server1:8888 with build,build as <small>Connects to a SourceOffsite server on server1:8888 with build,build as
the username &amp; password. The SourceSafe database resides on a different the username &amp; password. The SourceSafe database resides on a different


+ 115
- 115
docs/manual/OptionalTasks/starteam.html View File

@@ -164,13 +164,13 @@ If false (default) has no effect.


<pre> <pre>
&lt;stcheckout servername="STARTEAM" &lt;stcheckout servername="STARTEAM"
serverport="49201"
projectname="AProject"
viewname="AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
force="true"
serverport="49201"
projectname="AProject"
viewname="AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
force="true"
/&gt; /&gt;
</pre> </pre>


@@ -181,23 +181,23 @@ created for them and any non-StarTeam files found in the tree will be deleted.


<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
/&gt; /&gt;
</pre> </pre>
And this is a simpler way of accomplishing the same thing as the previous example, using the URL attribute. And this is a simpler way of accomplishing the same thing as the previous example, using the URL attribute.
<br></br> <br></br>
<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="\Dev"
excludes="*.bak *.old"
label="v2.6.001"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="\Dev"
excludes="*.bak *.old"
label="v2.6.001"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -206,12 +206,12 @@ end in <i>.bak</i> or <i>.old</i> with the label <i>v2.6.001</i>.


<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -222,13 +222,13 @@ not be checked out by this command.


<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
recursive="false"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
recursive="false"
/&gt; /&gt;
</pre> </pre>
This example is like the previous one, but will only check out files in This example is like the previous one, but will only check out files in
@@ -236,29 +236,29 @@ C:\dev\buildtest\co, because of the turning off of the recursive attribute.


<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
/&gt; /&gt;
</pre> </pre>
<br></br> <br></br>
<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
username="auser"
password="secret"
rootstarteamfolder="src/java"
/&gt; /&gt;
</pre> </pre>
<br></br> <br></br>
<pre> <pre>
&lt;stcheckout URL="STARTEAM:49201/Aproject/AView" &lt;stcheckout URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co\src\java"
forced="true"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co\src\java"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -345,13 +345,13 @@ change it. If false (default) lock status will not change.


<pre> <pre>
&lt;stcheckin servername="STARTEAM" &lt;stcheckin servername="STARTEAM"
serverport="49201"
projectname="AProject"
viewname="AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
serverport="49201"
projectname="AProject"
viewname="AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -362,22 +362,22 @@ For files and folders in the local tree but not in starteam, nothing will be don


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
/&gt; /&gt;
</pre> </pre>
And this is a simpler way of giving the same commands as the command above using the URL shortcut. And this is a simpler way of giving the same commands as the command above using the URL shortcut.
<br></br> <br></br>
<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="\Dev"
excludes="*.bak *.old"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="\Dev"
excludes="*.bak *.old"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -386,12 +386,12 @@ end in <i>.bak</i> or <i>.old</i> from the tree rooted at"C:\dev\buildtest\co" .


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -402,14 +402,14 @@ not be checked in by this command.


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
recursive="false"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="*.htm,*.html"
excludes="index.*"
forced="true"
recursive="false"
/&gt; /&gt;
</pre> </pre>
This example is like the previous one, but will only check in files from This example is like the previous one, but will only check in files from
@@ -417,57 +417,57 @@ C:\dev\buildtest\co, because of the turning off of the recursive attribute.


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="version.txt"
forced="true"
recursive="false"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="version.txt"
forced="true"
recursive="false"
/&gt; /&gt;
</pre> </pre>
This example is like the previous one, but will only check only in one file, C:\dev\buildtest\co\version.txt to the StarTeam folder src/java. This example is like the previous one, but will only check only in one file, C:\dev\buildtest\co\version.txt to the StarTeam folder src/java.


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="version.java"
forced="true"
recursive="false"
addUncontrolled="true"
comment="Fix Bug #667"
username="auser"
password="secret"
rootlocalfolder="C:\dev\buildtest\co"
rootstarteamfolder="src/java"
includes="version.java"
forced="true"
recursive="false"
addUncontrolled="true"
comment="Fix Bug #667"
/&gt; /&gt;
</pre> </pre>
This example is like the previous one, but will only check only in one file, C:\dev\buildtest\co\version.java to the StarTeam folder src/java. Because the <i>addUncontrolled</i> attribute has been set, if StarTeam does not already control this file in this location, it will be added to the repository. Also, it will write a comment to the repository for this version of the file. This example is like the previous one, but will only check only in one file, C:\dev\buildtest\co\version.java to the StarTeam folder src/java. Because the <i>addUncontrolled</i> attribute has been set, if StarTeam does not already control this file in this location, it will be added to the repository. Also, it will write a comment to the repository for this version of the file.


<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co"
forced="true"
/&gt; /&gt;
</pre> </pre>
<br></br> <br></br>
<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
username="auser"
password="secret"
rootstarteamfolder="src/java"
/&gt; /&gt;
</pre> </pre>
<br></br> <br></br>
<pre> <pre>
&lt;stcheckin URL="STARTEAM:49201/Aproject/AView" &lt;stcheckin URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co\src\java"
forced="true"
username="auser"
password="secret"
rootstarteamfolder="src/java"
rootlocalfolder="C:\dev\buildtest\co\src\java"
forced="true"
/&gt; /&gt;
</pre> </pre>


@@ -520,11 +520,11 @@ This example shows the use of this tag. It will create a label named <i>Version
&lt;format property="nowstamp" pattern="yyyyMMddHHmmss" locale="en"/&gt; &lt;format property="nowstamp" pattern="yyyyMMddHHmmss" locale="en"/&gt;
&lt;/tstamp&gt; &lt;/tstamp&gt;
&lt;stlabel URL="STARTEAM:49201/Aproject/AView" &lt;stlabel URL="STARTEAM:49201/Aproject/AView"
username="auser"
password="secret"
label="Version 6.2"
lastbuild="${nowstamp}"
description="Thorough description"
username="auser"
password="secret"
label="Version 6.2"
lastbuild="${nowstamp}"
description="Thorough description"
/&gt; /&gt;
</pre> </pre>


@@ -582,8 +582,8 @@ See also <A href="#common-params">the required common StarTeam parameters</A>.<b
<pre> <pre>


&lt;stlist url="WASHINGTON:49201/build" &lt;stlist url="WASHINGTON:49201/build"
username="auser"
password="secret"
username="auser"
password="secret"
/&gt; /&gt;
</pre> </pre>


@@ -604,10 +604,10 @@ while adding a <i>rootlocalfolder</i> and an <i>excludes</i> param ...
<pre> <pre>


&lt;stlist url="WASHINGTON:49201/build" &lt;stlist url="WASHINGTON:49201/build"
username="auser"
password="secret"
rootlocalfolder="srcdir2"
excludes="*.properties"
username="auser"
password="secret"
rootlocalfolder="srcdir2"
excludes="*.properties"
/&gt; /&gt;
</pre> </pre>




+ 10
- 9
docs/manual/OptionalTasks/wljspc.html View File

@@ -57,15 +57,17 @@ It follows the weblogic naming convention of putting classes in<br>
Example<br> Example<br>
</h3> </h3>
<p> <p>
&lt;target name="jspcompile" depends="compile"&gt;<br>
&lt;wljspc src="c:\\weblogic\\myserver\\public_html" dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp" &gt;<br>
&lt;classpath&gt;<br>
&lt;pathelement location="${weblogic.classpath}" /&gt;<br>
&lt;pathelement path="${compile.dest}" /&gt;<br>
&lt;/classpath&gt;<br>
<br>
&lt;/wljspc&gt;<br>
<pre>
&lt;target name="jspcompile" depends="compile"&gt;
&lt;wljspc src="c:\\weblogic\\myserver\\public_html" dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp"&gt
&lt;classpath&gt;
&lt;pathelement location="${weblogic.classpath}"/&gt;
&lt;pathelement path="${compile.dest}"/&gt;
&lt;/classpath&gt;
&lt;/wljspc&gt;
&lt;/target&gt; &lt;/target&gt;
</pre>

</p> </p>


<h3>Limitations</h3> <h3>Limitations</h3>
@@ -80,4 +82,3 @@ many files at one go, it is called multiple times with one jsp file each.</li>
Reserved.</p> Reserved.</p>
</body> </body>
</html> </html>


+ 1
- 1
docs/manual/OptionalTasks/xmlvalidate.html View File

@@ -91,7 +91,7 @@ element is used to perform Entity resolution.</p>
&lt;xmlvalidate file="toto.xml"/&gt; &lt;xmlvalidate file="toto.xml"/&gt;


&lt;xmlvalidate failonerror="no" lenient="yes" warn="yes" &lt;xmlvalidate failonerror="no" lenient="yes" warn="yes"
classname="org.apache.xerces.parsers.SAXParser" &gt;
classname="org.apache.xerces.parsers.SAXParser"&gt;
classpath="lib/xerces.jar"&gt; classpath="lib/xerces.jar"&gt;
&lt;fileset dir="src" includes="style/*.xsl"/&gt; &lt;fileset dir="src" includes="style/*.xsl"/&gt;
&lt;/xmlvalidate&gt; &lt;/xmlvalidate&gt;


+ 2
- 2
docs/manual/OptionalTypes/classfileset.html View File

@@ -81,14 +81,14 @@ then be used to create a jar.
</p> </p>


<blockquote><pre> <blockquote><pre>
&lt;jar destfile=&quot;minimal.jar&quot; &gt;
&lt;jar destfile=&quot;minimal.jar&quot;&gt;
&lt;fileset refid=&quot;reqdClasses&quot;/&gt; &lt;fileset refid=&quot;reqdClasses&quot;/&gt;
&lt;/jar&gt; &lt;/jar&gt;
</pre></blockquote> </pre></blockquote>


<blockquote><pre> <blockquote><pre>
&lt;classfileset id=&quot;reqdClasses&quot; dir=&quot;${classes.dir}&quot;&gt; &lt;classfileset id=&quot;reqdClasses&quot; dir=&quot;${classes.dir}&quot;&gt;
&lt;rootfileset dir=&quot;${classes.dir}&quot; includes=&quot;org/apache/tools/ant/Project*.class&quot; /&gt;
&lt;rootfileset dir=&quot;${classes.dir}&quot; includes=&quot;org/apache/tools/ant/Project*.class&quot;/&gt;
&lt;/classfileset&gt; &lt;/classfileset&gt;
</pre></blockquote> </pre></blockquote>




+ 1
- 1
docs/manual/OptionalTypes/extension.html View File

@@ -85,7 +85,7 @@ http://java.sun.com/j2se/1.3/docs/guide/extensions/versioning.html</a>.</p>
&lt;extension id=&quot;e1&quot; &lt;extension id=&quot;e1&quot;
extensionName=&quot;MyExtensions&quot; extensionName=&quot;MyExtensions&quot;
specificationVersion=&quot;1.0&quot; specificationVersion=&quot;1.0&quot;
specificationVendor=&quot;Peter Donald&quot; /&gt;
specificationVendor=&quot;Peter Donald&quot;/&gt;
</pre></blockquote> </pre></blockquote>


<p>Extension object that just species the specification details.</p> <p>Extension object that just species the specification details.</p>


Loading…
Cancel
Save