umagesh 02/02/04 12:57:49
Modified: docs/manual credits.html develop.html dirtasks.html
feedback.html ide.html intro.html listeners.html
running.html sysclasspath.html using.html
Log:
Fix title Strings
PR: 5020
Submitted by: [EMAIL PROTECTED] (Jesse Glick)
Revision Changes Path
1.11 +2 -2 jakarta-ant/docs/manual/credits.html
Index: credits.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/credits.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- credits.html 10 Jan 2002 08:48:28 -0000 1.10
+++ credits.html 4 Feb 2002 20:57:48 -0000 1.11
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Apache Ant User Manual - Credits</title>
</head>
<body>
@@ -38,7 +38,7 @@
<center>
<p>Version: @VERSION@<br>
-$Id: credits.html,v 1.10 2002/01/10 08:48:28 bodewig Exp $</p>
+$Id: credits.html,v 1.11 2002/02/04 20:57:48 umagesh Exp $</p>
</center>
<hr>
<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
1.8 +32 -32 jakarta-ant/docs/manual/develop.html
Index: develop.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/develop.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- develop.html 10 Jan 2002 08:48:28 -0000 1.7
+++ develop.html 4 Feb 2002 20:57:48 -0000 1.8
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Writing Your Own Task</title>
</head>
<body>
@@ -12,7 +12,7 @@
<p>It is very easy to write your own task:</p>
<ol>
<li>Create a Java class that extends
<code>org.apache.tools.ant.Task</code>.</li>
- <li>For each attribute, write a <i>setter</i> method. The setter method
must be a
+ <li>For each attribute, write a <i>setter</i> method. The setter method
must be a
<code>public void</code> method that takes a single argument. The
name of the method must begin with <code>set</code>, followed by the
attribute name, with the first character of the name in uppercase, and
the rest in
@@ -26,7 +26,7 @@
in the buildfile)
</li>
<li>
-boolean - your method will be passed the value
+boolean - your method will be passed the value
<i>true</i> if the value specified in the buildfile is one of
<code>true</code>,
<code>yes</code>, or <code>on</code>)
</li>
@@ -35,11 +35,11 @@
</li>
<li>
<code>File</code>
-(in which case the value of the attribute is interpreted relative to the
+(in which case the value of the attribute is interpreted relative to the
project's basedir)
</li>
<li>
-any other type that has a constructor with a single
+any other type that has a constructor with a single
<code>String</code> argument
</li>
</ul>
@@ -50,16 +50,16 @@
to your setter method. See
<code>org/apache/tools/ant/taskdefs/FixCRLF.java</code> for
an example.</li>
-<li>If the task should support character data, write a <code>public void
+<li>If the task should support character data, write a <code>public void
addText(String)</code> method.</li>
<li>For each nested element, write a <i>create</i> or <i>add</i> method.
-A create method
-must be a <code>public</code> method that takes no arguments and returns
-an <code>Object</code> type. The name of the create method must begin with
-<code>create</code>, followed by the element name. An add method must be
-a <code>public void</code> method that takes a single argument of an
+A create method
+must be a <code>public</code> method that takes no arguments and returns
+an <code>Object</code> type. The name of the create method must begin with
+<code>create</code>, followed by the element name. An add method must be
+a <code>public void</code> method that takes a single argument of an
<code>Object</code> type with a no-argument constructor.
-The name of the add method
+The name of the add method
must begin with <code>add</code>, followed by the element name.</li>
<li>Write a <code>public void execute</code> method, with no arguments, that
throws a <code>BuildException</code>. This method implements the task
@@ -101,11 +101,11 @@
<li>All attributes of all child elements get set via their corresponding
<code>setXXX</code> methods, at runtime.</li>
- <li><code>execute()</code> is called at runtime. While the above
initialization
- steps only occur once, the execute() method may be
- called more than once, if the task is invoked more than once. For
example,
+ <li><code>execute()</code> is called at runtime. While the above
initialization
+ steps only occur once, the execute() method may be
+ called more than once, if the task is invoked more than once. For
example,
if <code>target1</code> and <code>target2</code> both depend
- on <code>target3</code>, then running
+ on <code>target3</code>, then running
<code>'ant target1 target2'</code> will run all tasks in
<code>target3</code> twice.</li>
</ol>
@@ -163,8 +163,8 @@
</pre>
</blockquote>
<h3>Example 2</h3>
-To use a task directly from the buildfile which created it, place the
-<code><taskdef></code> declaration inside a target
+To use a task directly from the buildfile which created it, place the
+<code><taskdef></code> declaration inside a target
<i>after the compilation</i>. Use the <code>classpath</code> attribute of
<code><taskdef></code> to point to where the code has just been
compiled.
@@ -178,9 +178,9 @@
<mkdir dir="build"/>
<javac srcdir="source" destdir="build"/>
</target>
-
+
<target name="declare" depends="build">
- <taskdef name="mytask"
+ <taskdef name="mytask"
classname="com.mydomain.MyVeryOwnTask"
classpath="build"/>
</target>
@@ -200,13 +200,13 @@
<hr>
<h2><a name="buildevents">Build Events</a></h2>
-<P>Ant is capable of generating build events as it performs the tasks
necessary to build a project.
+<P>Ant is capable of generating build events as it performs the tasks
necessary to build a project.
Listeners can be attached to Ant to receive these events. This capability
could be used, for example,
-to connect Ant to a GUI or to integrate Ant with an IDE.
+to connect Ant to a GUI or to integrate Ant with an IDE.
</P>
-<p>To use build events you need to create an ant <code>Project</code>
object. You can then call the
+<p>To use build events you need to create an ant <code>Project</code>
object. You can then call the
<code>addBuildListener</code> method to add your listener to the project.
Your listener must implement
-the <code>org.apache.tools.antBuildListener</code> interface. The listener
will receive BuildEvents
+the <code>org.apache.tools.antBuildListener</code> interface. The listener
will receive BuildEvents
for the following events</P>
<ul>
<li>Build started</li>
@@ -224,30 +224,30 @@
<blockquote>
<pre>ant -listener org.apache.tools.ant.XmlLogger</pre>
</blockquote>
-<p>will run Ant with a listener that generates an XML representation of the
build progress. This
+<p>will run Ant with a listener that generates an XML representation of the
build progress. This
listener is included with Ant, as is the default listener, which generates
the logging to standard output.</p>
<hr>
<h2><a name="integration">Source code integration</a></h2>
-The other way to extend Ant through Java is to make changes to existing
tasks, which is positively encouraged.
-Both changes to the existing source and new tasks can be incorporated back
into the Ant codebase, which
+The other way to extend Ant through Java is to make changes to existing
tasks, which is positively encouraged.
+Both changes to the existing source and new tasks can be incorporated back
into the Ant codebase, which
benefits all users and spreads the maintenance load around.
<p>
-Please consult the
+Please consult the
<a href="http://jakarta.apache.org/site/getinvolved.html">Getting
Involved</a> pages on the Jakarta web site
-for details on how to fetch the latest source and how to submit changes for
reincorporation into the
-source tree.
+for details on how to fetch the latest source and how to submit changes for
reincorporation into the
+source tree.
<p>
Ant also has some
<a href="http://jakarta.apache.org/ant/ant_task_guidelines.html">task
guidelines</a>
which provides some advice to people developing and testing tasks. Even if
you intend to
-keep your tasks to yourself, you should still read this as it should be
informative.
+keep your tasks to yourself, you should still read this as it should be
informative.
<hr>
-<p align="center">Copyright © 2001 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
Reserved.</p>
</body>
1.13 +1 -1 jakarta-ant/docs/manual/dirtasks.html
Index: dirtasks.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/dirtasks.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- dirtasks.html 3 Feb 2002 01:53:34 -0000 1.12
+++ dirtasks.html 4 Feb 2002 20:57:48 -0000 1.13
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Directory-based Tasks</title>
</head>
<body>
1.5 +4 -4 jakarta-ant/docs/manual/feedback.html
Index: feedback.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/feedback.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- feedback.html 10 Jan 2002 08:48:28 -0000 1.4
+++ feedback.html 4 Feb 2002 20:57:48 -0000 1.5
@@ -2,18 +2,18 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Apache Ant User Manual - Feedback</title>
</head>
<body>
<h1><a name="feedback">Feedback</a></h1>
-<p>To provide feedback on this software, please subscribe to the
+<p>To provide feedback on this software, please subscribe to the
<a href="http://jakarta.apache.org/site/mail.html" target="_top">Ant User
Mailing List</a>
</p>
<p>If you want to contribute to Ant or stay current with the latest
-development, join the
+development, join the
<a href="http://jakarta.apache.org/site/mail.html" target="_top">Ant
Development Mailing List</a>
</p>
<p>Archives of both lists can be found at <a
@@ -23,7 +23,7 @@
you know of any additional archive sites, please report them to the
lists.</p>
<hr>
-<p align="center">Copyright © 2001 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
Reserved.</p>
</body>
1.6 +5 -1 jakarta-ant/docs/manual/ide.html
Index: ide.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/ide.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ide.html 30 Oct 2001 10:05:33 -0000 1.5
+++ ide.html 4 Feb 2002 20:57:48 -0000 1.6
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>IDE Integration</title>
<base target="mainFrame">
</head>
@@ -25,6 +25,10 @@
selection of targets, execution, hyperlink to compilation errors<br><br>
<a href="http://ant.netbeans.org/">NetBeans <br>Forte for Java
<br>(unbundled)</a><br><br>
<a href="Integration/VAJAntTool.html">VisualAge for Java</a><br><br>
+
+<hr>
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
+Reserved.</p>
</body>
</html>
1.6 +2 -2 jakarta-ant/docs/manual/intro.html
Index: intro.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/intro.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- intro.html 10 Jan 2002 08:48:28 -0000 1.5
+++ intro.html 4 Feb 2002 20:57:48 -0000 1.6
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Apache Ant User Manual - Introduction</title>
</head>
<body>
@@ -46,7 +46,7 @@
on.</p>
<hr>
-<p align="center">Copyright © 2001 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
Reserved.</p>
</body>
1.6 +1 -1 jakarta-ant/docs/manual/listeners.html
Index: listeners.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/listeners.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- listeners.html 31 Jan 2002 20:20:31 -0000 1.5
+++ listeners.html 4 Feb 2002 20:57:48 -0000 1.6
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Listeners & Loggers</title>
</head>
<body>
1.11 +3 -3 jakarta-ant/docs/manual/running.html
Index: running.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/running.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- running.html 4 Feb 2002 11:03:03 -0000 1.10
+++ running.html 4 Feb 2002 20:57:49 -0000 1.11
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Running Apache Ant</title>
</head>
<body>
@@ -26,7 +26,7 @@
<p>You can also set <a href="using.html#properties">properties</a> that
override properties specified in the
-buildfile (see the <a href="CoreTasks/property.html">property</a> task).
+buildfile (see the <a href="CoreTasks/property.html">property</a> task).
This can be done with
the <nobr><code>-D<i>property</i>=<i>value</i></code></nobr> option,
where <i>property</i> is the name of the property,
@@ -42,7 +42,7 @@
<p>Options that affect the amount of logging output by Ant are:
<nobr><code>-quiet</code></nobr>,
which instructs Ant to print less
-information on the console when running;
+information on the console when running;
<nobr><code>-verbose</code></nobr>, which causes Ant to print
additional information to the console; and <nobr><code>-debug</code></nobr>,
which causes Ant to print considerably more additional information.
1.4 +3 -3 jakarta-ant/docs/manual/sysclasspath.html
Index: sysclasspath.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/sysclasspath.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sysclasspath.html 10 Jan 2002 08:48:28 -0000 1.3
+++ sysclasspath.html 4 Feb 2002 20:57:49 -0000 1.4
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>build.sysclasspath</title>
</head>
<body>
@@ -10,7 +10,7 @@
<h2><a name="sysclasspath">build.sysclasspath</a></h2>
<p>The value of the build.sysclasspath property
control how the system classpath, ie. the classpath in effect when
-Ant is run, affects the behaviour of classpaths in Ant.
+Ant is run, affects the behaviour of classpaths in Ant.
The default behavior varies from Ant to Ant task.</p>
The values and their meanings are:
@@ -52,7 +52,7 @@
</table>
<hr>
-<p align="center">Copyright © 2001 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
Reserved.</p>
</body>
</html>
1.14 +9 -9 jakarta-ant/docs/manual/using.html
Index: using.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/using.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- using.html 10 Jan 2002 08:48:28 -0000 1.13
+++ using.html 4 Feb 2002 20:57:49 -0000 1.14
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
-<title>Apache Ant User Manual</title>
+<title>Writing a Simple Buildfile</title>
</head>
<body>
@@ -126,7 +126,7 @@
</tr>
<tr>
<td valign="top">unless</td>
- <td valign="top">the name of the property that must not be set in order
+ <td valign="top">the name of the property that must not be set in order
for this target to execute.</td>
<td align="center" valign="top">No</td>
</tr>
@@ -150,7 +150,7 @@
<p>where <i>name</i> is the name of the task,
<i>attributeN</i> is the attribute name, and
<i>valueN</i> is the value for this attribute.</p>
-<p>There is a set of <a href="coretasklist.html" target="navFrame">built-in
tasks</a>, along with a
+<p>There is a set of <a href="coretasklist.html" target="navFrame">built-in
tasks</a>, along with a
number of
<a href="optionaltasklist.html" target="navFrame"> optional tasks</a>, but
it is also very
easy to <a href="develop.html#writingowntask">write your own</a>.</p>
@@ -205,7 +205,7 @@
defined using a <code><property></code> task.
For example, <code>${os.name}</code> expands to the
name of the operating system.</p>
-<p>For a list of system properties see
+<p>For a list of system properties see
<a
href="http://java.sun.com/j2se/1.3/docs/api/java/lang/System.html#getProperties()">the
Javadoc of System.getProperties</a>.
</p>
<p>In addition, Ant has some built-in properties:</p>
@@ -371,22 +371,22 @@
<td width="10%" valign="top"><b>Required</b></td>
</tr>
<tr>
- <td valign="top">value</td>
+ <td valign="top">value</td>
<td valign="top">a single command-line argument; can contain space
characters.</td>
<td align="center" rowspan="4">Exactly one of these.</td>
</tr>
<tr>
- <td valign="top">line</td>
+ <td valign="top">line</td>
<td valign="top">a space-delimited list of command-line arguments.</td>
</tr>
<tr>
- <td valign="top">file</td>
+ <td valign="top">file</td>
<td valign="top">The name of a file as a single command-line
argument; will be replaced with the absolute filename of the file.</td>
</tr>
<tr>
- <td valign="top">path</td>
+ <td valign="top">path</td>
<td valign="top">A string that will be treated as a path-like
string as a single command-line argument; you can use <code>;</code>
or <code>:</code> as
@@ -468,7 +468,7 @@
structures as well.</p>
<hr>
-<p align="center">Copyright © 2001 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
Reserved.</p>
</body>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>