DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17871>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17871

war task's webxml attrib no longer is able to use value with a starting 
backslash for the path in Windows





------- Additional Comments From [EMAIL PROTECTED]  2003-03-12 17:04 -------
Hmm,

the main change is that the webxml attribute now uses <fileset>'s file
attribute internally.  I don't have Windows around, could you please try this
snippet and port the result?

<path id="foo">
  <fileset file="\Xxx\Yyy\Zzz.xml"/>
</path>
<property name="foo-as-prop" refid="foo"/>
<echo>${foo-as-prop}</echo>

and compare it to

<path id="foo">
  <fileset file="D:\Xxx\Yyy\Zzz.xml"/>
</path>
<property name="foo-as-prop" refid="foo"/>
<echo>${foo-as-prop}</echo>

they are supposed to echo the same file name.

Reply via email to