You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Konrad Windszus (JIRA)" <ji...@apache.org> on 2016/01/20 09:14:39 UTC

[jira] [Created] (SLING-5441) Trim Spaces should not remove space between scriptlets

Konrad Windszus created SLING-5441:
--------------------------------------

             Summary: Trim Spaces should not remove space between scriptlets
                 Key: SLING-5441
                 URL: https://issues.apache.org/jira/browse/SLING-5441
             Project: Sling
          Issue Type: Bug
          Components: Scripting
    Affects Versions: Scripting JSP 2.1.6
            Reporter: Konrad Windszus


Currently if you have the following code in your JSP
{code}
...
<i class="coral-Icon <%= isMinimal ? "coral-MinimalButton-icon" : "" %> <%= cmp.getIconClass(icon) %> coral-Icon--size<%= iconSize %>"></i>
...
{code}

and the property {{jasper.trimSpaces}} is set to {{true}}, then the space between the first scriptlet and the second scriptlet is completely removed, leading to output like 
{code}
<i class="coral-Icon coral-MinimalButton-iconcoral-Icon--close coral-Icon--sizeS"></i>
{code} 

This should not happen as the space here obviously has a semantical meaning. With {{jasper.trimSpaces}} set to {{false}} the following correct code is generated:

{code}
<i class="coral-Icon coral-MinimalButton-icon coral-Icon--close coral-Icon--sizeS"></i>
{code} 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)