diff --git a/docs/manual/CoreTasks/libraries.html b/docs/manual/CoreTasks/libraries.html index bc623ef83..e8d6f85a5 100644 --- a/docs/manual/CoreTasks/libraries.html +++ b/docs/manual/CoreTasks/libraries.html @@ -381,12 +381,12 @@ expected.

</libraries> -

Load in versions from a file, then download the relevant archives. No +

Load in versions from a file, then download the relevant archives. No update schedule is defined, but a path is created for insertion into a classpath. This property file driven dependency model is what we recommend over hard coding versions in a build file. -

-
   <libraries destDir="build/lib" offline="${offline}" flatten="true">
+

+
   <libraries destDir="build/lib" offline="${offline}" flatten="true">
       <mavenrepository url="${private.server}"/>
       <library project="doomed" archive="dead-code"
         suffix=".war"
@@ -395,11 +395,13 @@ over hard coding versions in a build file.
       <scheduledupdate markerfile="build/lib/marker.properties"
         hours="11" />
     </libraries>
-
+
-

Download doomed/dead-code.LATEST.war from a private repository, save it to +

Download doomed/dead-code.LATEST.war from a private repository, save it to build/lib/product.war with an update schedule of every eleven hours. -

+

+ +

Copyright © 2005 The Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/CoreTasks/signjar.html b/docs/manual/CoreTasks/signjar.html index 23d0b82a7..803c24501 100644 --- a/docs/manual/CoreTasks/signjar.html +++ b/docs/manual/CoreTasks/signjar.html @@ -116,8 +116,8 @@ block

Examples

-

<signjar jar="${dist}/lib/ant.jar" -alias="apache-group" storepass="secret"/>

+

<signjar jar="${dist}/lib/ant.jar"
+alias="apache-group" storepass="secret"/>
 

signs the ant.jar with alias "apache-group" accessing the keystore and private key via "secret" password.

diff --git a/docs/manual/CoreTasks/zip.html b/docs/manual/CoreTasks/zip.html index cd893869e..5ece3dee0 100644 --- a/docs/manual/CoreTasks/zip.html +++ b/docs/manual/CoreTasks/zip.html @@ -259,17 +259,17 @@ it had been located at htdocs/manual/ChangeLog.txt.

in the archive, adds the file ChangeLog27.txt in the current directory as docs/ChangeLog.txt, and includes all the html files in examples.zip under docs/examples. The archive might end up containing the files:

-
    docs/user-guide/html/index.html
+
    docs/user-guide/html/index.html
     docs/ChangeLog.txt
     docs/examples/index.html
-
+

The code

   <zip destfile="${dist}/manual.zip">
     <zipfileset dir="htdocs/manual" prefix="docs/user-guide"/>
     <zipgroupfileset dir="." includes="examples*.zip"/>
-  </zip>
+ </zip>

zips all files in the htdocs/manual directory into the docs/user-guide directory in the archive and includes all the files in any file that maches examples*.zip, such as all files within examples1.zip or examples_for_brian.zip.