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