Annotation of 2002/css-validator/README.cvs.html, revision 1.12
1.1 dom 1: <h1 class="center">CSS Validator version 2.0</h1>
1.12 ! mike 2:
! 3: <p><b>The contents of this page are obsolete. The current sources for the W3C CSS Checker are here:</b>
! 4: <p><a href="https://github.com/w3c/css-validator">https://github.com/w3c/css-validator</a>
! 5:
1.1 dom 6: <p>
1.8 ot 7: This is the source for the <a href="http://jigsaw.w3.org/css-validator">W3C CSS validation service</a>,
8: available under the open source <a href="http://www.w3.org/Consortium/Legal/copyright-software">W3C Software license</a>.
1.1 dom 9: </p>
10: <p>
1.8 ot 11: You can run it on a web server, on the command line or use it in your new browser.
1.1 dom 12: </p>
13:
1.8 ot 14: <h2>Get the source</h2>
1.9 ot 15: <h3>Latest development code</h3>
1.8 ot 16: <p>In order to get the latest development code:</p>
17:
18: <pre>
19: bash$ <kbd>export CVSROOT=":pserver:anonymous@dev.w3.org:/sources/public"</kbd>
20: bash$ <kbd>cvs login</kbd>
21: (Logging in to anonymous@dev.w3.org)
22: CVS password: <kbd>anonymous</kbd>
23: bash$ <kbd>cvs get 2002/css-validator</kbd>
24: ...
25: </pre>
1.9 ot 26: <p>Note that in spite of our best efforts, the latest development code may be broken at any time.</p>
27:
28: <h3>Latest stable release</h3>
29: <p>In order to get the latest stable release:</p>
30:
31: <pre>
32: bash$ <kbd>export CVSROOT=":pserver:anonymous@dev.w3.org:/sources/public"</kbd>
33: bash$ <kbd>cvs login</kbd>
34: (Logging in to anonymous@dev.w3.org)
35: CVS password: <kbd>anonymous</kbd>
36: bash$ <kbd>cvs get -r nytrulce 2002/css-validator</kbd>
37: ...
38: </pre>
39:
1.8 ot 40:
41:
42: <h2>Contact / Bugs</h2>
43:
1.1 dom 44: <p>
45: If you have any questions or problems with the validator, send us an <a
1.5 bjoern 46: href="http://jigsaw.w3.org/css-validator/Email.html">email</a>. <a href="http://www.w3.org/Bugs/Public/buglist.cgi?product=CSSValidator&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED"
1.4 bjoern 47: >Known problems</a> are listed in <a href="http://www.w3.org/Bugs/Public/">W3C's Bugzilla</a>.
1.1 dom 48: </p>
49:
1.8 ot 50: <h2>Classes and Source overview</h2>
51:
1.1 dom 52: <p>This directory contains:</p>
53: <dl>
54: <dt>
55: <a href="org/w3c/css/parser/analyzer">org.w3c.css.parser.analyzer</a></dt>
56: <dd>
57: The parser generated with
58: <a href="http://www.suntest.com/JavaCC">JavaCC 0.7.1</a>.
59: You'll probably not want to see this directory.</dd>
60: <dt>
61: <a href="org/w3c/css/parser">org.w3c.css.parser</a></dt>
62: <dd>
63: The front-end of the parser</dd>
64: <dt>
65: <a href="org/w3c/css/values">org.w3c.css.values</a></dt>
66: <dd>
67: All values for the parser to construct an expression.</dd>
68: <dt>
69: <a href="org/w3c/css/properties">org.w3c.css.properties</a></dt>
70: <dd>
1.7 ylafon 71: Configuration and profile properties files and classes handling their loading</dd>
72: <dt>
73: <a href="org/w3c/css/properties">org.w3c.css.properties.css1</a></dt>
74: <dd>
1.6 ylafon 75: All cascading style sheet level 1 properties (+ css2 and some of css3).</dd>
1.1 dom 76: <dt>
1.7 ylafon 77: <a href="org/w3c/css/aural">org.w3c.css.properties.aural</a></dt>
1.1 dom 78: <dd>
79: For Aural properties.</dd>
80: <dt>
1.7 ylafon 81: <a href="org/w3c/css/table">org.w3c.css.properties.css2.table</a></dt>
1.1 dom 82: <dd>
83: All CSS2 table properties.</dd>
84: <dt>
1.7 ylafon 85: <a href="org/w3c/css/user">org.w3c.css.properties.css2.user</a></dt>
1.1 dom 86: <dd>
87: All CSS2 user properties.</dd>
88: <dt>
1.7 ylafon 89: <a href="org/w3c/css/font">org.w3c.css.properties.css2.font</a></dt>
1.1 dom 90: <dd>
91: All CSS2 font properties.</dd>
92: <dt>
1.7 ylafon 93: <a href="org/w3c/css/paged">org.w3c.css.properties.paged</a></dt>
1.1 dom 94: <dd>
95: All CSS2 paged properties.</dd>
96: <dt>
97: <a href="org/w3c/css/css">org.w3c.css.css</a> </dt>
98: <dd>
99: The validator is here !</dd>
100: <dt>
101: <a href="org/w3c/css/util">org.w3c.css.util</a></dt>
102: <dd>
103: some utilities for a lot of classes</dd>
104: <dt>
105: <a href="org/w3c/css/servlet">org.w3c.css.servlet</a></dt>
106: <dd>
107: The validator servlet.
108: <div class="box">
109: <p>
110: In servlet mode, URL like file are desactivated. Be careful with
111: URL, you can put a URL request so if your site have special
112: authorization to access web pages, it should be dangerous to run the
113: validator on it. You can desactivated all URL request with the init
114: parameter 'import'. Set this parameter to 'false' (default) means
115: any URL request (except file:) are authorized. see the <a
116: href="docs/org.w3c.css.servlet.CssValidator.html">javadoc documentation</a>
117: for more informations on the servlet.
118: </p>
119: </div></dd>
120: <dt>
121: docs</dt>
122: <dd>
123: the <a href="docs/packages.html">javadoc documentation</a>.</dd>
124: <dt>
125: <a href="HOWTO.html">HOWTO</a></dt>
126: <dd>
127: How can you add your owns properties ?</dd>
128: <dt>
129: <a href="RUN.html">RUN</a></dt>
130: <dd>
131: How to launch the validator on your local system.</dd>
132: </dl>
133:
134: <p>
135: You have a lot of configuration files in the validator (in Java, it means
136: properties).
137: </p>
138:
139: <ul>
140: <li>package org.w3c.css.parser
141: <dl>
142: <dt>
1.7 ylafon 143: <a href="org/w3c/css/properties/Config.properties">Config.properties</a></dt>
1.1 dom 144: <dd>
145: The default CssStyle to use when parsing a document.</dd>
146: <dt>
147: <a href="org/w3c/css/parser/Elements.dtd4">Elements.dtd4</a></dt>
148: <dd>
149: All HTML elements recognized by a selector.</dd>
150: </dl></li>
151: <li>package org.w3c.css.util
152: <dl>
153: <dt>
154: <a href="org/w3c/css/util/Messages.properties">Messages.properties</a></dt>
155: <dd>
156: All warning and error messages used by the parser.</dd>
157: </dl></li>
158: <li>package org.w3c.css.properties
159: <dl>
160: <dt>
1.7 ylafon 161: <a href="org/w3c/css/properties/css1/CSS1Default.properties">CSS1Default.properties</a></dt>
1.1 dom 162: <dd>
163: Inheritance controls for all CSS1 properties.</dd>
164: <dt>
165: <a href="org/w3c/css/properties/CSS1Properties.properties">CSS1Properties.properties</a></dt>
166: <dd>
167: All CSS1 properties.</dd>
168: </dl></li>
169: <li>package org.w3c.css.css
170: <dl>
171: <dt>
172: <a href="org/w3c/css/css/format.properties">format.properties</a></dt>
173: <dd>
174: Available output format for the validator</dd>
175: <dt>
176: <a href="org/w3c/css/css/text.properties">text.properties</a></dt>
177: <dd>
178: text output format.</dd>
179: <dt>
180: <a href="org/w3c/css/css/html.properties">html.properties</a></dt>
181: <dd>
182: html output properties.</dd>
183: </dl></li>
184: </ul>
Webmaster