[
https://issues.apache.org/jira/browse/VELOCITY-785?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Claude Brisson resolved VELOCITY-785.
-------------------------------------
Resolution: Fixed
Fix Version/s: 2.0
1.7
applied Jarkko patch.
> incensistencies when escaping quotes by doubling them
> -----------------------------------------------------
>
> Key: VELOCITY-785
> URL: https://issues.apache.org/jira/browse/VELOCITY-785
> Project: Velocity
> Issue Type: Improvement
> Components: Engine
> Affects Versions: 2.0
> Environment: any
> Reporter: Claude Brisson
> Priority: Minor
> Fix For: 1.7, 2.0
>
> Attachments: velocity-785.patch
>
>
> The template:
> #set($double_double = """") ## ok
> #set($single_single = '''') ## ok
> #set($double_single = "''") ## strange, equals "'"
> #set($single_double = '""') ## strange, equals '"'
> double_double = $double_double
> single_single = $single_single
> double_single = $double_single
> single_double = $single_double
> renders as:
> "
> '
> '
> "
> whereas one would expect:
> "
> '
> ''
> ""
> More readily, one would expect single quotes doubling mechanism and double
> quotes doubling mechanism to only be active inside single quotes and double
> quotes, respectively.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]