Annotation of 2002/css-validator/README.cvs.html, revision 1.8

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

Webmaster