bodewig 2002/09/23 06:01:50
Modified: docs Tag: ANT_15_BRANCH external.html faq.html
xdocs Tag: ANT_15_BRANCH external.xml faq.xml
Log:
sync site with CVS HEAD
Revision Changes Path
No revision
No revision
1.48.2.10 +61 -1 jakarta-ant/docs/external.html
Index: external.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/external.html,v
retrieving revision 1.48.2.9
retrieving revision 1.48.2.10
diff -u -r1.48.2.9 -r1.48.2.10
--- external.html 2 Sep 2002 09:17:19 -0000 1.48.2.9
+++ external.html 23 Sep 2002 13:01:49 -0000 1.48.2.10
@@ -723,7 +723,8 @@
</td></tr>
<tr><td>
<blockquote>
- <p>Ant task for running the Doxygen documentation
system.</p>
+ <p>There are two Ant tasks for running the Doxygen
+ documentation system.</p>
<table>
<tr>
<td bgcolor="#039acc" colspan="" rowspan=""
@@ -764,6 +765,65 @@
valign="top" align="left">
<font color="#000000" size="-1" face="arial,helvetica,sanserif">
<a href="mailto:[EMAIL PROTECTED]">Kyle R. Burton</a>
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#039acc" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ License:
+ </font>
+ </td>
+ <td bgcolor="#a0ddf0" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ Apache Software Foundation License
+ </font>
+ </td>
+ </tr>
+ </table>
+ <p>and</p>
+ <table>
+ <tr>
+ <td bgcolor="#039acc" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ Compatibility:
+ </font>
+ </td>
+ <td bgcolor="#a0ddf0" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ Ant 1.5 and later
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#039acc" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ URL:
+ </font>
+ </td>
+ <td bgcolor="#a0ddf0" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ <a
href="http://ant-doxygen.sourceforge.net">http://ant-doxygen.sourceforge.net</a>
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td bgcolor="#039acc" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ Contact:
+ </font>
+ </td>
+ <td bgcolor="#a0ddf0" colspan="" rowspan=""
+ valign="top" align="left">
+ <font color="#000000" size="-1" face="arial,helvetica,sanserif">
+ <a href="mailto:[EMAIL PROTECTED]">Karthik A Kumar</a>
</font>
</td>
</tr>
1.30.2.2 +64 -0 jakarta-ant/docs/faq.html
Index: faq.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/faq.html,v
retrieving revision 1.30.2.1
retrieving revision 1.30.2.2
diff -u -r1.30.2.1 -r1.30.2.2
--- faq.html 30 Jul 2002 14:59:36 -0000 1.30.2.1
+++ faq.html 23 Sep 2002 13:01:49 -0000 1.30.2.2
@@ -224,6 +224,12 @@
How can I include national characters like German
umlauts in my build file?
</a></li>
+ <li><a href="#properties-not-trimmed">
+ <code>ant</code> failed to build my program via javac
+ even when I put the needed jars in an external
+ <code>build.properties</code> file and reference them by
+ <code>pathelement</code> or <code>classpath refid</code>.
+ </a></li>
</ul>
</blockquote>
</td></tr>
@@ -296,6 +302,12 @@
<style> or <junit> ignores my
<classpath>
</a></li>
+ <li><a href="#winxp-jdk14-ant14">
+ When running Ant 1.4 on Windows XP and JDK 1.4, I get
+ various errors when trying to <code><exec></code>, fork
+ <code><java></code> or access environment
+ variables.
+ </a></li>
<li><a href="#1.5-cygwin-sh">
The <code>ant</code> wrapper script of Ant 1.5 fails
for Cygwin if <code>ANT_HOME</code> is set to a Windows style
@@ -1322,6 +1334,31 @@
</td></tr>
</table>
</a>
+ <a name="properties-not-trimmed">
+ <table border="0" cellspacing="0" cellpadding="2" width="100%">
+ <tr><td bgcolor="#828DA6">
+ <font color="#ffffff" face="arial,helvetica,sanserif">
+ <strong>
+ <code>ant</code> failed to build my program via javac
+ even when I put the needed jars in an external
+ <code>build.properties</code> file and reference them by
+ <code>pathelement</code> or <code>classpath refid</code>.
+ </strong>
+ </font>
+ </td></tr>
+ <tr><td>
+ <blockquote>
+ <p>When <code>ant</code> loads properties from
an external
+ file it dosn't touch the value of properties, trailing blanks
+ will not be trimmed for example.</p>
+ <p>If the value represents a file
path, like a jar needed to
+ compile, the task which requires the value, javac for example
+ would fail to compile since it can't find the file due to
+ trailing spaces.</p>
+ </blockquote>
+ </td></tr>
+ </table>
+ </a>
<a name="integration">
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
@@ -2034,6 +2071,33 @@
for <code><junit></code>, you still have to use a
<code><taskdef></code> with a nested
<code><classpath></code> to define the junit task.</p>
+ </blockquote>
+ </td></tr>
+ </table>
+ </a>
+ <a name="winxp-jdk14-ant14">
+ <table border="0" cellspacing="0" cellpadding="2" width="100%">
+ <tr><td bgcolor="#828DA6">
+ <font color="#ffffff" face="arial,helvetica,sanserif">
+ <strong>
+ When running Ant 1.4 on Windows XP and JDK 1.4, I get
+ various errors when trying to <code><exec></code>, fork
+ <code><java></code> or access environment
+ variables.
+ </strong>
+ </font>
+ </td></tr>
+ <tr><td>
+ <blockquote>
+ <p>Ant < 1.5 doesn't recognize Windows XP
as a flavor
+ of Windows that runs <code>CMD.EXE</code> instead of
+ <code>COMMAND.COM</code>. JDK 1.3 will tell Ant that Windows
+ XP is Windows 2000 so the problem doesn't show up
+ there.</p>
+ <p>Apart from upgrading to Ant 1.5
or better, setting the
+ environment variable <code>ANT_OPTS</code> to
+ <code>-Dos.name=Windows_NT</code> prior to invoking Ant has
+ been confirmed as a workaround.</p>
</blockquote>
</td></tr>
</table>
No revision
No revision
1.35.2.11 +23 -1 jakarta-ant/xdocs/external.xml
Index: external.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/xdocs/external.xml,v
retrieving revision 1.35.2.10
retrieving revision 1.35.2.11
diff -u -r1.35.2.10 -r1.35.2.11
--- external.xml 2 Sep 2002 09:17:19 -0000 1.35.2.10
+++ external.xml 23 Sep 2002 13:01:49 -0000 1.35.2.11
@@ -249,7 +249,8 @@
</subsection>
<subsection name="Doxygen task">
- <p>Ant task for running the Doxygen documentation system.</p>
+ <p>There are two Ant tasks for running the Doxygen
+ documentation system.</p>
<table>
<tr>
@@ -263,6 +264,27 @@
<tr>
<th>Contact:</th>
<td><a href="mailto:[EMAIL PROTECTED]">Kyle R. Burton</a></td>
+ </tr>
+ <tr>
+ <th>License:</th>
+ <td>Apache Software Foundation License</td>
+ </tr>
+ </table>
+
+ <p>and</p>
+
+ <table>
+ <tr>
+ <th>Compatibility:</th>
+ <td>Ant 1.5 and later</td>
+ </tr>
+ <tr>
+ <th>URL:</th>
+ <td><a
href="http://ant-doxygen.sourceforge.net">http://ant-doxygen.sourceforge.net</a></td>
+ </tr>
+ <tr>
+ <th>Contact:</th>
+ <td><a href="mailto:[EMAIL PROTECTED]">Karthik A Kumar</a></td>
</tr>
<tr>
<th>License:</th>
1.17.2.2 +40 -0 jakarta-ant/xdocs/faq.xml
Index: faq.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/xdocs/faq.xml,v
retrieving revision 1.17.2.1
retrieving revision 1.17.2.2
diff -u -r1.17.2.1 -r1.17.2.2
--- faq.xml 30 Jul 2002 14:59:36 -0000 1.17.2.1
+++ faq.xml 23 Sep 2002 13:01:49 -0000 1.17.2.2
@@ -594,6 +594,25 @@
]]></source>
</answer>
</faq>
+
+ <faq id="properties-not-trimmed">
+ <question><code>ant</code> failed to build my program via javac
+ even when I put the needed jars in an external
+ <code>build.properties</code> file and reference them by
+ <code>pathelement</code> or <code>classpath refid</code>.</question>
+
+ <answer>
+
+ <p>When <code>ant</code> loads properties from an external
+ file it dosn't touch the value of properties, trailing blanks
+ will not be trimmed for example.</p>
+
+ <p>If the value represents a file path, like a jar needed to
+ compile, the task which requires the value, javac for example
+ would fail to compile since it can't find the file due to
+ trailing spaces.</p>
+ </answer>
+ </faq>
</faqsection>
<faqsection title="Ant and IDEs/Editors">
@@ -1086,6 +1105,27 @@
for <code><junit></code>, you still have to use a
<code><taskdef></code> with a nested
<code><classpath></code> to define the junit task.</p>
+ </answer>
+ </faq>
+
+ <faq id="winxp-jdk14-ant14">
+ <question>When running Ant 1.4 on Windows XP and JDK 1.4, I get
+ various errors when trying to <code><exec></code>, fork
+ <code><java></code> or access environment
+ variables.</question>
+
+ <answer>
+
+ <p>Ant < 1.5 doesn't recognize Windows XP as a flavor
+ of Windows that runs <code>CMD.EXE</code> instead of
+ <code>COMMAND.COM</code>. JDK 1.3 will tell Ant that Windows
+ XP is Windows 2000 so the problem doesn't show up
+ there.</p>
+
+ <p>Apart from upgrading to Ant 1.5 or better, setting the
+ environment variable <code>ANT_OPTS</code> to
+ <code>-Dos.name=Windows_NT</code> prior to invoking Ant has
+ been confirmed as a workaround.</p>
</answer>
</faq>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>