[ http://issues.apache.org/jira/browse/TAPESTRY-244?page=all ]
Howard M. Lewis Ship reassigned TAPESTRY-244:
---------------------------------------------
Assign To: Howard M. Lewis Ship
> Template parse errors if unquoted attribute contains a slash
> ------------------------------------------------------------
>
> Key: TAPESTRY-244
> URL: http://issues.apache.org/jira/browse/TAPESTRY-244
> Project: Tapestry
> Type: Bug
> Components: Framework
> Versions: 3.0.1
> Reporter: Naeem Malik
> Assignee: Howard M. Lewis Ship
> Priority: Minor
>
> If a template for a page has unquoted attributes values containing a "/"
> character then Tapestry throws template-parsing errors. The errors are
> usually "missing attribute value" or "unmatched close tag" but others are
> possible.
> The problem occurs because the TemplateParser class assumes that a "/"
> character means the end of the current tag (ie a "/>"). The code in the
> startTag() function uses lines like:
> if (ch == '/' || ch == '>')
> // do something
> This is incorrect. The fix is to look ahead for the next character if the
> current character is a slash):
> if((ch == '/' && lookahead(new char[] { '>' })) || ch == '>')
> // do something
> I have tried the fix and it does resolve the issue. The fix needs to be
> applied to lines 805 and 870 of TemplateParser.java (in v3.0.1).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]