Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.0.2-core, 1.2.2-core
-
None
Description
Currently, the parser does not get rid of leading and trailing white spaces greedily enough, resulting in some bad configuration setting for correct looking XML file. Namely, the following will result in an error:
<skin-family>
#
</skin-family>
while the following works:
<skin-family>#
{view.locale.language == 'en' ? 'someEnglishSkin' : 'someOtherSkin'}</skin-family>
Fixed.