- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 12 Dec 2006 07:13:29 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv1603
Modified Files:
StyleReportFactory.java format.properties
Removed Files:
html.properties html.properties.de html.properties.en
html.properties.es html.properties.fr html.properties.it
html.properties.ja html.properties.nl html.properties.pl-PL
html.properties.zh-cn html.zh.properties
Log Message:
duplicate templates are an absolute pain to maintain, and have very little reason to live. Nuking.
--- html.properties.pl-PL DELETED ---
Index: format.properties
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/format.properties,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- format.properties 8 Aug 2006 15:17:48 -0000 1.5
+++ format.properties 12 Dec 2006 07:13:26 -0000 1.6
@@ -1,14 +1,6 @@
# Available output format for the StyleSheetGenerator
# be careful, errors and warnings are not yet implemented
-html: html.properties.en
-html.zh-cn: html.properties.zh-cn
-html.en: html.properties.en
-html.ja: html.properties.ja
-html.fr: html.properties.fr
-html.es: html.properties.es
-html.de: html.properties.de
-html.nl: html.properties.nl
xhtml: xhtml.properties.en
xhtml.zh-cn: xhtml.properties.zh-cn
xhtml.en: xhtml.properties.en
@@ -17,6 +9,8 @@
xhtml.es: xhtml.properties.es
xhtml.de: xhtml.properties.de
xhtml.nl: xhtml.properties.nl
+xhtml.pl-PL: xhtml.properties.pl-PL
+xhtml.it: xhtml.properties.it
xml: xml.properties
text: text.properties
soap12.en: soap12.properties.en
--- html.properties.es DELETED ---
Index: StyleReportFactory.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/StyleReportFactory.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- StyleReportFactory.java 8 Aug 2006 15:17:48 -0000 1.7
+++ StyleReportFactory.java 12 Dec 2006 07:13:26 -0000 1.8
@@ -21,7 +21,7 @@
if ((document == null) || (document.equals("html"))
|| (document.equals("xhtml"))) {
return new StyleSheetGeneratorHTML2(ac, title, style,
- document,
+ "xhtml", // getting rid of duplicate templates
warningLevel);
}
if (document.equals("soap12")) {
@@ -38,7 +38,7 @@
return new StyleReportUCN(ac, title, style, document, warningLevel);
}
return new StyleSheetGeneratorHTML2(ac, title, style,
- "html",
+ "xhtml",
warningLevel);
}
}
--- html.properties.zh-cn DELETED ---
--- html.properties.nl DELETED ---
--- html.properties DELETED ---
--- html.zh.properties DELETED ---
--- html.properties.de DELETED ---
--- html.properties.it DELETED ---
--- html.properties.en DELETED ---
--- html.properties.ja DELETED ---
--- html.properties.fr DELETED ---
Received on Tuesday, 12 December 2006 07:13:38 UTC