Annotation of 2002/css-validator/about.html.en, revision 1.16

1.1       ot          1: <?xml version="1.0" encoding="utf-8"?>
                      2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      3:     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
                      4: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
                      5:   <head>
1.16    ! ot          6:     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1.1       ot          7:     <title>About the W3C CSS Validation Service</title>
                      8:     <link rev="made" href="mailto:www-validator-css@w3.org" />
                      9:     <link rev="start" href="./" title="Home Page" />
                     10:     <style type="text/css" media="all">
1.2       ot         11:        @import "style/base.css";
                     12:        @import "style/docs.css";
1.1       ot         13:     </style>
1.16    ! ot         14:     <meta name="revision" content="$Id: about.html.en,v 1.15 2009/01/08 22:40:33 ot Exp $" />
1.1       ot         15:   </head>
                     16: 
                     17:   <body>
1.6       ot         18:     <div id="banner">
                     19:      <h1 id="title"><a href="http://www.w3.org/"><img alt="W3C" width="110" height="61" id="logo" src="./images/w3c.png" /></a>
                     20:      <a href="./"><span>CSS Validation Service</span></a></h1>
                     21:      <p id="tagline">
                     22:        Check Cascading Style Sheets (CSS) and (X)HTML documents with style sheets
                     23:      </p>
                     24:     </div>
                     25:    <div class="doc">
1.1       ot         26: 
                     27:       <h2>About the CSS Validator</h2>
                     28: 
                     29: <h3 id="TableOfContents">Table of contents</h3>
                     30: <div id="toc">
                     31: <ol>
                     32:   <li>About this Service
                     33:   <ol>
                     34: <li><a href="#what">What is this? Do I need it?</a></li>
                     35: <li><a href="#help">The explanation above is incomprehensible! Help!</a></li>
                     36: <li><a href="#reference">So, this is the authority on what is correct CSS and what isn't?</a></li>
1.8       ot         37: <li><a href="#validCSS">What does “Valid CSS” mean? Which version of CSS does this validator use?</a></li>
1.1       ot         38: <li><a href="#free">How much does it cost?</a></li>
                     39: <li><a href="#who">Who wrote this tool? Who maintains it?</a></li>
                     40: <li><a href="#contact">How do I contact the authors? Report a bug?</a></li>
                     41: <li><a href="#participate">Can I help?</a></li>
                     42:   </ol>
                     43:   </li>
                     44:   <li>Developers' corner
                     45:   <ol>
                     46:     <li><a href="#code">What is the CSS Validator written in? Is the source available somewhere?</a></li>
                     47:     <li><a href="#install">Can I install and run the CSS Validator myself?</a></li>
                     48:     <li><a href="#api">Can I build an application upon this validator? Is there an API?</a></li>
                     49:   </ol>
                     50:   </li>
                     51: </ol>
                     52: </div><!-- toc -->
                     53: <h3 id="about">About this Service</h3>
                     54: 
                     55: <h4 id="what">What is this? Do I need it?</h4>
                     56: 
                     57: <p>The W3C CSS Validation Service is a free software created by the W3C 
                     58: to help Web designers and Web developers check Cascading Style Sheets (CSS). 
                     59: It can be used on this <a href="./">free service</a> on the web, or downloaded 
                     60: and used either as a java program, or as a java servlet on a Web server.</p>
                     61: 
                     62: <p>Do <em>you</em> need it? If you are a Web developer or a Web designer, this 
                     63: tool will be an invaluable ally. Not only will it compare your style sheets to the 
                     64: CSS specifications, helping you find errors, typos, or incorrect uses of CSS, it will
                     65: also tell you when your CSS poses some risks in terms of usability.</p>
                     66: 
                     67: <h4 id="help">The explanation above is incomprehensible! Help!</h4>
                     68: <p>Most documents on the Web are written in a computer language called HTML. This language
                     69: can be used to create pages with structured information, links, and multimedia objects. For 
                     70: color, text, and layout, HTML uses a styling language called CSS, short for "Cascading Style Sheets". 
                     71: What this tool does is help people authoring CSS check, and fix if necessary, their CSS Style Sheets.</p>
                     72: 
                     73: <h4 id="reference">So, this is the authority on what is correct CSS and what isn't?</h4>
                     74: <p>No. It is a helpful and reliable tool, but a software tool, and like every software, it has some
                     75: <a href="http://www.w3.org/Bugs/Public/buglist.cgi?product=CSSValidator">bugs and issues</a>.
                     76: The actual reference on Cascading Style Sheets are the <a href="http://www.w3.org/Style/CSS/#specs">CSS 
                     77: Specifications</a>.</p>
                     78: 
1.8       ot         79: <h4 id="validCSS">What does “Valid CSS” mean? Which version of CSS does this validator use?</h4>
                     80: <p>According to the <a href="http://www.w3.org/TR/CSS21/conform.html#valid-style-sheet" 
                     81: title="CSS 2.1 Specification – Conformance: requirements and recommendations">CSS 2.1 Specification</a>:
                     82: <q cite="http://www.w3.org/TR/CSS21/conform.html">The validity of a style sheet depends on the level of 
                     83: CSS used for the style sheet. […]  valid CSS 2.1 style sheet must be written according to the grammar of CSS 2.1. 
                     84: Furthermore, it must contain only at-rules, property names, and property values defined in this specification.</q></p>
                     85: 
                     86: <p>By default, this validator checks style sheets against the grammar, properties and values defined in the 
                     87: <a href="http://www.w3.org/TR/CSS21/" 
                     88: title="Cascading Style Sheets Level 2 Revision 1 (CSS&nbsp;2.1) Specification">CSS&nbsp;2.1</a> specification, 
                     89: but other CSS profiles can be checked against by using the options.</p>
                     90: 
                     91: <p>CSS is an evolving language, and it is considered by many that “CSS” is a single grammar 
                     92: (the one defined in the latest specification) with a number of properties and acceptable 
                     93: values defined in various profiles.In a future version of this validator, the default behavior may be to check
                     94: style sheets against that latest “CSS grammar” and the cloud of all standardized CSS properties and values.</p>
                     95: 
1.1       ot         96: <h4 id="free">How much does it cost?</h4>
                     97: <p>Nothing. The service is free. The source is <a href="DOWNLOAD.html">open</a> and you are free
                     98: to download it, use it, modify it, distribute it, 
                     99: and <a href="http://www.w3.org/Consortium/Legal/copyright-software">more</a>.
                    100: If you really like it, you are welcome to <a href="#participate">join the project</a> or donate to W3C via the
                    101:  <a href="http://www.w3.org/Consortium/sup">W3C supporters program</a>, but nobody forces you to.</p>
                    102: 
                    103: <h4 id="who">Who wrote this tool? Who maintains it?</h4>
                    104: <p>W3C maintains and hosts the tool, thanks to the work and contributions by W3C staff,
                    105: volunteer developers and translators. See the <a href="thanks.html">credits and acknowledgments page</a>
                    106: for details. <a href="#participate">You too can help</a>.</p>
                    107: 
                    108: <h4 id="participate">Can I help?</h4>
                    109: <p>Of course. If you are a java programmer, you can help the CSS Validator project by 
                    110: checking out the <a href="#code">code</a>,
                    111: adopting and fixing <a href="http://www.w3.org/Bugs/Public/buglist.cgi?product=CSSValidator">bugs</a>,
                    112: or helping build new features.</p>
                    113: <p>But you do not need to be a coder to help build and maintain this tool: you can also help improve the 
                    114: documentation, participate in translating the validator in your language, or subscribe to the 
                    115: <a href="http://lists.w3.org/Archives/Public/www-validator-css/">mailing-list</a> and discuss about the tool
                    116: or help other users.</p>
                    117: 
                    118: <h4 id="contact">Any other question?</h4>
                    119: <p>If you have any question regarding CSS or the CSS validator, check out the available
                    120: <a href="Email">mailing-lists and forums</a>. But before that, make sure that your question
                    121: or comment is not covered already by the <a href="http://www.websitedev.de/css/validator-faq">CSS Validator 
                    122: <acronym title="Frequently Asked Questions">FAQ</acronym> document</a>.</p>
                    123: 
                    124: 
                    125: <h3 id="dev">Developers' corner</h3>
                    126: <h4 id="code">What is the CSS Validator written in? Is the source available somewhere?</h4>
                    127: <p>The W3C CSS validator is written using the java language, and yes, its source 
                    128: is available, using CVS: you can 
                    129: <a href="http://dev.w3.org/cvsweb/2002/css-validator/">browse the code online</a> 
                    130: or follow the instructions there to download the whole source tree. For a quick
                    131: overview of the classes used in the CSS Validator code, check out the 
                    132: <a href="README.html">README</a> file.</p>
                    133: 
                    134: <h4 id="install">Can I install and run the CSS Validator myself?</h4>
                    135: <p>It is possible to download and install the CSS validator, and to run it either from the command line, or 
                    136: as a servlet in a Web server. Read the <a href="RUN.html">instructions</a> for installation and use.</p>
                    137: 
                    138: <h4 id="api">Can I build an application upon this validator? Is there an API?</h4>
1.4       ot        139: <p>Yes, and <a href="api.html">yes</a>. The CSS Validator has a (RESTful) <a href="api.html">SOAP interface</a>
1.1       ot        140: which should make it reasonably easy to build applications (Web or otherwise) upon it. Good manners and 
                    141: respectful usage of shared resources are of course customary: make sure your applications sleep() between
                    142: calls to the validator, or install and run your own instance of the validator.</p>
1.6       ot        143: </div>
1.1       ot        144:    <ul class="navbar"  id="menu">
                    145:        <li><strong><a href="./" title="Home page for the W3C CSS Validation Service">Home</a></strong> <span class="hideme">|</span></li>
1.5       ot        146:         <li><a href="documentation.html" title="Documentation for the W3C CSS Validation Service">Documentation</a> <span class="hideme">|</span></li>
                    147:         <li><a href="DOWNLOAD.html" title="Download the CSS validator">Download</a> <span class="hideme">|</span></li>
                    148:         <li><a href="Email.html" title="How to provide feedback on this service">Feedback</a> <span class="hideme">|</span></li>
                    149:         <li><a href="thanks.html" title="Credits and Acknowlegments">Credits</a><span class="hideme">|</span></li>
1.1       ot        150: 
                    151:       </ul>
                    152: 
1.3       ot        153:        <ul id="lang_choice">
1.11      ot        154:      
1.13      ot        155:      <li><a href="about.html.de"
1.11      ot        156:          lang="de"
                    157:          xml:lang="de"
                    158:          hreflang="de"
                    159:          rel="alternate">Deutsch</a>
                    160:      </li>
                    161:      
1.13      ot        162:      <li><a href="about.html.en"
1.11      ot        163:          lang="en"
                    164:          xml:lang="en"
                    165:          hreflang="en"
                    166:          rel="alternate">English</a>
                    167:      </li>
                    168:      
1.13      ot        169:      <li><a href="about.html.es"
1.11      ot        170:          lang="es"
                    171:          xml:lang="es"
                    172:          hreflang="es"
                    173:          rel="alternate">Español</a>
                    174:      </li>
                    175:      
1.13      ot        176:      <li><a href="about.html.fr"
1.11      ot        177:          lang="fr"
                    178:          xml:lang="fr"
                    179:          hreflang="fr"
                    180:          rel="alternate">Français</a>
                    181:      </li>
                    182:      
1.13      ot        183:      <li><a href="about.html.ko"
1.11      ot        184:          lang="ko"
                    185:          xml:lang="ko"
                    186:          hreflang="ko"
                    187:          rel="alternate">한국어</a>
                    188:      </li>
                    189:      
1.13      ot        190:      <li><a href="about.html.it"
1.11      ot        191:          lang="it"
                    192:          xml:lang="it"
                    193:          hreflang="it"
                    194:          rel="alternate">Italiano</a>
                    195:      </li>
                    196:      
1.13      ot        197:      <li><a href="about.html.nl"
1.11      ot        198:          lang="nl"
                    199:          xml:lang="nl"
                    200:          hreflang="nl"
                    201:          rel="alternate">Nederlands</a>
                    202:      </li>
                    203:      
1.13      ot        204:      <li><a href="about.html.ja"
1.11      ot        205:          lang="ja"
                    206:          xml:lang="ja"
                    207:          hreflang="ja"
                    208:          rel="alternate">日本語</a>
                    209:      </li>
                    210:      
1.13      ot        211:      <li><a href="about.html.pl-PL"
1.11      ot        212:          lang="pl-PL"
                    213:          xml:lang="pl-PL"
                    214:          hreflang="pl-PL"
                    215:          rel="alternate">Polski</a>
                    216:      </li>
                    217:      
1.13      ot        218:      <li><a href="about.html.pt-BR"
1.11      ot        219:          lang="pt-BR"
                    220:          xml:lang="pt-BR"
                    221:          hreflang="pt-BR"
                    222:          rel="alternate">Português</a>
                    223:      </li>
                    224:      
1.13      ot        225:      <li><a href="about.html.ru"
1.11      ot        226:          lang="ru"
                    227:          xml:lang="ru"
                    228:          hreflang="ru"
                    229:          rel="alternate">Русский</a>
                    230:      </li>
                    231:      
1.13      ot        232:      <li><a href="about.html.sv"
1.11      ot        233:          lang="sv"
                    234:          xml:lang="sv"
                    235:          hreflang="sv"
                    236:          rel="alternate">Svenska</a>
                    237:      </li>
                    238:      
1.13      ot        239:      <li><a href="about.html.zh-cn"
1.11      ot        240:          lang="zh-cn"
                    241:          xml:lang="zh-cn"
                    242:          hreflang="zh-cn"
                    243:          rel="alternate">简体中文</a>
                    244:      </li>
                    245: </ul>
                    246: 
                    247: 
                    248: 
1.3       ot        249: 
                    250: 
1.5       ot        251: 
1.12      ot        252: 
                    253: 
1.6       ot        254:    <div id="footer">
1.1       ot        255:    <p id="activity_logos">
1.6       ot        256: 
1.1       ot        257:       <a href="http://www.w3.org/QA/" title="W3C's Quality Assurance Activity, bringing you free Web quality tools and more"><img src="http://www.w3.org/QA/2002/12/qa-small.png" alt="QA" /></a><a href="http://www.w3.org/Style/CSS/learning" title="Learn more about Cascading Style Sheets"><img src="images/woolly-icon" alt="CSS" /></a>
                    258:    </p>
                    259: 
1.15      ot        260: <p id="support_logo">
                    261: <a href="http://www.w3.org/QA/Tools/Donate">
                    262: <img src="http://www.w3.org/QA/Tools/I_heart_validator" alt="I heart Validator logo" title=" Validators Donation Program" />
                    263: </a>
                    264: </p>
1.1       ot        265: 
                    266:     <p class="copyright">
1.14      ot        267:       <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> &copy; 1994-2009
1.1       ot        268:       <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a>&reg;
                    269: 
                    270:       (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>,
                    271:       <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
                    272:       <a href="http://www.keio.ac.jp/">Keio</a>),
                    273:       All Rights Reserved.
                    274:       W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
                    275:       <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>,
                    276:       <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a>
                    277: 
                    278:       and <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a>
                    279: 
                    280:       rules apply. Your interactions with this site are in accordance
                    281:       with our <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Public">public</a> and
                    282:       <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Members">Member</a> privacy
                    283:       statements.
                    284:     </p>
                    285: 
1.6       ot        286: </div>
1.1       ot        287:   </body>
                    288: 
                    289: </html>

Webmaster