Attached is a patch file to correct quite a few spelling mistakes in
docs/manual/OptionalTasks and OptionalTypes

-- Larry

Index: docs/manual/OptionalTasks/BorlandGenerateClient.html
===================================================================
RCS file: 
/home/cvspublic/ant/docs/manual/OptionalTasks/BorlandGenerateClient.html,v
retrieving revision 1.9
diff -r1.9 BorlandGenerateClient.html
65c65
<         &lt;pathelement locacation=&quot;mymodule.jar&quot;/&gt;
---
>         &lt;pathelement location=&quot;mymodule.jar&quot;/&gt;
Index: docs/manual/OptionalTasks/antlr.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/antlr.html,v
retrieving revision 1.12
diff -r1.12 antlr.html
94c94
<       Generates a text file with debugging infomation based on the target 
grammar.
---
>       Generates a text file with debugging information based on the target 
> grammar.
Index: docs/manual/OptionalTasks/ccm.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/ccm.html,v
retrieving revision 1.12
diff -r1.12 ccm.html
20c20
<   agains versions 5.1/6.2 on Windows 2000, but should work on other platforms 
with ccm installed.</p>
---
>   against versions 5.1/6.2 on Windows 2000, but should work on other 
> platforms with ccm installed.</p>
81c81
<     <td>filset containing the file to be checked out</td>
---
>     <td>fileset containing the file to be checked out</td>
Index: docs/manual/OptionalTasks/chgrp.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/chgrp.html,v
retrieving revision 1.6
diff -r1.6 chgrp.html
124c124
< group webdev. Directories begining with <code>test_</code> also will belong 
---
> group webdev. Directories beginning with <code>test_</code> also will belong 
Index: docs/manual/OptionalTasks/chown.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/chown.html,v
retrieving revision 1.4
diff -r1.4 chown.html
16c16
< atribute is equivalent to the coresponding argument for the chown
---
> attribute is equivalent to the corresponding argument for the chown
124,125c124,125
< directories begining with <code>private_</code> belong to the user named
< webadmin. A directory ending in <code>.old</code> or a file begining with 
---
> directories beginning with <code>private_</code> belong to the user named
> webadmin. A directory ending in <code>.old</code> or a file beginning with 
Index: docs/manual/OptionalTasks/clearcase.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/clearcase.html,v
retrieving revision 1.10
diff -r1.10 clearcase.html
42c42
< ClearCase commands using the Cleartool program. The current tasks avaliable 
for Ant correspond to only
---
> ClearCase commands using the Cleartool program. The current tasks available 
> for Ant correspond to only
Index: docs/manual/OptionalTasks/csc.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/csc.html,v
retrieving revision 1.2
diff -r1.2 csc.html
49c49
<         Compiles C# source into executables or modules. csc.exe on Windows or 
mcs on any other platform must be on the execute path, unless another 
executable or the full path to that executable is specified in the 
<tt>executable</tt> parameter <p> All parameters are optional: &lt;csc/&gt; 
should suffice to produce a debug build of all *.cs files. However, naming an 
<tt>destFile</tt>stops the csc compiler from choosing an output name from 
random, and allows the dependency checker to determine if the file is out of 
date. <p> The task is a directory based task, so attributes like 
<b>includes="*.cs" </b> and <b>excludes="broken.cs"</b> can be used to control 
the files pulled in. By default, all *.cs files from the project folder down 
are included in the command. When this happens the output file -if not 
specified- is taken as the first file in the list, which may be somewhat hard 
to control. Specifying the output file with <tt>destFile</tt> seems prudent. 
<p> <p> For more complex source trees, nested <tt>src</tt> elemements can be 
supplied. When such an element is present, the implicit fileset is ignored. 
This makes sense, when you think about it :) <p> References to external files 
can be made through the references attribute, or (since Ant1.6), via nested 
&lt;reference&gt; filesets. With the latter, the timestamps of the references 
are also used in the dependency checking algorithm. <p> Example <pre>&lt;csc 
optimize=&quot;true&quot; debug=&quot;false&quot; 
docFile=&quot;documentation.xml&quot; warnLevel=&quot;4&quot; 
unsafe=&quot;false&quot; targetType=&quot;exe&quot; 
incremental=&quot;false&quot; mainClass = &quot;MainApp&quot; 
destFile=&quot;NetApp.exe&quot; &gt; &lt;src dir="src" includes="*.cs" /&gt; 
&lt;reference file="${testCSC.dll}" /&gt; &lt;define name="RELEASE" /&gt; 
&lt;define name="DEBUG" if="debug.property"/&gt; &lt;define name="def3" 
unless="def3.property"/&gt; &lt;/csc&gt; </pre>
---
>         Compiles C# source into executables or modules. csc.exe on Windows or 
> mcs on any other platform must be on the execute path, unless another 
> executable or the full path to that executable is specified in the 
> <tt>executable</tt> parameter <p> All parameters are optional: &lt;csc/&gt; 
> should suffice to produce a debug build of all *.cs files. However, naming an 
> <tt>destFile</tt>stops the csc compiler from choosing an output name from 
> random, and allows the dependency checker to determine if the file is out of 
> date. <p> The task is a directory based task, so attributes like 
> <b>includes="*.cs" </b> and <b>excludes="broken.cs"</b> can be used to 
> control the files pulled in. By default, all *.cs files from the project 
> folder down are included in the command. When this happens the output file 
> -if not specified- is taken as the first file in the list, which may be 
> somewhat hard to control. Specifying the output file with <tt>destFile</tt> 
> seems prudent. <p> <p> For more complex source trees, nested <tt>src</tt> 
> elements can be supplied. When such an element is present, the implicit 
> fileset is ignored. This makes sense, when you think about it :) <p> 
> References to external files can be made through the references attribute, or 
> (since Ant1.6), via nested &lt;reference&gt; filesets. With the latter, the 
> timestamps of the references are also used in the dependency checking 
> algorithm. <p> Example <pre>&lt;csc optimize=&quot;true&quot; 
> debug=&quot;false&quot; docFile=&quot;documentation.xml&quot; 
> warnLevel=&quot;4&quot; unsafe=&quot;false&quot; targetType=&quot;exe&quot; 
> incremental=&quot;false&quot; mainClass = &quot;MainApp&quot; 
> destFile=&quot;NetApp.exe&quot; &gt; &lt;src dir="src" includes="*.cs" /&gt; 
> &lt;reference file="${testCSC.dll}" /&gt; &lt;define name="RELEASE" /&gt; 
> &lt;define name="DEBUG" if="debug.property"/&gt; &lt;define name="def3" 
> unless="def3.property"/&gt; &lt;/csc&gt; </pre>
Index: docs/manual/OptionalTasks/depend.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/depend.html,v
retrieving revision 1.11
diff -r1.11 depend.html
146c146
<     <td valign="top">The classpath containg jars and classes for which 
<code>&lt;depend&gt;</code> should also
---
>     <td valign="top">The classpath containing jars and classes for which 
> <code>&lt;depend&gt;</code> should also
Index: docs/manual/OptionalTasks/ejb.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/ejb.html,v
retrieving revision 1.39
diff -r1.39 ejb.html
430c430
< elements to set the repsective classpaths.</p>
---
> elements to set the respective classpaths.</p>
1299c1299
<     <td valign="top">Decides wether ejbdeploy is called. When you set this to 
true,
---
>     <td valign="top">Decides whether ejbdeploy is called. When you set this 
> to true,
Index: docs/manual/OptionalTasks/ftp.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/ftp.html,v
retrieving revision 1.25
diff -r1.25 ftp.html
35c35
< for instance due to specificities of langage used by the ftp server in the 
directory listing.
---
> for instance due to specificities of language used by the ftp server in the 
> directory listing.
429c429
< Obviuosly all the files in the tree must have been already deleted.
---
> Obviously all the files in the tree must have been already deleted.
Index: docs/manual/OptionalTasks/icontract.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/icontract.html,v
retrieving revision 1.11
diff -r1.11 icontract.html
113c113
<      <td valign="top">Indicates where compiled (unistrumented) classes are 
located.
---
>      <td valign="top">Indicates where compiled (uninstrumented) classes are 
> located.
Index: docs/manual/OptionalTasks/image.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/image.html,v
retrieving revision 1.3
diff -r1.3 image.html
99c99
<     <td valign="top"> Boolean value. Sets whether or not symbolic links 
hsould be followed. </td>
---
>     <td valign="top"> Boolean value. Sets whether or not symbolic links 
> should be followed. </td>
157c157
<     <td valign="top"> heigth </td>
---
>     <td valign="top"> height </td>
Index: docs/manual/OptionalTasks/jarlib-available.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jarlib-available.html,v
retrieving revision 1.3
diff -r1.3 jarlib-available.html
69c69
< <p><b>Search for extension in single file refencing external Extension</b></p>
---
> <p><b>Search for extension in single file referencing external 
> Extension</b></p>
Index: docs/manual/OptionalTasks/jarlib-manifest.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jarlib-manifest.html,v
retrieving revision 1.3
diff -r1.3 jarlib-manifest.html
53c53
<  present else they wilkl be ignored)</p>
---
>  present else they will be ignored)</p>
Index: docs/manual/OptionalTasks/jarlib-resolve.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jarlib-resolve.html,v
retrieving revision 1.3
diff -r1.3 jarlib-resolve.html
15c15
<  library for a specifc extension. Each resolver will be attempted
---
>  library for a specific extension. Each resolver will be attempted
49c49
<     <td valign="top">True if librarys returned by nested resolvers should be 
checked to see if
---
>     <td valign="top">True if libraries returned by nested resolvers should be 
> checked to see if
174c174
<   extension. If it does not then try to build it from source in parralel 
directory. If that
---
>   extension. If it does not then try to build it from source in parallel 
> directory. If that
Index: docs/manual/OptionalTasks/jjtree.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jjtree.html,v
retrieving revision 1.9
diff -r1.9 jjtree.html
520c520
< <p>*) <u>Footnote</u>: When running JJTree with the Ant taskdesk 
<i>jjtree</i> the option <code>-OUTPUT_DIRECTORY</code> must always 
---
> <p>*) <u>Footnote</u>: When running JJTree with the Ant taskdef <i>jjtree</i> 
> the option <code>-OUTPUT_DIRECTORY</code> must always 
Index: docs/manual/OptionalTasks/jpcoverage.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jpcoverage.html,v
retrieving revision 1.7
diff -r1.7 jpcoverage.html
57c57
<     <td valign="top">The directory where JProbe is intalled.</td>
---
>     <td valign="top">The directory where JProbe is installed.</td>
383c383
<     <td valign="top">The directory where JProbe is intalled.</td>
---
>     <td valign="top">The directory where JProbe is installed.</td>
Index: docs/manual/OptionalTasks/jspc.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/jspc.html,v
retrieving revision 1.18
diff -r1.18 jspc.html
240c240
< package heirarchy beginning with com.i3sp.jsp.
---
> package hierarchy beginning with com.i3sp.jsp.
Index: docs/manual/OptionalTasks/netrexxc.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/netrexxc.html,v
retrieving revision 1.9
diff -r1.9 netrexxc.html
287c287
<       &amp;Exception is declared, but not signalled within the method&amp;
---
>       &amp;Exception is declared, but not signaled within the method&amp;
293c293
<     <td valign="top">Tells wether we should filter out any 
deprecation-messages
---
>     <td valign="top">Tells whether we should filter out any 
> deprecation-messages
Index: docs/manual/OptionalTasks/perforce.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/perforce.html,v
retrieving revision 1.26
diff -r1.26 perforce.html
227c227
<     <td valign="top" align="center">no - if ommitted, it will be off,
---
>     <td valign="top" align="center">no - if omitted, it will be off,
Index: docs/manual/OptionalTasks/pvcstask.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/pvcstask.html,v
retrieving revision 1.9
diff -r1.9 pvcstask.html
46c46
< This version has been tested agains PVCS version 6.5 and 6.6 under Windows 
and Solaris.
---
> This version has been tested against PVCS version 6.5 and 6.6 under Windows 
> and Solaris.
Index: docs/manual/OptionalTasks/replaceregexp.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/replaceregexp.html,v
retrieving revision 1.20
diff -r1.20 replaceregexp.html
52c52
<                      g : Global replacement.  Replace all occurences found<br 
/>
---
>                      g : Global replacement.  Replace all occurrences 
> found<br />
63c63
<                      want to only replace the first occurence of a regular 
expression on
---
>                      want to only replace the first occurrence of a regular 
> expression on
Index: docs/manual/OptionalTasks/rpm.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/rpm.html,v
retrieving revision 1.7
diff -r1.7 rpm.html
0a1
> 
Index: docs/manual/OptionalTasks/scp.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/scp.html,v
retrieving revision 1.14
diff -r1.14 scp.html
36c36
<     <i>:password</i> can be ommitted if you use key based
---
>     <i>:password</i> can be omitted if you use key based
62c62
<     <i>:password</i> can be ommitted if you use key based
---
>     <i>:password</i> can be omitted if you use key based
212c212
< substituion and include the password on the command line.  For example:<br>
---
> substitution and include the password on the command line.  For example:<br>
Index: docs/manual/OptionalTasks/script.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/script.html,v
retrieving revision 1.19
diff -r1.19 script.html
88c88
<     The following script shows a little more complicted jruby example:
---
>     The following script shows a little more complicated jruby example:
259c259
< apropriate logging before and after invoking execute().
---
> appropriate logging before and after invoking execute().
Index: docs/manual/OptionalTasks/scriptdef.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/scriptdef.html,v
retrieving revision 1.6
diff -r1.6 scriptdef.html
17c17
< proviuding control style tasks in Ant itself. Complex logic can be made
---
> providing control style tasks in Ant itself. Complex logic can be made
126c126
< The following definition creates a task which supprts an attribute called
---
> The following definition creates a task which supports an attribute called
Index: docs/manual/OptionalTasks/serverdeploy.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/serverdeploy.html,v
retrieving revision 1.6
diff -r1.6 serverdeploy.html
73c73
<     <td>Tool dependant</td>
---
>     <td>Tool dependent</td>
94c94
<     <td>Tool dependant</td>
---
>     <td>Tool dependent</td>
99c99
<     <td>Tool dependant</td>
---
>     <td>Tool dependent</td>
104c104
<     <td>Tool dependant</td>
---
>     <td>Tool dependent</td>
109c109
<     <td>Tool dependant</td>
---
>     <td>Tool dependent</td>
234c234
< <h3>JOnAS (Java Open Applicaton Server) element</h3>
---
> <h3>JOnAS (Java Open Application Server) element</h3>
Index: docs/manual/OptionalTasks/sshexec.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/sshexec.html,v
retrieving revision 1.11
diff -r1.11 sshexec.html
34c34
<     <td valign="top">The hostname or IP adress of the remote host to which 
you wish to connect.</td>
---
>     <td valign="top">The hostname or IP address of the remote host to which 
> you wish to connect.</td>
145c145
< substituion and include the password on the command line.  For example:<br>
---
> substitution and include the password on the command line.  For example:<br>
Index: docs/manual/OptionalTasks/starteam.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/starteam.html,v
retrieving revision 1.27
diff -r1.27 starteam.html
555c555
< Creates a view label in StarTeam at the specified view.  The label will be 
classified by StarTeam as a "build label".  This task will fail if there 
already exexists in <i>viewname</i> a label with the same name as the 
<i>label</i> parameter. 
---
> Creates a view label in StarTeam at the specified view.  The label will be 
> classified by StarTeam as a "build label".  This task will fail if there 
> already exists in <i>viewname</i> a label with the same name as the 
> <i>label</i> parameter. 
689c689
<     <td valign="top">List files, dates, and statusess as of this date.
---
>     <td valign="top">List files, dates, and statuses as of this date.
Index: docs/manual/OptionalTasks/symlink.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/symlink.html,v
retrieving revision 1.1
diff -r1.1 symlink.html
100c100
<   level comands in Java versions earlier than 1.3 this task may have 
difficulty
---
>   level commands in Java versions earlier than 1.3 this task may have 
> difficulty
112c112
<   command on the comand line will not be able to use action="single" or 
---
>   command on the command line will not be able to use action="single" or 
Index: docs/manual/OptionalTasks/test.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/test.html,v
retrieving revision 1.10
diff -r1.10 test.html
13c13
< <p><strong>This task is deprectated as the Testlet framework has been
---
> <p><strong>This task is deprecated as the Testlet framework has been
Index: docs/manual/OptionalTasks/vss.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/vss.html,v
retrieving revision 1.15
diff -r1.15 vss.html
247c247
<       version is labelled.</td>
---
>       version is labeled.</td>
Index: docs/manual/OptionalTasks/wljspc.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTasks/wljspc.html,v
retrieving revision 1.8
diff -r1.8 wljspc.html
18c18
<       <td>oot of source tree for JSP, ie, the document root for your weblogic 
server</td>
---
>       <td>root of source tree for JSP, ie, the document root for your 
> weblogic server</td>
Index: docs/manual/OptionalTypes/extension.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/OptionalTypes/extension.html,v
retrieving revision 1.5
diff -r1.5 extension.html
82c82
< <p>Fully specifiec extension object.</p>
---
> <p>Fully specific extension object.</p>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to