/[suikacvs]/markup/html/whatpm/readme.en.html
Suika

Diff of /markup/html/whatpm/readme.en.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by wakaba, Sat Sep 22 12:50:47 2007 UTC revision 1.11 by wakaba, Sat Sep 29 04:45:09 2007 UTC
# Line 23  project.</p> Line 23  project.</p>
23  <dd><dl>  <dd><dl>
24  <dt><a href="Whatpm/ContentChecker.html"><code>Whatpm::ContentChecker</code></a></dt>  <dt><a href="Whatpm/ContentChecker.html"><code>Whatpm::ContentChecker</code></a></dt>
25    <dd>A DOM5 HTML (in-memory representation of a document) conformance    <dd>A DOM5 HTML (in-memory representation of a document) conformance
26    checker with a partial support for Atom 1.0.</dd>    checker with a partial support for Atom 1.0.  (See also
27      <a href="#demo-html-parser">demo</a>.)</dd>
28  <dt><a href="Whatpm/ContentType.html"><code>Whatpm::ContentType</code></a></dt>  <dt><a href="Whatpm/ContentType.html"><code>Whatpm::ContentType</code></a></dt>
29    <dd>An implementation of HTML5 Content Type sniffing algorithm.</dd>    <dd>An implementation of HTML5 Content Type sniffing algorithm.</dd>
30  <dt><a href="Whatpm/CSS/SelectorsParser.html"><code>Whatpm::CSS::SelectorsParser</code></a></dt>  <dt><a href="Whatpm/CSS/SelectorsParser.html"><code>Whatpm::CSS::SelectorsParser</code></a></dt>
31    <dd>A <a href="http://www.w3.org/TR/css3-selectors/#grouping">group of    <dd>A <a href="http://www.w3.org/TR/css3-selectors/#grouping">group of
32    selectors</a> parser.</dd>    selectors</a> parser.  (See also <a href="#demo-css-parser">demo</a>.)</dd>
33  <dt><a href="Whatpm/CSS/SelectorsSerializer.html"><code>Whatpm::CSS::SelectorsSerializer</code></a></dt>  <dt><a href="Whatpm/CSS/SelectorsSerializer.html"><code>Whatpm::CSS::SelectorsSerializer</code></a></dt>
34    <dd>A <a href="http://www.w3.org/TR/css3-selectors/#grouping">group of    <dd>A <a href="http://www.w3.org/TR/css3-selectors/#grouping">group of
35    selectors</a> serializer.</dd>    selectors</a> serializer.  (See also <a href="#spec-ssft">specification</a>
36      and <a href="#demo-css-parser">demo</a>.)</dd>
37  <dt><a href="Whatpm/CSS/Tokenizer.html"><code>Whatpm::CSS::Tokenizer</code></a></dt>  <dt><a href="Whatpm/CSS/Tokenizer.html"><code>Whatpm::CSS::Tokenizer</code></a></dt>
38    <dd>A CSS tokenizer.</dd>    <dd>A CSS tokenizer.  (See also <a href="#demo-css-parser">demo</a>.)</dd>
39  <dt><a href="Whatpm/HTML.html"><code>Whatpm::HTML</code></a></dt>  <dt><a href="Whatpm/HTML.html"><code>Whatpm::HTML</code></a></dt>
40    <dd>An implementation of HTML5 parsing algorithm, fragment    <dd>An implementation of HTML5 parsing algorithm, fragment
41    parsing, and fragment serialization algorithms.  It can be used    parsing, and fragment serialization algorithms.  It can be used
42    to convert a string into DOM, or <i lang="">vice versa</i>.</dd>    to convert a string into DOM, or <i lang="">vice versa</i>.
43      (See also <a href="#demo-html-parser">demo</a>.)</dd>
44  <dt><a href="Whatpm/HTMLTable.html"><code>Whatpm::HTMLTable</code></a></dt>  <dt><a href="Whatpm/HTMLTable.html"><code>Whatpm::HTMLTable</code></a></dt>
45    <dd>An implementation of the HTML5 table algorithm.  It can be    <dd>An implementation of the HTML5 table algorithm.  It can be
46    used to extract a table structure from a DOM <code>table</code>    used to extract a table structure from a DOM <code>table</code>
47    element node.</dd>    element node.  (See also <a href="#demo-html-table">demo</a>.)</dd>
48  <dt><a href="Whatpm/IMTChecker.html"><code>Whatpm::IMTChecker</code></a></dt>  <dt><a href="Whatpm/IMTChecker.html"><code>Whatpm::IMTChecker</code></a></dt>
49    <dd>An Internet Media Type (<abbr>aka</abbr> MIME type) label    <dd>An Internet Media Type (<abbr>aka</abbr> MIME type) label
50    conformance checker.</dd>    conformance checker.</dd>
# Line 56  project.</p> Line 59  project.</p>
59    
60    <p>Note also that some modules have no documentation for now.</p>    <p>Note also that some modules have no documentation for now.</p>
61    </dd>    </dd>
62  <dt>Specification</dt>  <dt id=spec>Specification</dt>
63    <dd><dl>    <dd><dl>
64      <dt><a href="http://suika.fam.cx/www/markup/selectors/ssft/ssft"><abbr title="Selectors Serialization Format for Testing">SSFT</abbr>      <dt id=spec-ssft><a href="http://suika.fam.cx/www/markup/selectors/ssft/ssft"><abbr title="Selectors Serialization Format for Testing">SSFT</abbr>
65      Specification</a></dt>      Specification</a></dt>
66        <dd>The specification for the serialization format used for        <dd>The specification for the serialization format used for
67        testing Selectors-related modules.</dd>        testing Selectors-related modules.</dd>
# Line 76  project.</p> Line 79  project.</p>
79  <h2>Demo</h2>  <h2>Demo</h2>
80    
81  <ul>  <ul>
82  <li><a href="http://suika.fam.cx/gate/2007/html/parser-interface">HTML5 parser  <li id=demo-html-parser-nanodom><a href="http://suika.fam.cx/gate/2007/html/parser-interface">HTML5 parser
83  and checker demo</a></li>  and checker demo</a>
84  <li><a href="http://suika.fam.cx/gate/2007/html/parser-manakai-interface">HTML5  (<a href="http://suika.fam.cx/gate/cvs/*checkout*/webroot/gate/2007/html/parser.cgi">source</a>,
85  parser and checker demo, with manakai's DOM implementation</a></li>  with <a href="Whatpm/NanoDOM.html">a lightweight non-conforming
86  <li><a href="http://suika.fam.cx/gate/2007/html/table-interface">HTML5 table  DOM implementation</a>)</li>
87  structure visualization demo</a></li>  <li id=demo-html-parser-manakai><a href="http://suika.fam.cx/gate/2007/html/parser-manakai-interface">HTML5
88  <li><a href="http://suika.fam.cx/gate/2007/css/parser-interface">CSS tokenizer  parser and checker demo, with manakai's DOM implementation</a>
89  demo</a></li>  (<a href="http://suika.fam.cx/gate/cvs/*checkout*/webroot/gate/2007/html/parser-manakai.cgi">source</a>)</li>
90    <li id=demo-html-table><a href="http://suika.fam.cx/gate/2007/html/table-interface">HTML5 table
91    structure visualization demo</a>
92    (<a href="http://suika.fam.cx/gate/cvs/*checkout*/webroot/gate/2007/html/table.cgi">source</a>)</li>
93    <li id=demo-css-parser><a href="http://suika.fam.cx/gate/2007/css/parser-interface">CSS tokenizer
94    demo</a>
95    (<a href="http://suika.fam.cx/gate/cvs/*checkout*/webroot/gate/2007/css/parser.cgi">source</a>)</li>
96  </ul>  </ul>
97  </div>  </div>
98    
# Line 115  charlib</a></dt> Line 124  charlib</a></dt>
124    in <a href="http://suika.fam.cx/www/2006/manakai/">manakai</a>.    in <a href="http://suika.fam.cx/www/2006/manakai/">manakai</a>.
125    They are not required in practice.</dd>    They are not required in practice.</dd>
126  <dt><a href="http://search.cpan.org/~makamaka/JSON-1.14/"><code>JSON</code></a></dt>  <dt><a href="http://search.cpan.org/~makamaka/JSON-1.14/"><code>JSON</code></a></dt>
127    <dd><em>Testing</em> for <code>Whatpm::HTML</code>    <dd><em>Testing</em> for <code>Whatpm::HTML</code> and
128      <code>Whatpm::CSS::Tokenizer</code>
129    depends on <a href="http://search.cpan.org/~makamaka/JSON-1.14/"><code>JSON</code> and related modules</a>.    depends on <a href="http://search.cpan.org/~makamaka/JSON-1.14/"><code>JSON</code> and related modules</a>.
130    They are not required in practice.</dd>    They are not required in practice.</dd>
131  </dl>  </dl>

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24