- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 06 May 2010 10:59:27 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates In directory hutz:/tmp/cvs-serv9486/WebContent/WEB-INF/resources/templates Modified Files: xhtml10.vm Log Message: do not escape context strings anymore Index: xhtml10.vm =================================================================== RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/xhtml10.vm,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- xhtml10.vm 23 Oct 2009 16:23:03 -0000 1.48 +++ xhtml10.vm 6 May 2010 10:59:25 -0000 1.49 @@ -97,7 +97,7 @@ <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> <td class="codeContext" title="$context_token"> #if($context.URI && $context.URI != $uri) <a class="direct_link" href="$context.URI" title="$context.URI">link</a> #end - $!esc.html($!{context.Context}) + $!{context.Context} </td> #if ($b) #set ($b = false) @@ -166,7 +166,7 @@ <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> <td class="codeContext" title="$context_token"> #if($context.URI && $context.URI != $uri) <a class="direct_link" href="$context.URI" title="$context.URI">link</a> #end - $!esc.html($!{context.Context}) + $!{context.Context} </td> #if ($b) #set ($b = false) @@ -239,7 +239,7 @@ <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> <td class="codeContext" title="$context_token"> #if($context.URI && $context.URI != $uri) <a class="direct_link" href="$context.URI" title="$context.URI">link</a> #end - $!esc.html($!{context.Context}) + $!{context.Context} </td> #if ($b) @@ -303,7 +303,7 @@ <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> <td class="codeContext" title="$context_token"> #if($context.URI && $context.URI != $uri) <a class="direct_link" href="$context.URI" title="$context.URI">link</a> #end - $!esc.html($!{context.Context}) + $!{context.Context} </td> #if ($b) #set ($b = false) @@ -366,7 +366,7 @@ <td class="colnumber" title="#if($context.Column)$column_token $context.Column#end">$!context.Column</td> <td class="codeContext" title="$context_token"> #if($context.URI && $context.URI != $uri) <a class="direct_link" href="$context.URI" title="$context.URI">link</a> #end - $!esc.html($!{context.Context}) + $!{context.Context} </td> #if ($b) #set ($b = false)
Received on Thursday, 6 May 2010 10:59:28 UTC