diff --git a/docs/manual/CoreTasks/condition.html b/docs/manual/CoreTasks/condition.html index 0b116ce40..74cb50a86 100644 --- a/docs/manual/CoreTasks/condition.html +++ b/docs/manual/CoreTasks/condition.html @@ -57,9 +57,9 @@ classpath.

   <condition property="isMacOsButNotMacOsX">
     <and>
-      <os family="mac" />
+      <os family="mac" />
       <not>
-        <os family="unix" />
+        <os family="unix" />
       </not>
     </and>
   </condition>
@@ -70,14 +70,14 @@ in the Unix family as well.

   <condition property="isSunOSonSparc">
-    <os name="SunOS" arch="sparc" />
+    <os name="SunOS" arch="sparc" />
   </condition>
 

sets the property isSunOSonSparc if the current operating system is SunOS and if it is running on a sparc architecture.


-

Copyright © 2001 Apache Software +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/CoreTasks/replace.html b/docs/manual/CoreTasks/replace.html index 45da0d13d..f791c668b 100644 --- a/docs/manual/CoreTasks/replace.html +++ b/docs/manual/CoreTasks/replace.html @@ -116,7 +116,7 @@ them.

<replace dir="${src}" value="wombat"> <include name="**/*.html"/> <replacetoken><![CDATA[multi line -token]]></replacetoken> +token]]></replacetoken> </replace>

replaces occurrences of the string "multi @@ -126,9 +126,9 @@ the platform specific line separator.

 <replace file="${src}/index.html">
   <replacetoken><![CDATA[two line
-token]]></replacetoken>
+token]]></replacetoken>
   <replacevalue><![CDATA[two line
-token]]></replacevalue>
+token]]></replacevalue>
 </replace>
 

replacefilter

diff --git a/docs/manual/CoreTypes/filterchain.html b/docs/manual/CoreTypes/filterchain.html index 1ea8ffbc2..65ac6a652 100644 --- a/docs/manual/CoreTypes/filterchain.html +++ b/docs/manual/CoreTypes/filterchain.html @@ -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

-cat foo|head -n10|grep blee > bar +cat foo|head -n10|grep blee > bar

Ant was not flexible enough. There was no way for the <copy> task to do something similar. If you wanted diff --git a/docs/manual/Integration/jext-plugin.html b/docs/manual/Integration/jext-plugin.html index c6d05c082..7beac6bff 100644 --- a/docs/manual/Integration/jext-plugin.html +++ b/docs/manual/Integration/jext-plugin.html @@ -21,14 +21,14 @@ href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.source

Installation instructions from the Readme.txt:

You have to enable the Jext Console to see the Ant output (menu: -Edit->Options... - General Panel), because the Ant messages are +Edit->Options... - General Panel), because the Ant messages are redirected to the Jext console.

-

You can configure the Ant call in the Jext menu: Edit->Options... - +

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

-

You can start AntWork in the menu: Plugins->Ant->Work Now! In the +

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

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


-

Copyright © 2001 Apache Software Foundation. All rights +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

\ No newline at end of file diff --git a/docs/manual/OptionalTasks/ejb.html b/docs/manual/OptionalTasks/ejb.html index bfd65bacb..b5a2bbd82 100644 --- a/docs/manual/OptionalTasks/ejb.html +++ b/docs/manual/OptionalTasks/ejb.html @@ -295,19 +295,19 @@ Examples
<iplanet-ejbc ejbdescriptor="ejb-jar.xml"
               iasdescriptor="ias-ejb-jar.xml"
               dest="${build.classesdir}"
-              classpath="${ias.ejbc.cpath}" />
+              classpath="${ias.ejbc.cpath}" />
 
 <iplanet-ejbc ejbdescriptor="ejb-jar.xml"
               iasdescriptor="ias-ejb-jar.xml"
               dest="${build.classesdir}"
               keepgenerated="yes"
               debug="yes"
-              iashome="${ias.home}" >
-              <classpath>
-                  <pathelement path="." />
-                  <pathelement path="${build.classpath}" />
-              </classpath>
-</iplanet-ejbc>
+              iashome="${ias.home}" >
+              <classpath>
+                  <pathelement path="." />
+                  <pathelement path="${build.classpath}" />
+              </classpath>
+</iplanet-ejbc>
 
 
@@ -1368,7 +1368,7 @@ in the descriptor dir:

iPlanet Application Server (iAS) element

-The <iplanet> nested element is used to build iAS-specific stubs and +The <iplanet> 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". -

As noted above, the iplanet element supports additional <classpath> +

As noted above, the iplanet element supports additional <classpath> nested elements.

Examples

-This example demonstrates the typical use of the <iplanet> nested element. +This example demonstrates the typical use of the <iplanet> 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"
    <ejbjar srcdir="${build.classesdir}"
-            descriptordir="${src}" >
+            descriptordir="${src}" >
             <iplanet destdir="${assemble.ejbjar}"
-                     classpath="${ias.ejbc.cpath}" />
-            <include name="**/*-ejb-jar.xml"/>
-            <exclude name="**/*ias-*.xml"/>
-    </ejbjar>
+ classpath="${ias.ejbc.cpath}" /> + <include name="**/*-ejb-jar.xml"/> + <exclude name="**/*ias-*.xml"/> + </ejbjar> This example demonstrates the use of a nested classpath element as well as some of the other optional attributes.
    <ejbjar srcdir="${build.classesdir}"
-            descriptordir="${src}" >
+            descriptordir="${src}" >
             <iplanet destdir="${assemble.ejbjar}"
                      iashome="${ias.home}"
                      debug="yes"
-                     keepgenerated="yes" >
-                     <classpath>
-                         <pathelement path="." />
-                         <pathelement path="${build.classpath}" />
-                     </classpath>
-            </iplanet>
-            <include name="**/*-ejb-jar.xml"/>
-            <exclude name="**/*ias-*.xml"/>
-    </ejbjar>
+ keepgenerated="yes" > + <classpath> + <pathelement path="." /> + <pathelement path="${build.classpath}" /> + </classpath> + </iplanet> + <include name="**/*-ejb-jar.xml"/> + <exclude name="**/*ias-*.xml"/> + </ejbjar> 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.
    <ejbjar srcdir="${build.classesdir}"
             descriptordir="${src}"
-            basejarname="HelloWorld" >
+            basejarname="HelloWorld" >
             <iplanet destdir="${assemble.ejbjar}"
-                     classpath="${ias.ejbc.cpath}"/>
-            <include name="**/*-ejb-jar.xml"/>
-            <exclude name="**/*ias-*.xml"/>
-    </ejbjar>
+ classpath="${ias.ejbc.cpath}"/> + <include name="**/*-ejb-jar.xml"/> + <exclude name="**/*ias-*.xml"/> + </ejbjar> 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.
    <ejbjar srcdir="${build.classesdir}"
-            descriptordir="${src}">
-            <iplanet destdir="${assemble.ejbjar}">
-                     classpath="${ias.ejbc.cpath}" />
-            <include name="**/*-ejb-jar.xml"/>
-            <exclude name="**/*ias-*.xml"/>
+            descriptordir="${src}">
+            <iplanet destdir="${assemble.ejbjar}">
+                     classpath="${ias.ejbc.cpath}" />
+            <include name="**/*-ejb-jar.xml"/>
+            <exclude name="**/*ias-*.xml"/>
             <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"/>
             <dtd publicId="-//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN"
-                 location="${ias.home}/APPS/IASEjb_jar_1_0.dtd"/>
-    </ejbjar>
+ location="${ias.home}/APPS/IASEjb_jar_1_0.dtd"/> + </ejbjar>

JOnAS (Java Open Application Server) element

diff --git a/docs/manual/OptionalTasks/jdepend.html b/docs/manual/OptionalTasks/jdepend.html index 134700add..ccbb2854d 100644 --- a/docs/manual/OptionalTasks/jdepend.html +++ b/docs/manual/OptionalTasks/jdepend.html @@ -88,11 +88,11 @@ that represent PATH like structures.

-<jdepend classpathref="base.path">
-    <sourcespath>
-        <pathelement location="src" />
-    </sourcespath>
-</jdepend>
+<jdepend classpathref="base.path">
+    <sourcespath>
+        <pathelement location="src" />
+    </sourcespath>
+</jdepend>
 
@@ -101,15 +101,15 @@ The classpath is defined using a classpath reference.
-<jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml">
-    <sourcespath>
-        <pathelement location="src" />
-    </sourcespath>
-    <classpath>
-        <pathelement location="classes" />
-        <pathelement location="lib/jdepend.jar" />
-    </classpath>
-</jdepend>
+<jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml">
+    <sourcespath>
+        <pathelement location="src" />
+    </sourcespath>
+    <classpath>
+        <pathelement location="classes" />
+        <pathelement location="lib/jdepend.jar" />
+    </classpath>
+</jdepend>
 
diff --git a/docs/manual/OptionalTasks/jjtree.html b/docs/manual/OptionalTasks/jjtree.html index a922db0c3..e66526a04 100644 --- a/docs/manual/OptionalTasks/jjtree.html +++ b/docs/manual/OptionalTasks/jjtree.html @@ -166,14 +166,14 @@ Example     outputdirectory="build/src"     javacchome="c:/program files/JavaCC"      nodeusesparser="true" -/> +/> 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.

-

Copyright © 2001 Apache Software Foundation. All rights +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/OptionalTasks/serverdeploy.html b/docs/manual/OptionalTasks/serverdeploy.html index b78643f6b..7d8ff47ed 100644 --- a/docs/manual/OptionalTasks/serverdeploy.html +++ b/docs/manual/OptionalTasks/serverdeploy.html @@ -288,7 +288,7 @@ task.
     <serverdeploy action="deploy" source="${lib.dir}/ejb_myApp.jar">
-        <jonas server="MyJOnAS" jonasroot="${jonas.root}" >
+        <jonas server="MyJOnAS" jonasroot="${jonas.root}" >
            <classpath>
                <pathelement path="${jonas.root}/lib/RMI_jonas.jar" />
                <pathelement path="${jonas.root}/config/" />
diff --git a/docs/manual/OptionalTasks/sound.html b/docs/manual/OptionalTasks/sound.html
index 0052e8f23..294a46a44 100644
--- a/docs/manual/OptionalTasks/sound.html
+++ b/docs/manual/OptionalTasks/sound.html
@@ -85,7 +85,7 @@ more than once.
 
 <target name="fun" if="fun" unless="fun.done">
-  <sound>
+  <sound>
     <success source="//intranet/sounds/success"/>
     <fail source="//intranet/sounds/failure"/>
   </sound>
diff --git a/docs/manual/OptionalTasks/splash.html b/docs/manual/OptionalTasks/splash.html
index 5f53919e1..6ac3281f6 100644
--- a/docs/manual/OptionalTasks/splash.html
+++ b/docs/manual/OptionalTasks/splash.html
@@ -90,7 +90,7 @@ proxy attributes.
 
 <splash imageurl="http://jakarta.apache.org/images/jakarta-logo.gif"
            useproxy="true"
-           showduration="5000"/>
+           showduration="5000"/>
 
 

Splashes the jakarta logo, for diff --git a/docs/manual/OptionalTasks/wljspc.html b/docs/manual/OptionalTasks/wljspc.html index b8952c317..181ff65f6 100644 --- a/docs/manual/OptionalTasks/wljspc.html +++ b/docs/manual/OptionalTasks/wljspc.html @@ -57,15 +57,15 @@ It follows the weblogic naming convention of putting classes in
Example

-<target name="jspcompile" depends="compile">
-<wljspc src="c:\\weblogic\\myserver\\public_html" dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp" >
+<target name="jspcompile" depends="compile">
+<wljspc src="c:\\weblogic\\myserver\\public_html" dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp" >
<classpath>
-<pathelement location="${weblogic.classpath}" />
-<pathelement path="${compile.dest}" />
+<pathelement location="${weblogic.classpath}" />
+<pathelement path="${compile.dest}" />
</classpath>

</wljspc>
-</target> +</target>

Limitations

@@ -76,7 +76,7 @@ Example
many files at one go, it is called multiple times with one jsp file each.
-

Copyright © 2001 Apache Software Foundation. All rights +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/listeners.html b/docs/manual/listeners.html index 628d24281..6475cf174 100644 --- a/docs/manual/listeners.html +++ b/docs/manual/listeners.html @@ -213,33 +213,33 @@ the java command appropriately.

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 -> Reset All Attributes (return to normal mode) +1 -> Bright (Usually turns on BOLD) +2 -> Dim +3 -> Underline +5 -> link +7 -> Reverse +8 -> Hidden Foreground is one of the following: -30 -> Black -31 -> Red -32 -> Green -33 -> Yellow -34 -> Blue -35 -> Magenta -36 -> Cyan -37 -> White +30 -> Black +31 -> Red +32 -> Green +33 -> Yellow +34 -> Blue +35 -> Magenta +36 -> Cyan +37 -> White Background is one of the following: -40 -> Black -41 -> Red -42 -> Green -43 -> Yellow -44 -> Blue -45 -> Magenta -46 -> Cyan -47 -> White
+40 -> Black +41 -> Red +42 -> Green +43 -> Yellow +44 -> Blue +45 -> Magenta +46 -> Cyan +47 -> White
diff --git a/docs/manual/running.html b/docs/manual/running.html index 94e9d7bdb..4886ad3bc 100644 --- a/docs/manual/running.html +++ b/docs/manual/running.html @@ -94,7 +94,7 @@ Options: -buildfile <file> use given buildfile -file <file> '' -f <file> '' - -D<property>=<value> use value for given property + -D<property>=<value> use value for given property -propertyfile <name> load all properties from file with -D properties taking precedence -inputhandler <class> the class which will handle input requests