Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Patch
Description
The following FO snippet
<fo:basic-link external-destination="embedded-file:some(paren.pdf">The link to some file</fo:basic-link>
produces the following PDF snippet
<< /S /JavaScript /JS (this.exportDataObject({cName:"some(paren.pdf", nLaunch:2});) >>
This PDF action is broken because the parenthesis are not escaped.
The correct output should be
<< /S /JavaScript /JS (this.exportDataObject\({cName:"some\(paren.pdf", nLaunch:2}\);) >>
Attachments
Attachments
Issue Links
- relates to
-
FOP-2743 [PATCH] fo:basic-link external-destinations fails when target URIs contains unbalanced parenthesis
- Resolved