From b453e8b5d667ba03b6ab802ef9cf63b617a6706e Mon Sep 17 00:00:00 2001
From: Gintas Grigelionis Note: Before using this task, the user running Ant must have access to the
-commands of PVCS ( byApache Ant Pvcs Task User Manual
get
and pcli
) and must have access to the
+commands of PVCS (get and pcli) and must have access to the
repository. Note that the way to specify the repository is platform dependent so use property to
specify location of repository.
The RuleBasedCollator needs a format for its work, but its needed while instantiation. There +
The RuleBasedCollator needs a format for its work, but its needed while instantiating. There is a problem in the initialization algorithm for this case. Therefore you should not use this (or tell me the workaround :-).
@@ -980,9 +980,9 @@ the script task on how to use this element.If no src attribute is supplied, the script must be nested inside the selector declaration.
-The embedded script is invoked for every test, with the bean self
is bound to
- the selector. It has an attribute selected which can be set
- using setSelected(boolean)
to select a file.
The embedded script is invoked for every test, with the bean self
+ is bound to the selector. It has an attribute selected which can be set
+ using setSelected(boolean)
to select a file.
The following beans are configured for every script, alongside the classic set of project, properties, and targets.
diff --git a/manual/install.html b/manual/install.html index abff025aa..38df65a8b 100644 --- a/manual/install.html +++ b/manual/install.html @@ -97,7 +97,7 @@ IDEs can invariably be pointed at different Ant installations. This lets develop eliminate inconsistencies between command-line and IDE Ant. -
Many Java applications, most particularly application servers, ship with a version of Ant. These are primarily for
@@ -293,7 +293,7 @@ as ANT_HOME
.
Before you can run Ant there is some additional setup you will need to do unless you are installing -the RPM version from jpackage.org: +the RPM Version from jpackage.org:
+Buildfile: build.xml does not exist! Build failed@@ -336,7 +336,7 @@ Build failed So Ant works. This message is there because you need to write a buildfile for your project. With a ant -version you should get an output like -+Apache Ant(TM) version 1.9.2 compiled on July 8 2013@@ -454,7 +454,7 @@ IDEs have different ways of adding external JAR files and third-party tasks to A configuration dialog. Sometimes JAR files added to a project are automatically added to Ant's classpath.
-The
+CLASSPATH
environment variableThe
CLASSPATH
Environment VariableThe
-CLASSPATH
environment variable is a source of many Ant support queries. As the round trip time for diagnosis on the Ant user mailing list can be slow, and because filing bug reports complaining about 'ant.bat' not @@ -976,7 +976,7 @@ an Ant option. This can be added to a diagnostics target in a build file to see what the XML parser and classpath is, etc.user mailing list
+User Mailing List
If you cannot get Ant installed or working, the Ant user mailing list is the best place to start with any diff --git a/manual/listeners.html b/manual/listeners.html index 346e2056a..f9ac1ea71 100644 --- a/manual/listeners.html +++ b/manual/listeners.html @@ -281,7 +281,7 @@ like
cat
,more
, etc.This is designed to work on terminals that support ANSI color codes. It works on XTerm, ETerm, Win9x Console (with
ANSI.SYS
loaded.), etc.Note: It doesn't work on WinNT and successors, even when -a
+aCOMMAND.COM
console loaded withANSI.SYS<
is used.COMMAND.COM
console loaded withANSI.SYS
is used.If the user wishes to override the default colors with custom ones, a file containing zero or more of the custom color key-value pairs must be created. The recognized keys and their default values are shown below:
diff --git a/manual/properties.html b/manual/properties.html index 8dc459e8a..83437ad99 100644 --- a/manual/properties.html +++ b/manual/properties.html @@ -213,7 +213,7 @@ public class ToStringEvaluator implements PropertyHelper.PropertyEvaluator {which will echo this message:
-${builddir}=build/classes+${builddir}=build/classesif the property
diff --git a/manual/using.html b/manual/using.html index 0f357faa2..97eeaecdf 100644 --- a/manual/using.html +++ b/manual/using.html @@ -69,8 +69,8 @@ project's default is used.builddir
has the value build/classes.Targets
A target can depend on other targets. You might have a target for compiling, for example, and a target for creating a -distributable. You can only build a distributable when you have compiled first, so the distribute target -depends on the compile target. Ant resolves these dependencies.
+distributable. You can only build a distributable when you have compiled first, so thedistribute+target depends on thecompiletarget. Ant resolves these dependencies.It should be noted, however, that Ant's depends attribute only specifies the order in which targets should be executed—it does not affect whether the target that specifies the dependency(s) gets executed if the dependent target(s) did not (need to) run.
@@ -104,7 +104,7 @@ scripts you could do: task1.setFoo("bar"); </script>to set the
+access the instance viafoo
attribute of this particular task instance. In another task (written in Java), you can -access the instance viaproject.getReference("task1")
.project.getReference("task1")
.Note 1: If
task1has not been run yet, then it has not been configured (ie., no attributes have been set), and if it is going to be configured later, anything you've done to the instance may be overwritten.Note 2: Future versions of Ant will most likely not be backward-compatible with this behaviour, since there @@ -433,20 +433,21 @@ errors. Use Ant's own mechanisms for ad
<taskdef name="taskname"
classname="ImplementationClass"/>
<taskdef name="for" classname="net.sf.antcontrib.logic.For"/> <for
+ <taskdef name="for" classname="net.sf.antcontrib.logic.For"/> <for
... />
<taskdef>
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/> <for ... />
+ <taskdef resource="net/sf/antcontrib/antcontrib.properties"/> <for
+ ... />
<taskdef>
<taskdef resource="net/sf/antcontrib/antlib.xml"/> <for ... />
+ <taskdef resource="net/sf/antcontrib/antlib.xml"/> <for ... />
antlib:
protocol handler<project xmlns:ac="antlib:net.sf.antcontrib"/> <ac:for ... />
+ <project xmlns:ac="antlib:net.sf.antcontrib"/> <ac:for ... />