- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 08 Sep 2005 12:24:12 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/util
In directory hutz:/tmp/cvs-serv8236/org/w3c/css/util
Modified Files:
CompareFunction.java FakeFile.java InvalidParamException.java
Messages.java Messages.properties Messages.properties.de
Messages.properties.en Messages.properties.es
Messages.properties.fr Messages.properties.ja
Messages.properties.ja.EUCJIS Messages.properties.nl
Messages.properties.zh Messages.properties.zh-cn
Messages.properties.zh-cn.GB QuickSortAlgorithm.java
SortAlgorithm.java SortedHashtable.java Warning.java
Warnings.java
Log Message:
Changes from Jean-Guilhem Rouel
Bug fixed: 1174 845 160 766
See
http://www.w3.org/Bugs/Public/show_bug.cgi?id=1174
http://www.w3.org/Bugs/Public/show_bug.cgi?id=845
http://www.w3.org/Bugs/Public/show_bug.cgi?id=160
http://www.w3.org/Bugs/Public/show_bug.cgi?id=766
The handling of selectors has been redone almost entirely.
Also, changelog in files has been removed.
Index: Messages.properties.ja
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.ja,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Messages.properties.ja 8 Aug 2005 13:19:46 -0000 1.6
+++ Messages.properties.ja 8 Sep 2005 12:24:10 -0000 1.7
@@ -136,6 +136,7 @@
値 %s の中の語は空白文字を含む事はできません
error.todo : 申し訳ありませんが、feature %s はまだ実装されていません
error.incompatible: %s と %s は互換性がありません
+warning.incompatible: %s と %s は互換性がありません
error.media: 認識できないメディア %s が指定されています
error.page: 認識できない疑似名前付きページ(psuedo named page) %s が指定されています
@@ -169,6 +170,24 @@
parser.old_class: CSS1では、 dimension (".55in") でない限り、クラス名は数値 (".55ft") から始まる事ができます。\
CSS2では、このようなクラスは未知の dimension として解析されます。(これは、将来新しい単位が追加される可能性を保つためです)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
+
# used by the servlet
servlet.invalid-request: 正しいリクエストではありません
servlet.process: 指定されたオブジェクトは処理できません
Index: Messages.properties
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Messages.properties 23 Aug 2005 16:25:15 -0000 1.8
+++ Messages.properties 8 Sep 2005 12:24:10 -0000 1.9
@@ -137,6 +137,7 @@
error.space: If the attribute selector ~= is used, the word in the value %s must not contain spaces.
error.todo : Sorry the feature %s is not implemented yet.
error.incompatible: %s and %s are incompatibles
+warning.incompatible: %s and %s are incompatibles
error.media: unrecognized media %s
error.page: unrecognized pseudo named page %s
@@ -148,5 +149,23 @@
unless it was a dimension (".55in"). In CSS2, such classes are parsed as \
unknown dimensions (to allow for future additions of new units)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
+
warning.otherprofile : property %s does not exist for this profile, but is validated conform another profile
warning.deprecated : this value is deprecated
\ No newline at end of file
Index: Warnings.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Warnings.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Warnings.java 8 Apr 2002 21:19:15 -0000 1.2
+++ Warnings.java 8 Sep 2005 12:24:10 -0000 1.3
@@ -4,21 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/**
- * $Log$
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- * Revision 2.3 1997/09/08 13:37:21 plehegar
- * bugs
- *
- * Revision 2.2 1997/09/08 13:35:34 plehegar
- * Added level
- *
- * Revision 2.1 1997/08/08 15:51:50 plehegar
- * Nothing
- *
- */
package org.w3c.css.util;
/**
Index: Messages.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Messages.java 12 Jul 2005 13:13:10 -0000 1.4
+++ Messages.java 8 Sep 2005 12:24:10 -0000 1.5
@@ -4,18 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.4 2005/07/12 13:13:10 ylafon
- * New UTF8 Properties (added by Jean-Guilhem Rouel)
- *
- * Revision 1.3 2005/01/17 02:50:12 ot
- * adding spanish as a potential message lang - thanks Carlos Iglesias
- *
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
Index: SortedHashtable.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/SortedHashtable.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SortedHashtable.java 8 Apr 2002 21:19:15 -0000 1.2
+++ SortedHashtable.java 8 Sep 2005 12:24:10 -0000 1.3
@@ -4,12 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
Index: Messages.properties.de
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.de,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- Messages.properties.de 8 Aug 2005 13:19:46 -0000 1.16
+++ Messages.properties.de 8 Sep 2005 12:24:10 -0000 1.17
@@ -125,6 +125,7 @@
error.space: Wenn der Attributselektor ~= verwendet wird, darf der Wert %s keine Leerzeichen enthalten.
error.todo : Leider ist das Feature %s noch nicht implementiert.
error.incompatible: %s und %s sind inkompatibel
+warning.incompatible: %s und %s sind inkompatibel
error.media: unbekanntes Medium %s
error.page: unbekannte Pseudo-benannte Seite %s
@@ -157,6 +158,23 @@
es sei denn es handelte sich um eine Dimension (".55in"). In CSS2 werden sollche Klassen als \
unbekannte Dimensionen gelesen (um zukünftige Erweiterungen durch weitere Einheiten zu erlauben)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: Sie haben eine ungültige Anfrage gesendet.
Index: CompareFunction.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/CompareFunction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CompareFunction.java 8 Apr 2002 21:19:15 -0000 1.2
+++ CompareFunction.java 8 Sep 2005 12:24:10 -0000 1.3
@@ -4,12 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
/**
Index: Messages.properties.en
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.en,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Messages.properties.en 8 Aug 2005 13:19:46 -0000 1.10
+++ Messages.properties.en 8 Sep 2005 12:24:10 -0000 1.11
@@ -155,6 +155,7 @@
error.space: If the attribute selector ~= is used, the word in the value %s must not contain spaces.
error.todo : Sorry the feature %s is not implemented yet.
error.incompatible: %s and %s are incompatible
+warning.incompatible: %s and %s are incompatible
error.notformobile : %s can not be used with mobile profile
error.notforatsc : %s can not be used with ATSC profile
error.notfortv : %s can not be used with TV profile
@@ -192,6 +193,23 @@
unless it was a dimension (".55in"). In CSS2, such classes are parsed as \
unknown dimensions (to allow for future additions of new units)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: You have send an invalid request.
Index: InvalidParamException.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/InvalidParamException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- InvalidParamException.java 8 Aug 2005 13:19:46 -0000 1.3
+++ InvalidParamException.java 8 Sep 2005 12:24:10 -0000 1.4
@@ -4,34 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.3 2005/08/08 13:19:46 ylafon
- * All those changed made by Jean-Guilhem Rouel:
- *
- * Huge patch, imports fixed (automatic)
- * Bug fixed: 372, 920, 778, 287, 696, 764, 233
- * Partial bug fix for 289
- *
- * Issue with "inherit" in CSS2.
- * The validator now checks the number of values (extraneous values were previously ignored)
- *
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- * Revision 2.1 1997/08/08 15:53:08 plehegar
- * Nothing
- *
- * Revision 1.3 1997/08/06 08:19:44 plehegar
- * Added extends ParseError
- *
- * Revision 1.2 1997/07/30 13:19:37 plehegar
- * Updated package
- *
- * Revision 1.1 1997/07/23 14:16:06 plehegar
- * Initial revision
- *
- */
package org.w3c.css.util;
Index: Messages.properties.nl
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.nl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Messages.properties.nl 8 Aug 2005 13:19:46 -0000 1.9
+++ Messages.properties.nl 8 Sep 2005 12:24:10 -0000 1.10
@@ -142,6 +142,7 @@
error.space: Als de attribuut selector ~= wordt gebruikt mag het woord in de waarde %s geen spaties bevatten.
error.todo : Sorry de feature %s is nog niet geimplementeerd.
error.incompatible: %s en %s zijn incompatible
+warning.incompatible: %s en %s zijn incompatible
error.media: onbekende media %s
error.page: onbekende pseudo genaamde pagina %s
@@ -174,6 +175,23 @@
tenzij het een dimensie was (".55in"). In CSS2 worden zulke classes geparsed als \
onbekende dimensions (dit maakt het mogelijk later nieuwe units toe te voegen)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# gebruikt door de servlet
servlet.invalid-request: U hebt een ongeldig verzoek ingediend.
Index: Messages.properties.es
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.es,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Messages.properties.es 8 Aug 2005 13:19:46 -0000 1.3
+++ Messages.properties.es 8 Sep 2005 12:24:10 -0000 1.4
@@ -156,6 +156,7 @@
error.space: Si se utiliza el selector de atributo ~= entonces el valor de %s no puede contener espacios.
error.todo: Lo lamentamos, la característica %s todavía no está implementada.
error.incompatible: %s y %s son incompatibles
+warning.incompatible: %s y %s son incompatibles
error.notformobile : %s no puede usarse en perfiles móviles
error.notforatsc : %s no puede usarse en perfiles ATSC
error.notfortv : %s no puede usarse en perfiles de televisión
@@ -193,6 +194,23 @@
excepto si es una magnitud de medida (".55in"). En CSS2, esas clases son interpretadas como \
magnitudes de medida desconocidas (para permitir añadir nuevas magnitudes en un futuro)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: Se ha enviado una petición no válida.
Index: FakeFile.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/FakeFile.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- FakeFile.java 8 Aug 2005 13:19:46 -0000 1.3
+++ FakeFile.java 8 Sep 2005 12:24:10 -0000 1.4
@@ -4,22 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.3 2005/08/08 13:19:46 ylafon
- * All those changed made by Jean-Guilhem Rouel:
- *
- * Huge patch, imports fixed (automatic)
- * Bug fixed: 372, 920, 778, 287, 696, 764, 233
- * Partial bug fix for 289
- *
- * Issue with "inherit" in CSS2.
- * The validator now checks the number of values (extraneous values were previously ignored)
- *
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
import java.io.ByteArrayInputStream;
Index: SortAlgorithm.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/SortAlgorithm.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SortAlgorithm.java 8 Apr 2002 21:19:15 -0000 1.2
+++ SortAlgorithm.java 8 Sep 2005 12:24:10 -0000 1.3
@@ -4,12 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
/**
Index: Warning.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Warning.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Warning.java 23 Aug 2005 16:25:15 -0000 1.4
+++ Warning.java 8 Sep 2005 12:24:10 -0000 1.5
@@ -4,27 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.4 2005/08/23 16:25:15 ylafon
- * Patch by Jean-Guilhem Rouel
- *
- * Better handling of media and properties files
- * Major reorganization of those properties files
- *
- * Revision 1.3 2002/07/12 20:36:25 plehegar
- * s/System.out/System.err/
- *
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- * Revision 2.2 1997/09/08 13:35:45 plehegar
- * Added level
- *
- * Revision 2.1 1997/08/08 15:51:50 plehegar
- * Nothing
- *
- */
package org.w3c.css.util;
import org.w3c.css.parser.CssSelectors;
Index: Messages.properties.fr
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.fr,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Messages.properties.fr 26 Aug 2005 14:09:50 -0000 1.13
+++ Messages.properties.fr 8 Sep 2005 12:24:10 -0000 1.14
@@ -33,7 +33,7 @@
warning.unknown-html: %s n'est pas un élément 'HTML'
warning.html-inside: L'élément 'html' ne peut être dans un autre élément
warning.body-inside: L'élément 'body' ne peut être dans un élément autre que 'html'
-warning.pseudo-classes: La «pseudo-classe» "anchor" %s n'a pas d'effets sur d'autres éléments que 'a'
+warning.pseudo-es: La «pseudo-classe» "anchor" %s n'a pas d'effets sur d'autres éléments que 'a'
# not used by org.w3c.css.properties.CssSelectors for the moment
warning.noinside: %s ne peut exister a l'intérieur d'un element en-ligne
@@ -162,6 +162,7 @@
valeur %s ne doit pas contenir d'espaces.
error.todo : Désolé, mais cette fonctionnalité n'est pas encore disponible.
error.incompatible: %s et %s ne sont pas compatibles.
+warning.incompatible: %s et %s ne sont pas compatibles.
error.media: media %s non reconnu
error.page: Page pseudo-nommée %s non reconnue
@@ -191,10 +192,33 @@
propriété, ajoutez-le.
parser.old_class: En CSS1, il était possible d'avoir un nom de classe \
-commençant par un chiffre (".55xx") sauf s'il s'agissait d'une dimension \
+commençant par un chiffre (".55xx") sauf s'il s'agissait d'une dimension \
+(".55cm"). En CSS2, de tels noms sont analysés comme étant des dimensions \
+inconnues, pour permettre l'ajout de nouvelles unités).
+
+parser.old_id: En CSS1, il était possible d'avoir un nom d'id \
+commençant par un chiffre ("#55xx") sauf s'il s'agissait d'une dimension \
+("#55cm"). En CSS2, de tels noms sont analysés comme étant des dimensions \
+inconnues, pour permettre l'ajout de nouvelles unités).
+
+parser.class_dim: 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").
+
+parser.id_dim: En CSS1, il est possible d'avoir un nom d'id \
+commençant par un chiffre ("#55xx") sauf s'il s'agit d'une dimension \
+("#55cm").
+
+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 \
inconnues, pour permettre l'ajout de nouvelles unités).
+warning.old_id: En CSS1, il est possible d'avoir un nom d'id \
+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 \
+inconnues, pour permettre l'ajout de nouvelles unités).
+
# used by the servlet
servlet.invalid-request: Vous avez envoyé une requète érronée.
servlet.process: Impossible de travailler sur l'objet.
Index: Messages.properties.ja.EUCJIS
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.ja.EUCJIS,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Messages.properties.ja.EUCJIS 8 Aug 2005 13:19:46 -0000 1.6
+++ Messages.properties.ja.EUCJIS 8 Sep 2005 12:24:10 -0000 1.7
@@ -136,6 +136,7 @@
�� %s ����θ�϶���ʸ���ޤ��ϤǤ��ޤ���
error.todo : �������ޤ���feature %s �Ϥޤ<����Ƥ��ޤ���
error.incompatible: %s �� %s �ϸߴ�-������ޤ���
+warning.incompatible: %s �� %s �ϸߴ�-������ޤ���
error.media: ǧ���Ǥ��ʤ���ǥ��� %s �����ꤵ��Ƥ��ޤ�
error.page: ǧ���Ǥ��ʤ�����̾p�դ��ڡ���(psuedo named page) %s �����ꤵ��Ƥ��ޤ�
@@ -169,6 +170,30 @@
parser.old_class: CSS1�Ǥϡ� dimension (".55in") �Ǥʤ��¤ꡢ���饹̾�Ͽ��� (".55ft") ����Ϥޤ��Ǥ��ޤ���\
CSS2�Ǥϡ����Τ褦�ʥ��饹��̤�Τ� dimension �Ȥ��Ʋ��Ϥ���ޤ���(����ϡ����迷����ñ�̤��ɲä�����ǽ-���ݤĤ���Ǥ�)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
+
# used by the servlet
servlet.invalid-request: 5�����ꥯ�����ȤǤϤ���ޤ���
servlet.process: ���ꤵ�줿���֥������ȤϽ���Ǥ��ޤ���
Index: Messages.properties.zh
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.zh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Messages.properties.zh 8 Aug 2005 13:19:46 -0000 1.6
+++ Messages.properties.zh 8 Sep 2005 12:24:10 -0000 1.7
@@ -121,6 +121,7 @@
error.space: Èç¹ûʹÓÃÁËÊôÐÔÑ¡Ôñ·û ~= £¬ÔÚÖµ %s ÖеÄ×Ö±ØÐë²»°üº¬¿Õ¸ñ
error.todo : ±§Ç¸£¬ÌØÐÔ %s »¹²»ÄÜÖ§³Ö
error.incompatible: %s ºÍ %s ²»¼æÈÝ
+warning.incompatible: %s ºÍ %s ²»¼æÈÝ
error.media: ²»ÄÜʶ±ðµÄýÌå %s
error.page: ²»ÄÜÖ°±ðµÄαÃüÃûÒ³ %s
@@ -153,6 +154,23 @@
³ý·ÇËüÊÇÒ»¸ö³ß´çÖµ (".55in")¡£ÔÚCSS2£¬ÒÔÉϵÄÀà \
±»½âÊÍΪ²»Ê¶±ðµÄ³ß´çÖµ(ÒÔÔÊÐí½«À´¼ÓÈëеĵ¥Î»)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: Äã·¢³öÁËÎÞЧµÄÇëÇó
Index: Messages.properties.zh-cn.GB
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.zh-cn.GB,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Messages.properties.zh-cn.GB 8 Aug 2005 13:19:46 -0000 1.6
+++ Messages.properties.zh-cn.GB 8 Sep 2005 12:24:10 -0000 1.7
@@ -122,6 +122,7 @@
error.space: ���ʹ��������ѡ��� ~= ����ֵ %s �е��ֱ��벻��ո�
error.todo : ��Ǹ������ %s ������֧��
error.incompatible: %s �� %s ������
+warning.incompatible: %s �� %s ������
error.media: ����ʶ���ý�� %s
error.page: ����ְ���α����ҳ %s
@@ -154,6 +155,23 @@
�������һ��ߴ�ֵ (".55in")����CSS2�����ϵ��� \
������Ϊ��ʶ��ijߴ�ֵ(�����?4�����µĵ�λ)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: �㷢������Ч������
Index: QuickSortAlgorithm.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/QuickSortAlgorithm.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- QuickSortAlgorithm.java 8 Apr 2002 21:19:15 -0000 1.2
+++ QuickSortAlgorithm.java 8 Sep 2005 12:24:10 -0000 1.3
@@ -4,12 +4,6 @@
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
-/*
- * $Log$
- * Revision 1.2 2002/04/08 21:19:15 plehegar
- * New
- *
- */
package org.w3c.css.util;
/**
Index: Messages.properties.zh-cn
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/Messages.properties.zh-cn,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Messages.properties.zh-cn 8 Aug 2005 13:19:46 -0000 1.6
+++ Messages.properties.zh-cn 8 Sep 2005 12:24:10 -0000 1.7
@@ -122,6 +122,7 @@
error.space: 如果使用了属性选择符 ~= ,在值 %s 中的字必须不包含空格
error.todo : 抱歉,特性 %s 还不能支持
error.incompatible: %s 和 %s 不兼容
+warning.incompatible: %s 和 %s 不兼容
error.media: 不能识别的媒体 %s
error.page: 不能职别的伪命名页 %s
@@ -154,6 +155,23 @@
除非它是一个尺寸值 (".55in")。在CSS2,以上的类 \
被解释为不识别的尺寸值(以允许将来加入新的单位)
+parser.old_id:In CSS1, an id name could start with a digit ("#55ft"), \
+unless it was a dimension ("#55in"). In CSS2, such ids are parsed as \
+unknown dimensions (to allow for future additions of new units)
+
+parser.class_dim:In CSS1, a class name can start with a digit (".55ft"), \
+unless it is a dimension (".55in").
+
+parser.id_dim:In CSS1, an id name can start with a digit ("#55ft"), \
+unless it is a dimension ("#55in").
+
+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)
+
+warning.old_class:In CSS1, a class 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)
# used by the servlet
servlet.invalid-request: 你发出了无效的请求
Received on Thursday, 8 September 2005 12:24:29 UTC