From 2563d65c26bafe634bc8b802fe295e759b139d59 Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Tue, 25 Nov 2003 11:29:13 +0000 Subject: [PATCH] Explanation of XML-layout git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275685 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/xmlproperty.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/manual/CoreTasks/xmlproperty.html b/docs/manual/CoreTasks/xmlproperty.html index 821f42edf..dd6dd67db 100644 --- a/docs/manual/CoreTasks/xmlproperty.html +++ b/docs/manual/CoreTasks/xmlproperty.html @@ -8,7 +8,8 @@

XmlProperty

Description

-Loads property values from a well-formed xml file. This XML property file: +Loads property values from a well-formed xml file. There are no other restrictions +than "well-formed". You can choose the layout you want. For example this XML property file:

   <root>
     <properties>
@@ -95,7 +96,7 @@ is roughly equivalent to the following fragments in a build.xml file:
     Keep the xml root tag as the
                      first value in the property name.
     No, default is true.
-    
+  
   
     validate
     Validate the input file (e.g. by a DTD). Otherwise the XML must only be well-formed.
@@ -112,7 +113,7 @@ is roughly equivalent to the following fragments in a build.xml file:
                      See the Semantic Attributes
                      section for more information.
     No, default is false.
-    
+  
   
     includeSemanticAttribute
     Include the semantic attribute name
@@ -138,7 +139,7 @@ is roughly equivalent to the following fragments in a build.xml file:
 
 

Here is an example xml file that does not have any semantic attributes.

-
 
+
    <root-tag myattr="true">
     <inner-tag someattr="val">Text</inner-tag>
     <a2><a3><a4>false</a4></a3></a2>
@@ -256,4 +257,4 @@ is equivalent to the following entries in a build file:
 Reserved.

- + \ No newline at end of file