Issue Details (XML | Word | Printable)

Key: DOXIA-314
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Vincent Siveton
Reporter: Lukas Theussl
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Maven Doxia

Custom entities do not work in xdoc section titles

Created: 05/May/09 03:25 AM   Updated: 05/May/09 08:19 AM   Resolved: 05/May/09 08:19 AM
Return to search
Component/s: Core, Module - Xdoc
Affects Version/s: 1.1
Fix Version/s: 1.1.1

Time Tracking:
Not Specified

Issue Links:
Related
 


 Description  « Hide

There is a test case in EntitiesVerifier of SiteTools. The following xdoc (cut):

<!DOCTYPE document [
<!ENTITY Alpha    "&#913;"> <!-- greek capital letter alpha, U+0391 -->
<!ENTITY tritPos  "&#x1d7ed;"> <!-- MATHEMATICAL SANS-SERIF BOLD DIGIT ONE -->
]>

      <h3>Local Entities: '&Alpha;' '&tritPos;'</h3>
      <p>'&Alpha;' '&tritPos;'</p>

produces:

<h3>Local Entities: '&#913;' '&amp;#x1d7ed;'</h3>
      <p>'&#913;' '&#x1d7ed;'</p>

ie the replacement text for &tritPos; gets un-escaped in the title while it is correct in the paragraph.



Vincent Siveton added a comment - 05/May/09 08:19 AM

done in r771709