- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 25 Feb 2009 20:40:26 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css In directory hutz:/tmp/cvs-serv2306 Modified Files: xhtml.properties soap12.properties Log Message: added per-format escaping Index: soap12.properties =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/css/soap12.properties,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- soap12.properties 10 Feb 2009 15:47:11 -0000 1.6 +++ soap12.properties 25 Feb 2009 20:40:24 -0000 1.7 @@ -35,7 +35,7 @@ </m:errorlist> #end - #set ( $sf = $err.SourceFile ) + #set ( $sf = $err.SourceFileEscaped ) <m:errorlist> <m:uri>$sf</m:uri> @@ -86,7 +86,7 @@ </m:warninglist> #end - #set ( $sf = $warning.SourceFile ) + #set ( $sf = $warning.SourceFileEscaped ) <m:warninglist> <m:uri>$sf</m:uri> @@ -97,9 +97,9 @@ <m:warning> <m:line>$warning.Line</m:line> <m:level>$warning.Level</m:level> - <m:message>$warning.WarningMessage</m:message> + <m:message>$warning.WarningMessageEscaped</m:message> #if ( $warning.Context ) - <m:context>$warning.Context</m:context> + <m:context>$warning.Context.Escaped</m:context> #end </m:warning> #end Index: xhtml.properties =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/css/xhtml.properties,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- xhtml.properties 17 Feb 2009 14:40:47 -0000 1.32 +++ xhtml.properties 25 Feb 2009 20:40:24 -0000 1.33 @@ -141,7 +141,7 @@ <!--end of individual error section--> </div> #end - #set ( $sf = $err.SourceFile ) + #set ( $sf = $err.SourceFileEscaped ) <div class='error-section'> #if ( $fake_input ) @@ -206,7 +206,7 @@ <!--end of individual warning section--> </div> #end - #set ( $sf = $warning.SourceFile ) + #set ( $sf = $warning.SourceFileEscaped ) <div class='warning-section'> #if ( $fake_input ) @@ -221,8 +221,8 @@ <tr class='warning'> <td class='linenumber' title='Line $warning.Line'>$warning.Line</td> - <td class='codeContext'>#if ( $warning.Context ) $warning.Context #end</td> - <td class='level$warning.Level' title='warning level $warning.Level'>$warning.WarningMessage</td> + <td class='codeContext'>#if ( $warning.Context ) $warning.Context.Escaped #end</td> + <td class='level$warning.Level' title='warning level $warning.Level'>$warning.WarningMessageEscaped</td> </tr> #end #end @@ -250,11 +250,11 @@ #if ( $rules.AtRule != "" ) #if ( $rules.Empty ) - <div class='vEmptyAtRule'>$rules.AtRule + <div class='vEmptyAtRule'>$rules.AtRuleEscaped #else <div class='atRule'> <span class='atSelector'> - $rules.AtRule + $rules.AtRuleEscaped </span> { #end @@ -266,7 +266,7 @@ <div class='selector'> #if ( $rule.Selectors ) <span class='selectorValue'> - $rule.Selectors + $rule.SelectorsEscaped </span> { #end @@ -274,8 +274,8 @@ #foreach ( $property in $rule.Properties ) <div class='Rule'> - <span class='Property'>$property.PropertyName</span> : - <span class='PropertyValue'>$property</span>#if ( $property.Important ) !important #end; + <span class='Property'>$property.PropertyNameEscaped</span> : + <span class='PropertyValue'>$property.Escaped</span>#if ( $property.Important ) !important #end; </div> #end @@ -360,4 +360,4 @@ </p> </div> </body> -</html> \ No newline at end of file +</html>
Received on Wednesday, 25 February 2009 20:40:42 UTC