From 5abd6bec4f2464e1b1f30ed22d842c45758a7891 Mon Sep 17 00:00:00 2001
From: Stefan Bodewig
Date: Thu, 26 Sep 2002 13:55:28 +0000
Subject: [PATCH] documentation for some of the inherited attributes has been
missing
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273368 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/CoreTasks/apply.html | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/docs/manual/CoreTasks/apply.html b/docs/manual/CoreTasks/apply.html
index 50470415f..92d845a0d 100644
--- a/docs/manual/CoreTasks/apply.html
+++ b/docs/manual/CoreTasks/apply.html
@@ -69,12 +69,27 @@ one mapper.
redirected.
No |
+
+ append |
+ whether output should be appended to or overwrite
+ an existing file. Defaults to false. If you set parallel to
+ false, you will probably want to set this one to true. |
+ No |
+
outputproperty |
the name of a property in which the output of the
command should be stored. |
No |
+
+ resultproperty |
+ the name of a property in which the return code
+ of the command should be stored. Only of interest if
+ failonerror=false. If you set parallel to false, only the result
+ of the first execution will be stored. |
+ No |
+
timeout |
Stop the command if it doesn't finish within the
@@ -87,6 +102,12 @@ one mapper.
returncode other than 0. |
No |
+
+ failifexecutionfails |
+ Stop the build if we can't start the program.
+ Defaults to true. |
+ No |
+
skipemptyfilesets |
Don't run the command, if no source files have
|