2002/css-validator/org/w3c/css/css xhtml.properties,1.4,1.5

Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv6629/org/w3c/css/css

Modified Files:
	xhtml.properties 
Log Message:
Removing the space between the property value and the semi colon in the CSS valid output.
And also changing the link to the validated page (see bug 3191)

Index: xhtml.properties
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/xhtml.properties,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- xhtml.properties	31 Jul 2007 12:54:20 -0000	1.4
+++ xhtml.properties	2 Aug 2007 09:16:08 -0000	1.5
@@ -71,7 +71,7 @@
                 $no_errors_create_link_msg
             </p>
             <pre>
-    http://jigsaw.w3.org/css-validator/validator?uri=$file_title
+    http://jigsaw.w3.org/css-validator/validator$link
 or  http://jigsaw.w3.org/css-validator/check/referer ($no_errors_forHTML_only_msg)
             </pre>
             <p>($no_errors_bookmark_msg)</p>
@@ -237,19 +237,9 @@
             #foreach ( $property in $rule.Properties )
 
                                 <div class='Rule'>
-                                    <span class='Property'>
-                                        $property.PropertyName
-                                    </span>
-                                    :
-                                    <span class='PropertyValue'>
-                                        $property
-                                    </span>
-                #if ( $property.Important )
-
-                                    !important
-                #end
-
-                                ;</div>
+                                    <span class='Property'>$property.PropertyName</span> :
+                                    <span class='PropertyValue'>$property</span>#if ( $property.Important ) !important #end;
+                                </div>
             #end
 
                             </div>

Received on Thursday, 2 August 2007 09:16:18 UTC