Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 93639 invoked from network); 30 Jul 2002 15:00:48 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 30 Jul 2002 15:00:48 -0000 Received: (qmail 9896 invoked by uid 97); 30 Jul 2002 15:01:05 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 9869 invoked by uid 97); 30 Jul 2002 15:01:04 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 9857 invoked by uid 97); 30 Jul 2002 15:01:04 -0000 X-Antivirus: nagoya (v4198 created Apr 24 2002) Date: 30 Jul 2002 15:00:40 -0000 Message-ID: <20020730150040.79334.qmail@icarus.apache.org> From: bodewig@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/xdocs faq.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bodewig 2002/07/30 08:00:40 Modified: docs faq.html docs/manual/CoreTasks javac.html xdocs faq.xml Log: Fixing some typos - has been submitted as part of PR: 11056 Revision Changes Path 1.34 +7 -4 jakarta-ant/docs/faq.html Index: faq.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/faq.html,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- faq.html 30 Jul 2002 14:52:10 -0000 1.33 +++ faq.html 30 Jul 2002 15:00:39 -0000 1.34 @@ -771,6 +771,9 @@ +

With Ant >= 1.5, you can also use nested + <compilerarg> elements with the + <javac> task.

@@ -1290,8 +1293,8 @@ your build file uses, this is done inside the XML declaration.

By default the parser assumes you are using the UTF-8 - encoding instead of your platform's default. For most western - european contries you should set the encoding to + encoding instead of your platform's default. For most Western + European countries you should set the encoding to ISO-8859-1. To do so, make the very first line of you build file read like

@@ -1666,7 +1669,7 @@ * Determine the status of the build and the actions to follow, now that * the build has completed. * - * @param e Event describing the build tatus. + * @param e Event describing the build status. */ public void buildFinished(BuildEvent e) { Throwable th = e.getException(); @@ -1994,7 +1997,7 @@ is in CLASSPATH as well.

To solve this, you have two major options:

    -
  1. put all external libaries you need in +
  2. put all external libraries you need in CLASSPATH as well this is not what you want, otherwise you wouldn't have found this FAQ entry.
  3. 1.36 +6 -9 jakarta-ant/docs/manual/CoreTasks/javac.html Index: javac.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/javac.html,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- javac.html 22 Jun 2002 23:38:27 -0000 1.35 +++ javac.html 30 Jul 2002 15:00:39 -0000 1.36 @@ -1,4 +1,4 @@ - + @@ -21,7 +21,7 @@ from the source file, and so on. See the <depend> task for dependency checking based on other than just -existence/modification times. +existence/modification times.

    When the source files are part of a package, the directory structure of the source tree should follow the package hierarchy.

    @@ -47,7 +47,7 @@ <javac> task. Valid values for either the build.compiler property or the compiler -attribute are:

    +attribute are:

    • classic (the standard compiler of JDK 1.1/1.2) – javac1.1 and @@ -56,7 +56,7 @@ javac1.3 and javac1.4 can be used as aliases.
    • jikes (the Jikes + href="http://oss.software.ibm.com/developerworks/opensource/jikes/" target="_top">Jikes compiler).
    • jvc (the Command-Line Compiler from Microsoft's SDK for Java / Visual J++) – microsoft can be used @@ -69,7 +69,6 @@
    • extJavac (run either modern or classic in a JVM of its own).
    -

    The default is javac1.x with x depending on the JDK version you use while you are running Ant. If you wish to use a different compiler interface than those @@ -98,7 +97,6 @@ The side effect of this is that you will not be able to delete or move those files later on in the build. The workaround is to fork when invoking the compiler.

    -

    Parameters

    @@ -109,7 +107,7 @@ + note below.) @@ -492,7 +490,7 @@

    Jikes Notes

    -Jikes supports some extra options, which can be set be defining +

    Jikes supports some extra options, which can be set be defining the properties shown below prior to invoking the task. The setting for each property will be in affect for all <javac> tasks throughout the build. @@ -559,7 +557,6 @@

    srcdir Location of the java files. (See the - Note below.) Yes, unless nested <src> elements are present.
    -


    Copyright © 2000-2002 Apache Software Foundation. 1.21 +8 -4 jakarta-ant/xdocs/faq.xml Index: faq.xml =================================================================== RCS file: /home/cvs/jakarta-ant/xdocs/faq.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- faq.xml 30 Jul 2002 14:52:10 -0000 1.20 +++ faq.xml 30 Jul 2002 15:00:40 -0000 1.21 @@ -270,6 +270,10 @@ +

    With Ant >= 1.5, you can also use nested + <compilerarg> elements with the + <javac> task.

    + @@ -580,8 +584,8 @@ declaration.

    By default the parser assumes you are using the UTF-8 - encoding instead of your platform's default. For most western - european contries you should set the encoding to + encoding instead of your platform's default. For most Western + European countries you should set the encoding to ISO-8859-1. To do so, make the very first line of you build file read like

    @@ -802,7 +806,7 @@ * Determine the status of the build and the actions to follow, now that * the build has completed. * - * @param e Event describing the build tatus. + * @param e Event describing the build status. */ public void buildFinished(BuildEvent e) { Throwable th = e.getException(); @@ -1041,7 +1045,7 @@

    To solve this, you have two major options:

      -
    1. put all external libaries you need in +
    2. put all external libraries you need in CLASSPATH as well this is not what you want, otherwise you wouldn't have found this FAQ entry.
    3. -- To unsubscribe, e-mail: For additional commands, e-mail: