Browse Source

Replace > with > where appropriate.

PR: 12193 and 12195
Submitted by:	Larry Shatzer


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273287 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
c0287b1df8
13 changed files with 99 additions and 99 deletions
  1. +4
    -4
      docs/manual/CoreTasks/condition.html
  2. +3
    -3
      docs/manual/CoreTasks/replace.html
  3. +1
    -1
      docs/manual/CoreTypes/filterchain.html
  4. +4
    -4
      docs/manual/Integration/jext-plugin.html
  5. +38
    -38
      docs/manual/OptionalTasks/ejb.html
  6. +14
    -14
      docs/manual/OptionalTasks/jdepend.html
  7. +2
    -2
      docs/manual/OptionalTasks/jjtree.html
  8. +1
    -1
      docs/manual/OptionalTasks/serverdeploy.html
  9. +1
    -1
      docs/manual/OptionalTasks/sound.html
  10. +1
    -1
      docs/manual/OptionalTasks/splash.html
  11. +6
    -6
      docs/manual/OptionalTasks/wljspc.html
  12. +23
    -23
      docs/manual/listeners.html
  13. +1
    -1
      docs/manual/running.html

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

@@ -57,9 +57,9 @@ classpath.</p>
<pre>
&lt;condition property=&quot;isMacOsButNotMacOsX&quot;&gt;
&lt;and&gt;
&lt;os family=&quot;mac&quot; />
&lt;os family=&quot;mac&quot; /&gt;
&lt;not&gt;
&lt;os family=&quot;unix&quot; />
&lt;os family=&quot;unix&quot; /&gt;
&lt;/not&gt;
&lt;/and&gt;
&lt;/condition&gt;
@@ -70,14 +70,14 @@ in the Unix family as well.</p>

<pre>
&lt;condition property=&quot;isSunOSonSparc&quot;&gt;
&lt;os name=&quot;SunOS&quot; arch=&quot;sparc&quot; />
&lt;os name=&quot;SunOS&quot; arch=&quot;sparc&quot; /&gt;
&lt;/condition&gt;
</pre>
<p>sets the property <code>isSunOSonSparc</code> if the current
operating system is SunOS and if it is running on a sparc architecture.</p>

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

</body>


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

@@ -116,7 +116,7 @@ them.</p>
&lt;replace dir=&quot;${src}&quot; value=&quot;wombat&quot;&gt;
&lt;include name=&quot;**/*.html&quot;/&gt;
&lt;replacetoken&gt;&lt;![CDATA[multi line
token]]>&lt;/replacetoken&gt;
token]]&gt;&lt;/replacetoken&gt;
&lt;/replace&gt;
</pre></blockquote>
<p>replaces occurrences of the string &quot;multi
@@ -126,9 +126,9 @@ the platform specific line separator.</p>
<blockquote><pre>
&lt;replace file=&quot;${src}/index.html&quot;&gt;
&lt;replacetoken&gt;&lt;![CDATA[two line
token]]>&lt;/replacetoken&gt;
token]]&gt;&lt;/replacetoken&gt;
&lt;replacevalue&gt;&lt;![CDATA[two line
token]]>&lt;/replacevalue&gt;
token]]&gt;&lt;/replacevalue&gt;
&lt;/replace&gt;
</pre></blockquote>
<h4>replacefilter</h4>


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

@@ -13,7 +13,7 @@ say you wanted to copy just those lines that contained the
string blee from the first 10 lines of a file 'foo'
to a file 'bar' - you would do something like<P>
<code>
cat foo|head -n10|grep blee > bar
cat foo|head -n10|grep blee &gt; bar
</code><P>
Ant was not flexible enough. There was no way for the
&lt;copy&gt; task to do something similar. If you wanted


+ 4
- 4
docs/manual/Integration/jext-plugin.html View File

@@ -21,14 +21,14 @@ href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.source
<h2>Installation instructions from the Readme.txt:</h2>

<p>You have to enable the Jext Console to see the Ant output (menu:
Edit->Options... - General Panel), because the Ant messages are
Edit-&gt;Options... - General Panel), because the Ant messages are
redirected to the Jext console.</p>

<p>You can configure the Ant call in the Jext menu: Edit->Options... -
<p>You can configure the Ant call in the Jext menu: Edit-&gt;Options... -
Plugin Options - Antwork Plugin Panel; here you can set the ant home
directory and the path to your build file.</p>

<p>You can start AntWork in the menu: Plugins->Ant->Work Now! In the
<p>You can start AntWork in the menu: Plugins-&gt;Ant-&gt;Work Now! In the
appearing dialog box you can enter the target which you want to
compile.</p>

@@ -37,6 +37,6 @@ Jext. With a double-click on the error-message you jump to the error
in the specified java text file.</p>

<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>
</body></html>

+ 38
- 38
docs/manual/OptionalTasks/ejb.html View File

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

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

</pre>

@@ -1368,7 +1368,7 @@ in the descriptor dir:</p>

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

The &lt;iplanet> nested element is used to build iAS-specific stubs and
The &lt;iplanet&gt; nested element is used to build iAS-specific stubs and
skeletons and construct a JAR file which may be deployed to the iPlanet
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
@@ -1462,65 +1462,65 @@ If omitted, it defaults to ".jar". </td>
</tr>
</table>

<p>As noted above, the iplanet element supports additional &lt;classpath>
<p>As noted above, the iplanet element supports additional &lt;classpath&gt;
nested elements.</p>
<h3>
Examples</h3>
This example demonstrates the typical use of the &lt;iplanet> nested element.
This example demonstrates the typical use of the &lt;iplanet&gt; nested element.
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"
is processed, the EJB-JAR will be named "Account.jar"
<pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}" >
descriptordir="${src}" &gt;
&lt;iplanet destdir="${assemble.ejbjar}"
classpath="${ias.ejbc.cpath}" />
&lt;include name="**/*-ejb-jar.xml"/>
&lt;exclude name="**/*ias-*.xml"/>
&lt;/ejbjar></pre>
classpath="${ias.ejbc.cpath}" /&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt;
&lt;/ejbjar&gt;</pre>
This example demonstrates the use of a nested classpath element as well
as some of the other optional attributes.
<pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}" >
descriptordir="${src}" &gt;
&lt;iplanet destdir="${assemble.ejbjar}"
iashome="${ias.home}"
debug="yes"
keepgenerated="yes" >
&lt;classpath>
&lt;pathelement path="." />
&lt;pathelement path="${build.classpath}" />
&lt;/classpath>
&lt;/iplanet>
&lt;include name="**/*-ejb-jar.xml"/>
&lt;exclude name="**/*ias-*.xml"/>
&lt;/ejbjar></pre>
keepgenerated="yes" &gt;
&lt;classpath&gt;
&lt;pathelement path="." /&gt;
&lt;pathelement path="${build.classpath}" /&gt;
&lt;/classpath&gt;
&lt;/iplanet&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt;
&lt;/ejbjar&gt;</pre>
This example demonstrates the use of basejarname attribute. In this
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
JAR files don't overwrite each other.
<pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}"
basejarname="HelloWorld" >
basejarname="HelloWorld" &gt;
&lt;iplanet destdir="${assemble.ejbjar}"
classpath="${ias.ejbc.cpath}"/>
&lt;include name="**/*-ejb-jar.xml"/>
&lt;exclude name="**/*ias-*.xml"/>
&lt;/ejbjar></pre>
classpath="${ias.ejbc.cpath}"/&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt;
&lt;/ejbjar&gt;</pre>
This example demonstrates the use of the dtd nested element. If the local
copies of the DTDs are included in the classpath, they will be automatically
referenced without the nested elements. In iAS 6.0 SP2, these local DTDs are
found in the [iAS-install-directory]/APPS directory. In iAS 6.0 SP3, these
local DTDs are found in the [iAS-install-directory]/dtd directory.
<pre> &lt;ejbjar srcdir="${build.classesdir}"
descriptordir="${src}">
&lt;iplanet destdir="${assemble.ejbjar}">
classpath="${ias.ejbc.cpath}" />
&lt;include name="**/*-ejb-jar.xml"/>
&lt;exclude name="**/*ias-*.xml"/>
descriptordir="${src}"&gt;
&lt;iplanet destdir="${assemble.ejbjar}"&gt;
classpath="${ias.ejbc.cpath}" /&gt;
&lt;include name="**/*-ejb-jar.xml"/&gt;
&lt;exclude name="**/*ias-*.xml"/&gt;
&lt;dtd publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN"
location="${ias.home}/APPS/ejb-jar_1_1.dtd"/>
location="${ias.home}/APPS/ejb-jar_1_1.dtd"/&gt;
&lt;dtd publicId="-//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN"
location="${ias.home}/APPS/IASEjb_jar_1_0.dtd"/>
&lt;/ejbjar></pre>
location="${ias.home}/APPS/IASEjb_jar_1_0.dtd"/&gt;
&lt;/ejbjar&gt;</pre>

<h3><a name="ejbjar_jonas">JOnAS (Java Open Application Server) element</a></h3>



+ 14
- 14
docs/manual/OptionalTasks/jdepend.html View File

@@ -88,11 +88,11 @@ that represent <a href="../using.html#path">PATH like structures</a>.</p>

<blockquote>
<pre>
&lt;jdepend classpathref="base.path">
&nbsp;&nbsp;&nbsp; &lt;sourcespath>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" />
&nbsp;&nbsp;&nbsp; &lt;/sourcespath>
&lt;/jdepend>
&lt;jdepend classpathref="base.path"&gt;
&nbsp;&nbsp;&nbsp; &lt;sourcespath&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" /&gt;
&nbsp;&nbsp;&nbsp; &lt;/sourcespath&gt;
&lt;/jdepend&gt;
</pre>
</blockquote>

@@ -101,15 +101,15 @@ The classpath is defined using a classpath reference.

<blockquote>
<pre>
&lt;jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml">
&nbsp;&nbsp;&nbsp; &lt;sourcespath>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" />
&nbsp;&nbsp;&nbsp; &lt;/sourcespath>
&nbsp;&nbsp;&nbsp; &lt;classpath>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="classes" />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="lib/jdepend.jar" />
&nbsp;&nbsp;&nbsp; &lt;/classpath>
&lt;/jdepend>
&lt;jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml"&gt;
&nbsp;&nbsp;&nbsp; &lt;sourcespath&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;pathelement location="src" /&gt;
&nbsp;&nbsp;&nbsp; &lt;/sourcespath&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; &lt;/classpath&gt;
&lt;/jdepend&gt;
</pre>
</blockquote>



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

@@ -166,14 +166,14 @@ Example</h3>
&nbsp;&nbsp;&nbsp; outputdirectory="build/src"
&nbsp;&nbsp;&nbsp; javacchome="c:/program files/JavaCC"&nbsp;
&nbsp;&nbsp;&nbsp; nodeusesparser="true"
/></pre>
/&gt;</pre>
</blockquote>
This invokes JJTree on grammar file src/Parser.jjt, writing the generated
grammar file, Parser.jj, file to build/src. The grammar option NODE_USES_PARSER
is set to true when invoking JJTree.
<br>
<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>
</body>
</html>


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

@@ -288,7 +288,7 @@ task.

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


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

@@ -85,7 +85,7 @@ more than once.
<blockquote>
<pre>
&lt;target name=&quot;fun&quot; if=&quot;fun&quot; unless=&quot;fun.done&quot;&gt;
&lt;sound>
&lt;sound&gt;
&lt;success source=&quot;//intranet/sounds/success&quot;/&gt;
&lt;fail source=&quot;//intranet/sounds/failure&quot;/&gt;
&lt;/sound&gt;


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

@@ -90,7 +90,7 @@ proxy attributes.
<blockquote><pre>
&lt;splash imageurl=&quot;http://jakarta.apache.org/images/jakarta-logo.gif&quot;
useproxy=&quot;true&quot;
showduration=&quot;5000&quot;/>
showduration=&quot;5000&quot;/&gt;

</pre></blockquote>
<p>Splashes the jakarta logo, for


+ 6
- 6
docs/manual/OptionalTasks/wljspc.html View File

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

<h3>Limitations</h3>
@@ -76,7 +76,7 @@ Example<br>
many files at one go, it is called multiple times with one jsp file each.</li>
</ul>
<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>
</body>
</html>


+ 23
- 23
docs/manual/listeners.html View File

@@ -213,33 +213,33 @@ the java command appropriately.</p>
AnsiColorLogger.*=Attribute;Foreground;Background

Attribute is one of the following:
0 -> Reset All Attributes (return to normal mode)
1 -> Bright (Usually turns on BOLD)
2 -> Dim
3 -> Underline
5 -> link
7 -> Reverse
8 -> Hidden
0 -&gt; Reset All Attributes (return to normal mode)
1 -&gt; Bright (Usually turns on BOLD)
2 -&gt; Dim
3 -&gt; Underline
5 -&gt; link
7 -&gt; Reverse
8 -&gt; Hidden

Foreground is one of the following:
30 -> Black
31 -> Red
32 -> Green
33 -> Yellow
34 -> Blue
35 -> Magenta
36 -> Cyan
37 -> White
30 -&gt; Black
31 -&gt; Red
32 -&gt; Green
33 -&gt; Yellow
34 -&gt; Blue
35 -&gt; Magenta
36 -&gt; Cyan
37 -&gt; White

Background is one of the following:
40 -> Black
41 -> Red
42 -> Green
43 -> Yellow
44 -> Blue
45 -> Magenta
46 -> Cyan
47 -> White</pre>
40 -&gt; Black
41 -&gt; Red
42 -&gt; Green
43 -&gt; Yellow
44 -&gt; Blue
45 -&gt; Magenta
46 -&gt; Cyan
47 -&gt; White</pre>

<blockquote>



+ 1
- 1
docs/manual/running.html View File

@@ -94,7 +94,7 @@ Options:
-buildfile &lt;file&gt; use given buildfile
-file &lt;file&gt; ''
-f &lt;file&gt; ''
-D&lt;property>=&lt;value&gt; use value for given property
-D&lt;property&gt;=&lt;value&gt; use value for given property
-propertyfile &lt;name&gt; load all properties from file with -D
properties taking precedence
-inputhandler &lt;class&gt; the class which will handle input requests


Loading…
Cancel
Save