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

1.1       dom         1:     <h1 class="center">CSS Validator version 2.0</h1>
                      2:     
                      3:     <p>
                      4:       This is a CSS validator for <a
                      5:        href="http://www.w3.org/TR/REC-CSS2/">Cascading Style Sheets, level
                      6:        2</a>. See the <a href="COPYRIGHT.html">copyright notice</a>.
                      7:     </p>
                      8:     <p>
                      9:       You can run it on a web server, on the command line or use it in your new
                     10:       browser.
                     11:     </p>
                     12: 
                     13:     <p>
                     14:       If you have any questions or problems with the validator, send us an <a
                     15:        href="Email.html">email</a>.
                     16:     </p>
                     17: 
                     18:     <p>This directory contains:</p>
                     19:     <dl>
                     20:       <dt>
                     21:        <a href="org/w3c/css/parser/analyzer">org.w3c.css.parser.analyzer</a></dt>
                     22:       <dd>
                     23:        The parser generated with 
                     24:        <a href="http://www.suntest.com/JavaCC">JavaCC 0.7.1</a>.
                     25:        You'll probably not want to see this directory.</dd>
                     26:       <dt>
                     27:        <a href="org/w3c/css/parser">org.w3c.css.parser</a></dt>
                     28:       <dd>
                     29:        The front-end of the parser</dd>
                     30:       <dt>
                     31:        <a href="org/w3c/css/values">org.w3c.css.values</a></dt>
                     32:       <dd>
                     33:        All values for the parser to construct an expression.</dd>
                     34:       <dt>
                     35:        <a href="org/w3c/css/properties">org.w3c.css.properties</a></dt>
                     36:       <dd>
                     37:        All cascading style sheet level 1 properties.</dd>
                     38:       <dt>
                     39:        <a href="org/w3c/css/aural">org.w3c.css.aural</a></dt>
                     40:       <dd>
                     41:        For Aural properties.</dd>
                     42:       <dt>
                     43:        <a href="org/w3c/css/table">org.w3c.css.table</a></dt>
                     44:       <dd>
                     45:        All CSS2 table properties.</dd>
                     46:       <dt>
                     47:        <a href="org/w3c/css/user">org.w3c.css.user</a></dt>
                     48:       <dd>
                     49:        All CSS2 user properties.</dd>
                     50:       <dt>
                     51:        <a href="org/w3c/css/font">org.w3c.css.font</a></dt>
                     52:       <dd>
                     53:        All CSS2 font properties.</dd>
                     54:       <dt>
                     55:        <a href="org/w3c/css/paged">org.w3c.css.paged</a></dt>
                     56:       <dd>
                     57:        All CSS2 paged properties.</dd>
                     58:       <dt>
                     59:        <a href="org/w3c/css/css">org.w3c.css.css</a> </dt>
                     60:       <dd>
                     61:        The validator is here !</dd>
                     62:       <dt>
                     63:        <a href="org/w3c/css/util">org.w3c.css.util</a></dt>
                     64:       <dd>
                     65:        some utilities for a lot of classes</dd>
                     66:       <dt>
                     67:        <a href="org/w3c/css/servlet">org.w3c.css.servlet</a></dt>
                     68:       <dd>
                     69:        The validator servlet.
                     70:        <div class="box">
                     71:          <p>
                     72:            In servlet mode, URL like file are desactivated. Be careful with
                     73:            URL, you can put a URL request so if your site have special
                     74:            authorization to access web pages, it should be dangerous to run the
                     75:            validator on it. You can desactivated all URL request with the init
                     76:            parameter 'import'. Set this parameter to 'false' (default) means
                     77:            any URL request (except file:) are authorized.  see the <a
                     78:              href="docs/org.w3c.css.servlet.CssValidator.html">javadoc documentation</a>
                     79:            for more informations on the servlet.
                     80:            </p>
                     81:        </div></dd>
                     82:       <dt>
                     83:        docs</dt>
                     84:       <dd>
                     85:        the <a href="docs/packages.html">javadoc documentation</a>.</dd>
                     86:       <dt>
                     87:        <a href="HOWTO.html">HOWTO</a></dt>
                     88:       <dd>
                     89:        How can you add your owns properties ?</dd>
                     90:       <dt>
                     91:        <a href="RUN.html">RUN</a></dt>
                     92:       <dd>
                     93:        How to launch the validator on your local system.</dd>
                     94:     </dl>
                     95:     
                     96:     <p>
                     97:       You have a lot of configuration files in the validator (in Java, it means
                     98:       properties).
                     99:     </p>
                    100:       
                    101:     <ul>
                    102:       <li>package org.w3c.css.parser
                    103:        <dl>
                    104:          <dt>
                    105:            <a href="org/w3c/css/parser/Config.properties">Config.properties</a></dt>
                    106:          <dd>
                    107:            The default CssStyle to use when parsing a document.</dd>
                    108:          <dt>
                    109:            <a href="org/w3c/css/parser/Elements.dtd4">Elements.dtd4</a></dt>
                    110:          <dd>
                    111:            All HTML elements recognized by a selector.</dd>
                    112:        </dl></li>
                    113:       <li>package org.w3c.css.util
                    114:        <dl>
                    115:          <dt>
                    116:            <a href="org/w3c/css/util/Messages.properties">Messages.properties</a></dt>
                    117:          <dd>
                    118:            All warning and error messages used by the parser.</dd>
                    119:        </dl></li>
                    120:       <li>package org.w3c.css.properties
                    121:        <dl>
                    122:          <dt>
                    123:            <a href="org/w3c/css/properties/CSS1Default.properties">CSS1Default.properties</a></dt>
                    124:          <dd>
                    125:            Inheritance controls for all CSS1 properties.</dd>
                    126:          <dt>
                    127:            <a href="org/w3c/css/properties/CSS1Properties.properties">CSS1Properties.properties</a></dt>
                    128:          <dd>
                    129:            All CSS1 properties.</dd>
                    130:        </dl></li>
                    131:       <li>package org.w3c.css.aural
                    132:        <dl>
                    133:          <dt>
                    134:            <a href="org/w3c/css/aural/ACSSDefault.properties">ACSSDefault.properties</a></dt>
                    135:          <dd>
                    136:            Inheritance controls for all aural properties.</dd>
                    137:          <dt>
                    138:            <a href="org/w3c/css/aural/AuralProperties.properties">AuralProperties.properties</a></dt>
                    139:          <dd>
                    140:            All CSS1 and Aural properties.</dd>
                    141:          <dt>
                    142:            <a href="org/w3c/css/aural/AuralDefault.properties">AuralDefault.properties</a></dt>
                    143:          <dd>
                    144:            Configuration for Aural browser.</dd>
                    145:        </dl></li>
                    146:       <li>package org.w3c.css.font
                    147:        <dl>
                    148:          <dt>
                    149:            <a href="org/w3c/css/font/Font.properties">Font.properties</a></dt>
                    150:          <dd>
                    151:            Inheritance controls for all font properties and configuration file for the parser.</dd>
                    152:        </dl></li>
                    153:       <li>package org.w3c.css.css
                    154:        <dl>
                    155:          <dt>
                    156:            <a href="org/w3c/css/css/format.properties">format.properties</a></dt>
                    157:          <dd>
                    158:            Available output format for the validator</dd>
                    159:          <dt>
                    160:            <a href="org/w3c/css/css/text.properties">text.properties</a></dt>
                    161:          <dd>
                    162:            text output format.</dd>
                    163:          <dt>
                    164:            <a href="org/w3c/css/css/html.properties">html.properties</a></dt>
                    165:          <dd>
                    166:            html output properties.</dd>
                    167:        </dl></li>
                    168:     </ul>

Webmaster