/[suikacvs]/markup/html/whatpm/Whatpm/HTML.html
Suika

Diff of /markup/html/whatpm/Whatpm/HTML.html

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

revision 1.5 by wakaba, Sun Nov 4 04:15:06 2007 UTC revision 1.7 by wakaba, Sun Nov 11 04:59:35 2007 UTC
# Line 1  Line 1 
1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2  <html xmlns="http://www.w3.org/1999/xhtml">  <html xmlns="http://www.w3.org/1999/xhtml">
3  <head>  <head>
4  <title>Whatpm::HTML - An HTML Parser</title>  <title>Whatpm::HTML - An HTML Parser and Serializer</title>
5  <link rel="stylesheet" href="http://suika.fam.cx/www/style/html/pod.css" type="text/css" />  <link rel="stylesheet" href="http://suika.fam.cx/www/style/html/pod.css" type="text/css" />
6  <link rev="made" href="mailto:admin@suika.fam.cx" />  <link rev="made" href="mailto:admin@suika.fam.cx" />
7  </head>  </head>
# Line 23  Line 23 
23                  <li><a href="#application_cache_selection_algorithm_hook">Application Cache Selection Algorithm Hook</a></li>                  <li><a href="#application_cache_selection_algorithm_hook">Application Cache Selection Algorithm Hook</a></li>
24          </ul>          </ul>
25    
26            <li><a href="#error_reports">ERROR REPORTS</a></li>
27          <li><a href="#to_do">TO DO</a></li>          <li><a href="#to_do">TO DO</a></li>
28          <li><a href="#see_also">SEE ALSO</a></li>          <li><a href="#see_also">SEE ALSO</a></li>
29          <li><a href="#author">AUTHOR</a></li>          <li><a href="#author">AUTHOR</a></li>
# Line 34  Line 35 
35  <p>  <p>
36  </p>  </p>
37  <h1><a name="name">NAME</a></h1>  <h1><a name="name">NAME</a></h1>
38  <p>Whatpm::HTML - An HTML Parser</p>  <p>Whatpm::HTML - An HTML Parser and Serializer</p>
39  <p>  <p>
40  </p>  </p>
41  <hr />  <hr />
# Line 45  Line 46 
46    my $s = q&lt;&lt;!DOCTYPE html&gt;&lt;html&gt;...&lt;/html&gt;&gt;;    my $s = q&lt;&lt;!DOCTYPE html&gt;&lt;html&gt;...&lt;/html&gt;&gt;;
47    # $doc = an empty DOM |Document| object    # $doc = an empty DOM |Document| object
48    my $on_error = sub {    my $on_error = sub {
49      my $error_code = shift;      my %error = @_;
50      warn $error_code, &quot;\n&quot;;      warn $error{type}, &quot;\n&quot;;
51    };    };
52        
53    Whatpm::HTML-&gt;parse_string ($s =&gt; $doc, $onerror);    Whatpm::HTML-&gt;parse_string ($s =&gt; $doc, $onerror);
54        
55    ## Then, |$doc| is the DOM representation of |$s|.</pre>    ## Now, |$doc| is the DOM representation of |$s|.</pre>
56  <p>  <p>
57  </p>  </p>
58  <hr />  <hr />
# Line 121  from a string containing HTML document m Line 122  from a string containing HTML document m
122    my $doc = Whatpm::HTML-&gt;parse_string    my $doc = Whatpm::HTML-&gt;parse_string
123        ($s =&gt; Whatpm::NanoDOM::Document-&gt;new, $onerror);</pre>        ($s =&gt; Whatpm::NanoDOM::Document-&gt;new, $onerror);</pre>
124  </dd>  </dd>
 <p></p>  
 <dt><strong><a name="item_get_inner_html"><em>$s</em> = Whatpm::HTML-&gt;get_inner_html (<em>$node</em>[, <em>$onerror</em>]);</a></strong><br />  
 </dt>  
 <dd>  
 Return the HTML serialization of a DOM node <em>$node</em>.  
 </dd>  
 <dd>  
 <p>The first argument, <em>$node</em>, MUST be a DOM <code>Document</code>,  
 <code>Element</code>, or <code>DocumentFragment</code> node.</p>  
 </dd>  
 <dd>  
 <p>The second argument, <em>$onerror</em>, MUST be a reference to the  
 error handling code.  This code will be invoked if a descendant  
 of <em>$node</em> is neither of <code>Element</code>, <code>Text</code>, <code>CDATASection</code>,  
 <code>Comment</code>, <code>DocumentType</code>, nor <code>EntityReference</code>, so  
 that an <code>INVALID_STATE_ERR</code> exception MUST be thrown.  
 The code will be invoked with an argument, which is the node  
 whose type is invalid.    
 The argument <em>$onerror</em> is optional; if missing, any erroneous  
 node is simply ignored.</p>  
 </dd>  
 <dd>  
 <p>The method returns a reference to the <code>inner_html</code> attribute  
 value, i.e. the HTML serialization of the <em>$node</em>.</p>  
 </dd>  
125  <p></p></dl>  <p></p></dl>
126  <p>  <p>
127  </p>  </p>
# Line 156  value, i.e. the HTML serialization of th Line 132  value, i.e. the HTML serialization of th
132  </p>  </p>
133  <h2><a name="application_cache_selection_algorithm_hook">Application Cache Selection Algorithm Hook</a></h2>  <h2><a name="application_cache_selection_algorithm_hook">Application Cache Selection Algorithm Hook</a></h2>
134  <p>Once a parser <em>$p</em> is instantiated by method <code>new</code>,  <p>Once a parser <em>$p</em> is instantiated by method <code>new</code>,
135  a <code>CODE</code> reference can be set to <code>$p-</code>{application_cache_selection}&gt;.  a <code>CODE</code> reference can be set to <code>$p-&gt;{application_cache_selection}</code>.
136  That <code>CODE</code> will be called back when the application cache selection  That <code>CODE</code> will be called back when the application cache selection
137  algorithm MUST be run per HTML5.  By default,  algorithm MUST be run per HTML5.  By default,
138  <code>$p-</code>{application_cache_selection}&gt; is set to an empty subroutine.</p>  <code>$p-&gt;{application_cache_selection}</code> is set to an empty subroutine.</p>
139    <p>The subroutine will be invoked with an argument <em>manifest_uri</em>,
140    which is set to the manifest URI when the algorithm MUST be invoked
141    with a manifest URI, or is set to <code>undef</code> when the algorithm MUST
142    be invoked without no manifest URI.</p>
143    <p>
144    </p>
145    <hr />
146    <h1><a name="error_reports">ERROR REPORTS</a></h1>
147    <p>@@ TBW</p>
148    <p>The list of the error types is available in
149    Whatpm Error Types &lt;http://suika.fam.cx/gate/2005/sw/Whatpm%20Error%20Types&gt;.</p>
150  <p>  <p>
151  </p>  </p>
152  <hr />  <hr />
# Line 174  to improve performance.</p> Line 161  to improve performance.</p>
161  </p>  </p>
162  <hr />  <hr />
163  <h1><a name="see_also">SEE ALSO</a></h1>  <h1><a name="see_also">SEE ALSO</a></h1>
164  <p>Whatpm  <p>Whatpm &lt;http://suika.fam.cx/www/markup/html/whatpm/readme&gt;.</p>
165  &lt;http://suika.fam.cx/www/markup/html/whatpm/readme&gt;</p>  <p>Whatpm Error Types
166  <p>Web Applications 1.0 Working Draft (aka HTML5)  &lt;http://suika.fam.cx/gate/2005/sw/Whatpm%20Error%20Types&gt;.</p>
167  &lt;http://whatwg.org/html5&gt;.  (Revision 792, 1 May 2007)</p>  <p>HTML5 &lt;http://whatwg.org/html5&gt;.</p>
168  <p><a href="../Whatpm/NanoDOM.html">the Whatpm::NanoDOM manpage</a></p>  <p><a href="../Whatpm/HTML/Serializer.html">the Whatpm::HTML::Serializer manpage</a>.</p>
169    <p><a href="../Whatpm/NanoDOM.html">the Whatpm::NanoDOM manpage</a>.</p>
170    <p><a href="../Whatpm/ContentChecker/HTML.html">the Whatpm::ContentChecker::HTML manpage</a>.</p>
171  <p>  <p>
172  </p>  </p>
173  <hr />  <hr />

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.7

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24