- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 26 Apr 2006 12:44:17 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/util
In directory hutz:/tmp/cvs-serv763/org/w3c/css/util
Modified Files:
Messages.properties.de Messages.properties.en
Messages.properties.es Messages.properties.fr
Messages.properties.ja Messages.properties.nl
Messages.properties.zh-cn Warning.java
Log Message:
cmdline version revamped now using org.w3c.css.css.CssValidator
http://www.w3.org/Bugs/Public/show_bug.cgi?id=2920
recorrected (now it only applies for CSS2.1)
text output is now real text, and not HTML served as text
Index: Messages.properties.ja
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.ja,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Messages.properties.ja 19 Apr 2006 11:28:06 -0000 1.9
+++ Messages.properties.ja 26 Apr 2006 12:44:15 -0000 1.10
@@ -183,6 +183,10 @@
parser.charset:The @charset rule may only occur at the start of the style \
sheet. Please check that there are no spaces before it.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Index: Messages.properties.de
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.de,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- Messages.properties.de 19 Apr 2006 11:28:06 -0000 1.18
+++ Messages.properties.de 26 Apr 2006 12:44:15 -0000 1.19
@@ -171,6 +171,10 @@
parser.charset:The @charset rule may only occur at the start of the style \
sheet. Please check that there are no spaces before it.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Index: Messages.properties.en
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.en,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Messages.properties.en 19 Apr 2006 11:28:06 -0000 1.12
+++ Messages.properties.en 26 Apr 2006 12:44:15 -0000 1.13
@@ -206,6 +206,10 @@
parser.charset:The @charset rule may only occur at the start of the style \
sheet. Please check that there are no spaces before it.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Index: Messages.properties.nl
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.nl,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Messages.properties.nl 19 Apr 2006 11:28:06 -0000 1.11
+++ Messages.properties.nl 26 Apr 2006 12:44:15 -0000 1.12
@@ -188,6 +188,10 @@
parser.charset:De @charset-regel mag alleen voorkomen aan het begin van een \
style-sheet. Controleer dat er geen spaties aan voorafgaan.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Index: Messages.properties.es
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.es,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Messages.properties.es 19 Apr 2006 11:28:06 -0000 1.5
+++ Messages.properties.es 26 Apr 2006 12:44:15 -0000 1.6
@@ -207,6 +207,10 @@
parser.charset:The @charset rule may only occur at the start of the style \
sheet. Please check that there are no spaces before it.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Index: Warning.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Warning.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Warning.java 14 Sep 2005 15:15:32 -0000 1.6
+++ Warning.java 26 Apr 2006 12:44:15 -0000 1.7
@@ -91,9 +91,9 @@
* @see org.w3c.css.properties.css1.CssProperty#setInfo
*/
public Warning(CssProperty property, String warningMessage, int level,
- ApplContext ac) {
+ ApplContext ac) {
this(property, warningMessage, level,
- property.getPropertyName(), "", ac);
+ property.getPropertyName(), "", ac);
this.selector = property.getSelectors();
}
Index: Messages.properties.fr
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.fr,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Messages.properties.fr 19 Apr 2006 11:28:06 -0000 1.15
+++ Messages.properties.fr 26 Apr 2006 12:44:15 -0000 1.16
@@ -212,6 +212,10 @@
parser.charset: La règle @charset doit apparaitre au début du fichier. \
Vérifiez qu'il n'y a pas d'espace avant.
+parser.charsetspecial:Ce profil a une syntaxe très spécifique pour @charset : \
+@charset suivi d'exactement un espace, suivi du nom de l'encodage entre \
+guillemets, immédiatement suivi par un point-virgule.
+
warning.old_class: En CSS1, il est possible d'avoir un nom de classe \
commençant par un chiffre (".55xx") sauf s'il s'agit d'une dimension \
(".55cm"). En CSS2, de tels noms sont analysés comme étant des dimensions \
Index: Messages.properties.zh-cn
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.zh-cn,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Messages.properties.zh-cn 19 Apr 2006 11:28:06 -0000 1.8
+++ Messages.properties.zh-cn 26 Apr 2006 12:44:15 -0000 1.9
@@ -168,6 +168,10 @@
parser.charset:The @charset rule may only occur at the start of the style \
sheet. Please check that there are no spaces before it.
+parser.charsetspecial:This profile has a very specific syntax for @charset: \
+@charset followed by exactly one space, followed by the name of the encoding \
+in quotes, followed immediately by a semicolon.
+
warning.old_id:In CSS1, an id name can start with a digit ("#55ft"), \
unless it is a dimension ("#55in"). In CSS2, such ids are parsed as \
unknown dimensions (to allow for future additions of new units)
Received on Wednesday, 26 April 2006 12:44:28 UTC