From 5266b79bb882f1912afa57abb1f19de6f03485e0 Mon Sep 17 00:00:00 2001
From: Gintas Grigelionis
Date: Thu, 8 Feb 2018 22:52:33 +0100
Subject: [PATCH] Tidy tag soup, trim whitespace, fix styling
---
manual/antexternal.html | 12 +-
manual/anttaskslist.html | 1 -
manual/argumentprocessor.html | 5 +-
manual/base_task_classes.html | 5 +-
manual/clonevm.html | 4 +-
manual/cover.html | 14 +-
manual/credits.html | 6 +-
manual/develop.html | 67 +-
manual/dirtasks.html | 27 +-
manual/feedback.html | 42 +-
manual/ide.html | 2 -
manual/ifunless.html | 8 +-
manual/inputhandler.html | 10 +-
manual/install.html | 55 +-
manual/installlist.html | 1 -
manual/intro.html | 7 +-
manual/javacprops.html | 6 +-
manual/listeners.html | 298 ++++-----
manual/platform.html | 98 +--
manual/projecthelper.html | 15 +-
manual/properties.html | 22 +-
manual/proxy.html | 42 +-
manual/running.html | 89 ++-
manual/stylesheets/style.css | 57 ++
manual/sysclasspath.html | 4 +-
manual/targets.html | 20 +-
manual/tasksoverview.html | 610 ++++++++----------
manual/toc.html | 1 -
manual/tutorial-HelloWorldWithAnt.html | 92 +--
.../tutorial-tasks-filesets-properties.html | 138 ++--
manual/tutorial-writing-tasks.html | 71 +-
manual/tutorials.html | 8 +-
manual/using.html | 99 ++-
manual/usinglist.html | 1 -
34 files changed, 861 insertions(+), 1076 deletions(-)
diff --git a/manual/antexternal.html b/manual/antexternal.html
index 02d2f7b58..4f9bbc31d 100644
--- a/manual/antexternal.html
+++ b/manual/antexternal.html
@@ -14,7 +14,6 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
@@ -31,12 +30,12 @@
administrators. But what about programmers? Can the functionality
provided by Ant tasks be used in java programs?
-Yes, and its quite easy. Before getting into the details, however,
+
Yes, and its quite easy. Before getting into the details, however,
we should mention the pros and cons of this approach:
Pros
-
+
Robust |
@@ -65,7 +64,7 @@ code is supported by the entire Apache Ant community.
Cons
-
+
Dependency on Ant Libraries |
@@ -86,7 +85,6 @@ open source!
|
-
Example
Let's say you want to unzip a zip file programmatically from java
@@ -136,7 +134,7 @@ static public void unzip(String zipFilepath, String destinationDir) {
taskType = "unzip";
taskName = "unzip";
target = new Target();
- }
+ }
}
Expander expander = new Expander();
expander.setSrc(new File(zipfile));
@@ -156,5 +154,5 @@ don't. Ultimately, you have to be willing to get your feet wet and
read the source code. The above example is merely designed to whet
your appetite and get you started. Go for it!
-
+
diff --git a/manual/anttaskslist.html b/manual/anttaskslist.html
index bd1204946..b5b743b3b 100644
--- a/manual/anttaskslist.html
+++ b/manual/anttaskslist.html
@@ -25,7 +25,6 @@
-
Apache Ant Tasks
diff --git a/manual/argumentprocessor.html b/manual/argumentprocessor.html
index 2cd5202f0..ce7719ed7 100644
--- a/manual/argumentprocessor.html
+++ b/manual/argumentprocessor.html
@@ -25,7 +25,7 @@
The Command Line Processor Plugin: ArgumentProcessor
-
+What is an ArgumentProcessor?
An ArgumentProcessor is a parser of command line argument which is
@@ -59,7 +59,7 @@ being parsed and quit (like -projectHelp ), or just set some
custom properties on the project and let it run.
-
+How to register it's own ArgumentProcessor
First, the ArgumentProcessor must be an implementation of
org.apache.tools.ant.ArgumentProcessor .
@@ -73,4 +73,3 @@ be found in Ant's classpath.
-
diff --git a/manual/base_task_classes.html b/manual/base_task_classes.html
index 1b058ebb3..801c26e14 100644
--- a/manual/base_task_classes.html
+++ b/manual/base_task_classes.html
@@ -29,7 +29,7 @@
The links will not work in the online version of this document.
-
+
@@ -86,7 +86,6 @@ Abstract Base class for pack tasks.
|
-
Unpack
@@ -108,7 +107,5 @@ Abstract Base class for tasks that may have multiple actions.
|
-
-
|