You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bu...@apache.org on 2013/05/03 09:04:05 UTC

[Bug 53538] Doc: Examples for FilterChains use incorrect syntax

https://issues.apache.org/bugzilla/show_bug.cgi?id=53538

Jan Mat <ja...@materne.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Jan Mat <ja...@materne.de> ---
This is a confusion:

Where <loadfile property="src.file.head"> loads the content into a property
named "src.file.head" the instruction  <loadfile property="${src.file.head}">
is still valid. The content is loaded into a property which name is defined by
another property.

<loadfile property="src.file.head" ... />
<echo message="src.file.head"/>

vs.

<property name="src.file.head" value="content"/>
<loadfile property="${src.file.head}" ... />
<echo message="${content}"/>


I put a note into the manual.
Thanks for pointing to the confusional part.


svn rev. 1478660

-- 
You are receiving this mail because:
You are the assignee for the bug.