bodewig 01/11/22 08:16:47
Modified: . bootstrap.bat bootstrap.sh
docs faq.html
xdocs faq.xml
Log:
Add meta section: FAQ about the FAQ.
Revision Changes Path
1.44 +40 -1 jakarta-ant/bootstrap.bat
Index: bootstrap.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- bootstrap.bat 2001/11/16 09:49:18 1.43
+++ bootstrap.bat 2001/11/22 16:16:46 1.44
@@ -58,7 +58,46 @@
echo.
echo ... Building Ant Distribution
-"%JAVA%" %ANT_OPTS% org.apache.tools.ant.Main -emacs bootstrap
+if not "%OS%"=="Windows_NT" goto win9xStart
+:winNTStart
[EMAIL PROTECTED]
+
+REM parse command line arguments
+rem Need to check if we are using the 4NT shell...
+if "%eval[2+2]" == "4" goto setup4NT
+
+rem On NT/2K grab all arguments at once
+set ANT_CMD_LINE_ARGS=%*
+goto doneStart
+
+:setup4NT
+set ANT_CMD_LINE_ARGS=%$
+goto doneStart
+
+:win9xStart
+rem Slurp the command line arguments. This loop allows for an unlimited
number of
+rem agruments (up to the command line limit, anyway).
+
+set ANT_CMD_LINE_ARGS=
+
+:setupArgs
+if %1a==a goto doneStart
+set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
+shift
+goto setupArgs
+
+:doneStart
+rem This label provides a place for the argument list loop to break out
+rem and for NT handling to skip to.
+
+"%JAVA%" %ANT_OPTS% org.apache.tools.ant.Main -emacs %ANT_CMD_LINE_ARGS%
bootstrap
+
+set ANT_CMD_LINE_ARGS=
+if not "%OS%"=="Windows_NT" goto mainEnd
+:winNTend
[EMAIL PROTECTED]
+
+:mainEnd
echo.
echo ... Cleaning Up Build Directories
1.57 +1 -1 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- bootstrap.sh 2001/11/16 09:49:18 1.56
+++ bootstrap.sh 2001/11/22 16:16:46 1.57
@@ -117,7 +117,7 @@
echo ... Building Ant Distribution
-"${JAVACMD}" -classpath "${CLASSPATH}" -Dant.home=.
org.apache.tools.ant.Main -emacs bootstrap
+"${JAVACMD}" -classpath "${CLASSPATH}" -Dant.home=.
org.apache.tools.ant.Main -emacs "$@" bootstrap
echo ... Cleaning Up Build Directories
1.9 +59 -1 jakarta-ant/docs/faq.html
Index: faq.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/faq.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- faq.html 2001/11/21 16:44:27 1.8
+++ faq.html 2001/11/22 16:16:47 1.9
@@ -94,6 +94,26 @@
<table border="0" cellspacing="0" cellpadding="2"
width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
+ <strong>About this FAQ</strong>
+ </font>
+ </td></tr>
+ <tr><td>
+ <blockquote>
+ <ul>
+ <li><a href="#latest-version">
+ Where do I find the latest version of this
+ document?
+ </a></li>
+ <li><a href="#adding-faqs">
+ How can I contribute to this FAQ?
+ </a></li>
+ </ul>
+ </blockquote>
+ </td></tr>
+ </table>
+ <table border="0" cellspacing="0" cellpadding="2"
width="100%">
+ <tr><td bgcolor="#828DA6">
+ <font color="#ffffff" face="arial,helvetica,sanserif">
<strong>General</strong>
</font>
</td></tr>
@@ -243,7 +263,45 @@
</td></tr>
<tr><td>
<blockquote>
- <a name="what-is-ant">
+ <a name="latest-version">
+ <table border="0" cellspacing="0" cellpadding="2" width="100%">
+ <tr><td bgcolor="#828DA6">
+ <font color="#ffffff" face="arial,helvetica,sanserif">
+ <strong>
+ Where do I find the latest version of this
+ document?
+ </strong>
+ </font>
+ </td></tr>
+ <tr><td>
+ <blockquote>
+ <p><a
href="http://jakarta.apache.org/ant/faq.html">here</a>.</p>
+ </blockquote>
+ </td></tr>
+ </table>
+ </a>
+ <a name="adding-faqs">
+ <table border="0" cellspacing="0" cellpadding="2" width="100%">
+ <tr><td bgcolor="#828DA6">
+ <font color="#ffffff" face="arial,helvetica,sanserif">
+ <strong>
+ How can I contribute to this FAQ?
+ </strong>
+ </font>
+ </td></tr>
+ <tr><td>
+ <blockquote>
+ <p>The page you are looking it is generated
from
+ <a
href="http://cvs.apache.org/viewcvs.cgi/~checkout~/jakarta-ant/xdocs/faq.xml">this</a>
+
+ document. If you want to add a new question, please submit
+ a patch against this document, the structure is hoped to be
+ self-explaining.</p>
+ </blockquote>
+ </td></tr>
+ </table>
+ </a>
+ <a name="what-is-ant">
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
1.8 +22 -0 jakarta-ant/xdocs/faq.xml
Index: faq.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/xdocs/faq.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- faq.xml 2001/11/21 16:44:27 1.7
+++ faq.xml 2001/11/22 16:16:47 1.8
@@ -6,6 +6,28 @@
<title>Frequently Asked Questions</title>
</properties>
+ <faqsection title="About this FAQ">
+ <faq id="latest-version">
+ <question>Where do I find the latest version of this
+ document?</question>
+ <answer>
+ <p><a href="http://jakarta.apache.org/ant/faq.html">here</a>.</p>
+ </answer>
+ </faq>
+
+ <faq id="adding-faqs">
+ <question>How can I contribute to this FAQ?</question>
+ <answer>
+ <p>The page you are looking it is generated from
+ <a
href="http://cvs.apache.org/viewcvs.cgi/~checkout~/jakarta-ant/xdocs/faq.xml">this</a>
+
+ document. If you want to add a new question, please submit
+ a patch against this document, the structure is hoped to be
+ self-explaining.</p>
+ </answer>
+ </faq>
+ </faqsection>
+
<faqsection title="General">
<faq id="what-is-ant">
<question>What is Apache Ant?</question>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>