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