- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 19 Oct 2009 16:31:35 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates In directory hutz:/tmp/cvs-serv18858/WebContent/WEB-INF/resources/templates Modified Files: xhtml10.vm Log Message: escapes contexts Index: xhtml10.vm =================================================================== RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/xhtml10.vm,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- xhtml10.vm 19 Oct 2009 16:22:00 -0000 1.34 +++ xhtml10.vm 19 Oct 2009 16:31:32 -0000 1.35 @@ -110,11 +110,11 @@ #foreach($context in $message.getContexts()) <td class="linenumber" title="#if($context.Line)$line_token $context.Line#end">$!context.Line</td> <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> - <td class="codeContext" title="$context_token">$!{context.Context}</td> + <td class="codeContext" title="$context_token">$!esc.html($!{context.Context})</td> #end <td class="info" id="$messageId" rowspan="$message.getContexts().size()"> <span class="msg">$message.Title</span> - #if($message.Description != "")<div>$!message.Description</div>#end + #if($message.Description != "")<div class="description">$!message.Description</div>#end </td> <td class="anchor" rowspan="$message.getContexts().size()"><a class="smooth" title="$anchor_message" href="#$messageId">a</a></td> </tr> @@ -152,11 +152,11 @@ #foreach($context in $message.getContexts()) <td class="linenumber" title="#if($context.Line)$line_token $context.Line#end">$!context.Line</td> <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> - <td class="codeContext" title="$context_token">$!{context.Context}</td> + <td class="codeContext" title="$context_token">$!esc.html($!{context.Context})</td> #end <td class="error" id="$messageId" rowspan="$message.getContexts().size()"> <span class="msg">$message.Title</span> - #if($message.Description != "")<div>$!message.Description</div>#end + #if($message.Description != "")<div class="description">$!message.Description</div>#end </td> <td class="anchor" rowspan="$message.getContexts().size()"><a class="smooth" title="$anchor_message" href="#$messageId">a</a></td> </tr> @@ -194,11 +194,11 @@ #foreach($context in $message.getContexts()) <td class="linenumber" title="#if($context.Line)$line_token $context.Line#end">$!context.Line</td> <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> - <td class="codeContext" title="$context_token">$!{context.Context}</td> + <td class="codeContext" title="$context_token">$!esc.html($!{context.Context})</td> #end <td class="warning" id="$messageId" rowspan="$message.getContexts().size()"> <span class="msg">$message.Title</span> - #if($message.Description != "")<div>$!message.Description</div>#end + #if($message.Description != "")<div class="description">$!message.Description</div>#end </td> <td class="anchor" rowspan="$message.getContexts().size()"><a class="smooth" title="$anchor_message" href="#$messageId">a</a></td> </tr>
Received on Monday, 19 October 2009 16:31:39 UTC