- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 26 Aug 2009 07:57:06 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/includes
In directory hutz:/tmp/cvs-serv1297/WebContent/WEB-INF/resources/templates/includes
Modified Files:
Tag: dev2
macros_xhtml10.vm
Log Message:
updated display of results
Index: macros_xhtml10.vm
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/includes/Attic/macros_xhtml10.vm,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- macros_xhtml10.vm 24 Aug 2009 15:43:24 -0000 1.1.2.1
+++ macros_xhtml10.vm 26 Aug 2009 07:57:04 -0000 1.1.2.2
@@ -18,6 +18,30 @@
</div>
#end
+
+#macro(error2 $error)
+ <td class="linenumber" title="">
+ #if($error.Line)Line $error.Line #end #if($error.Column)Column $error.Column #end
+ </td>
+ <td class="codeContext">
+ #if($error.Context)
+ $error.Context
+ #end
+ </td>
+ <td class="parse-error">
+ $error.Longmessage.length
+ yooo
+ #foreach($longMessage in $error.Longmessage)
+ <p>
+ #foreach($longMessagePiece in $longMessage.Content)
+ $longMessagePiece
+ #end
+ </p>
+ #end
+ </td>
+#end
+
+
#macro(info $information)
<span class="err_type">Info</span>
#if($information.Line)
Received on Wednesday, 26 August 2009 07:57:15 UTC