https://issues.apache.org/bugzilla/show_bug.cgi?id=52667
Bug #: 52667
Summary: Illegal use of ampersand in documentation
Product: Ant
Version: 1.8.3
Platform: PC
Status: NEW
Severity: normal
Priority: P2
Component: Documentation
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
http://ant.apache.org/manual/Types/mapper.html contains:
<regexpmapper from="^(.*)\.(.*)$$&" to="\2.\1"/>
but ampersands must be escaped in XML attributes so this is illegal.
I believe this should read:
<regexpmapper from="^(.*)\.(.*)$$&" to="\2.\1"/>
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.