- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 19 Oct 2007 19:10:51 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/share/templates/en_US
In directory hutz:/tmp/cvs-serv20170/share/templates/en_US
Modified Files:
ucn_output.tmpl
Log Message:
"char" can be "> 80", escape it (#5210)
Index: ucn_output.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/ucn_output.tmpl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ucn_output.tmpl 12 Sep 2007 06:09:41 -0000 1.9
+++ ucn_output.tmpl 19 Oct 2007 19:10:48 -0000 1.10
@@ -19,7 +19,7 @@
<TMPL_LOOP NAME="file_errors"><TMPL_IF NAME="err_type_err">
<error>
<line><TMPL_VAR NAME="line"></line>
- <column><TMPL_VAR NAME="char"></column>
+ <column><TMPL_VAR NAME="char" ESCAPE="HTML"></column>
<message><TMPL_VAR NAME="msg" ESCAPE="HTML"></message>
<context><TMPL_VAR NAME="src"></context>
<longmessage>
@@ -37,7 +37,7 @@
<TMPL_LOOP NAME="file_errors"><TMPL_IF NAME="err_type_warn">
<warning>
<line><TMPL_VAR NAME="line"></line>
- <column><TMPL_VAR NAME="char"></column>
+ <column><TMPL_VAR NAME="char" ESCAPE="HTML"></column>
<message><TMPL_VAR NAME="msg" ESCAPE="HTML"></message>
<context><TMPL_VAR NAME="src"></context>
<longmessage>
Received on Friday, 19 October 2007 19:10:57 UTC