Artifact e7b5071878f8e3d9f818054e00dac627b82c40ec60a9aa362b8a3b1be763598e:

  • File doc/expat.html — part of check-in [c5d89835b8] at 2018-03-07 00:45:06 on branch trunk — Added method delete to [expat] push parsers, made the up to now method free an alias of that. To have at least for deletion some consistence about the obj cmds that tDOM creates. (user: rolf size: 27737) [more...]

<html>
<head>
<link rel="stylesheet" href="manpage.css"><title>tDOM manual: expat</title><meta name="xsl-processor" content="Jochen Loewer (loewerj@hotmail.com), Rolf Ade (rolf@pointsman.de) et. al."><meta name="generator" content="$RCSfile: tmml-html.xsl,v $ $Revision: 1.11 $"><meta charset="utf-8">
</head><body>
<div class="header">
<div class="navbar" align="center">
<a href="#SECTid0x1708960">NAME</a> · <a href="#SECTid0x160bf00">SYNOPSIS</a> · <a href="#SECTid0x16ee020">DESCRIPTION</a> · <a href="#SECTid0x16eed60">COMMAND OPTIONS</a> · <a href="#SECTid0x1746b80"> COMMAND METHODS </a> · <a href="#SECTid0x174d660">Callback Command Return Codes</a> · <a href="#SECTid0x174e1f0">SEE ALSO</a> · <a href="#SECTid0x174e5b0">KEYWORDS</a>
</div><hr class="navsep">
</div><div class="body">
    <h2><a name="SECTid0x1708960">NAME</a></h2><p class="namesection">
<b class="names">expat - </b><br>Creates an instance of an expat parser object</p>



    <h2><a name="SECTid0x160bf00">SYNOPSIS</a></h2><pre class="syntax">package require tdom

<b class="cmd">expat</b> ?<i class="m">parsername</i>? ?<i class="m">-namespace</i>? ?<i class="m">arg arg ..</i>

<b class="cmd">xml::parser</b> ?<i class="m">parsername</i>? ?<i class="m">-namespace</i>? ?<i class="m">arg arg ..</i>
</pre>
    <h2><a name="SECTid0x16ee020">DESCRIPTION</a></h2><p>The parser created with <i class="m">expat</i> or <i class="m">xml::parser</i>
(which is just another name for the same command in an own namespace) are able
to parse any kind of well-formed XML. The parsers are stream oriented XML
parser. This means that you register handler scripts with the parser prior to
starting the parse. These handler scripts are called when the parser discovers
the associated structures in the document being parsed.  A start tag is an
example of the kind of structures for which you may register a handler
script.</p><p>The parsers do not validate the XML document. They do parse the internal DTD
and, at request, external DTD and external entities, if you resolve the
identifier of the external entities with the -externalentitycommand script (see
there).</p><p>Additionly, the Tcl extension code that implements this command provides an
API for adding C level coded handlers. Up to now, there exists the parser
extension command "tdom". The handler set installed by this extension build an
in memory "tDOM" DOM tree, while the parser is parsing the input.</p><p>It is possible to register an arbitrary amount of different handler scripts
and C level handlers for most of the events. If the event occurs, they are
called in turn.</p>

    <h2><a name="SECTid0x16eed60">COMMAND OPTIONS</a></h2><dl class="optlist">
        
          <dt><b>-namespace</b></dt>

          <dd>
<p>Enables namespace parsing. You must use this option while
creating the parser with the <tt class="samp">expat</tt> or <tt class="samp">xml::parser</tt>
command. You can't enable (nor disable) namespace parsing with
<tt class="samp">&lt;parserobj&gt; configure ...</tt>.</p>
</dd>
        

        
          <dt>
<b>-final</b> <i>boolean</i>
</dt>
          

          <dd>
<p>This option indicates whether the document data next
presented to the parse method is the final part of the document. A value of "0"
indicates that more data is expected. A value of "1" indicates that no more is
expected.  The default value is "1".</p>

<p>If this option is set to "0" then the parser will not report certain errors
if the XML data is not well-formed upon end of input, such as unclosed or
unbalanced start or end tags. Instead some data may be saved by the parser
until the next call to the parse method, thus delaying the reporting of some of
the data.</p>

<p>If this option is set to "1" then documents which are not well-formed upon
end of input will generate an error.</p>
</dd>
        

        
          <dt>
<b>-baseurl</b> <i>url</i>
</dt>
          

          <dd><p>Reports the base url of the document to the
parser.</p></dd>
        

        
          <dt>
<b>-elementstartcommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with the start tag of
an element. The actual command consists of this option followed by at least two
arguments: the element type name and the attribute list.</p>

<p>The attribute list is a Tcl list consisting of name/value pairs, suitable
for passing to the array set Tcl command.</p>

<p>Example:</p>
<pre class="example">proc HandleStart {name attlist} {
    puts stderr "Element start ==&gt; $name has attributes $attlist"
}

$parser configure -elementstartcommand HandleStart

$parser parse {&lt;test id="123"&gt;&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>
<pre class="example">HandleStart text {id 123}</pre>
</dd>
        

        
          <dt>
<b>-elementendcommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with the end tag of an
element. The actual command consists of this option followed by at least one
argument: the element type name. In addition, if the -reportempty option is set
then the command may be invoked with the -empty configuration option to
indicate whether it is an empty element. See the description of the
-reportempty option for an example. </p>

<p>Example: </p>
<pre class="example">proc HandleEnd {name} {
    puts stderr "Element end ==&gt; $name"
}

$parser configure -elementendcommand HandleEnd

$parser parse {&lt;test id="123"&gt;&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>
<pre class="example">
HandleEnd test
</pre>
</dd>
        


        
          <dt>
<b>-characterdatacommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with character data in
the document, ie. text. The actual command consists of this option followed by
one argument: the text.</p>

<p>It is not guaranteed that character data will be passed to the application
in a single call to this command. That is, the application should be prepared
to receive multiple invocations of this callback with no intervening callbacks
from other features.</p>

<p>Example: </p>

<pre class="example">proc HandleText {data} {
    puts stderr "Character data ==&gt; $data"
}

$parser configure -characterdatacommand HandleText

$parser parse {&lt;test&gt;this is a test document&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>

<pre class="example">HandleText {this is a test document}</pre>
</dd>
        


        
          <dt>
<b>-processinginstructioncommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with processing
instructions in the document. The actual command consists of this option
followed by two arguments: the PI target and the PI data.</p>

<p>Example: </p>

<pre class="example">proc HandlePI {target data} {
    puts stderr "Processing instruction ==&gt; $target $data"
}

$parser configure -processinginstructioncommand HandlePI

$parser parse {&lt;test&gt;&lt;?special this is a processing instruction?&gt;&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked: </p>

<pre class="example">
HandlePI special {this is a processing instruction}
</pre>
            </dd>
        

        
          <dt>
<b> -notationdeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with notation
declaration in the document. The actual command consists of this option
followed by four arguments: the notation name, the base uri of the document
(this means, whatever was set by the -baseurl option), the system identifier
and the public identifier. The notation name is never empty, the other
arguments may be.</p></dd>
        

        
          <dt>
<b> -externalentitycommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with references to
external entities in the document. The actual command consists of this option
followed by three arguments: the base uri, the system identifier of the entity
and the public identifier of the entity. The base uri and the public identifier
may be the empty list.</p>

<p>This handler script has to return a tcl list consisting of three
elements. The first element of this list signals, how the external entity is
returned to the processor. At the moment, the three allowed types are
"string", "channel" and "filename". The second
element of the list has to be the (absolute) base URI of the external entity to
be parsed.  The third element of the list are data, either the already read
data out of the external entity as string in the case of type
"string", or the name of a tcl channel, in the case of type
"channel", or the path to the external entity to be read in case of
type "filename". Behind the scene, the external entity referenced by
the returned Tcl channel, string or file name will be parsed with an expat
external entity parser with the same handler sets as the main parser. If
parsing of the external entity fails, the whole parsing is stopped with an
error message. If a Tcl command registered as externalentitycommand isn't able
to resolve an external entity it is allowed to return TCL_CONTINUE. In this
case, the wrapper give the next registered externalentitycommand a try. If no
externalentitycommand is able to handle the external entity parsing stops with
an error.</p>

<p>Example:</p>

<pre class="example">proc externalEntityRefHandler {base systemId publicId} {
    if {![regexp {^[a-zA-Z]+:/} $systemId]}  {
        regsub {^[a-zA-Z]+:} $base {} base
        set basedir [file dirname $base]
        set systemId "[set basedir]/[set systemId]"
    } else {
        regsub {^[a-zA-Z]+:} $systemId systemId
    }
    if {[catch {set fd [open $systemId]}]} {
        return -code error \
                -errorinfo "Failed to open external entity $systemId"
    }
    return [list channel $systemId $fd]
}

set parser [expat -externalentitycommand externalEntityRefHandler \
                  -baseurl "file:///local/doc/doc.xml" \
                  -paramentityparsing notstandalone]
$parser parse {&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE test SYSTEM "test.dtd"&gt;
&lt;test/&gt;}
</pre>

<p>This would result in the following command being invoked:</p>

<pre class="example">
externalEntityRefHandler file:///local/doc/doc.xml test.dtd {}
</pre>

<p>External entities are only tried to resolve via this handler script, if
necessary. This means, external parameter entities triggers this handler only,
if -paramentityparsing is used with argument "always" or if
-paramentityparsing is used with argument "notstandalone" and the
document isn't marked as standalone.</p>
            </dd>
        
        
        
          <dt>
<b> -unknownencodingcommand</b> <i>script</i>
</dt>
          

          <dd><p>Not implemented at Tcl level.</p></dd>
        

        
          <dt>
<b>-startnamespacedeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with start scope of
namespace declarations in the document. The actual command consists of this
option followed by two arguments: the namespace prefix and the namespace
URI. For an xmlns attribute, prefix will be the empty list.  For an
xmlns="" attribute, uri will be the empty list. The call to the start
and end element handlers occur between the calls to the start and end namespace
declaration handlers.</p></dd>
        

        
          <dt>
<b> -endnamespacedeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with end scope of
namespace declarations in the document. The actual command consists of this
option followed by the namespace prefix as argument. In case of an xmlns
attribute, prefix will be the empty list. The call to the start and end element
handlers occur between the calls to the start and end namespace declaration
handlers.</p></dd>
        

        
          <dt>
<b> -commentcommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with comments in the
document. The actual command consists of this option followed by one argument:
the comment data.</p>

<p>Example:</p>

<pre class="example">
proc HandleComment {data} {
    puts stderr "Comment ==&gt; $data"
}

$parser configure -commentcommand HandleComment

$parser parse {&lt;test&gt;&lt;!-- this is &lt;obviously&gt; a comment --&gt;&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>

<pre class="example">
HandleComment { this is &lt;obviously&gt; a comment }
</pre>
            </dd>
        
        
        
          <dt>
<b> -notstandalonecommand</b> <i>script</i>
</dt>
          

          <dd><p>This Tcl command is called, if the document is not
standalone (it has an external subset or a reference to a parameter entity, but
does not have standalone="yes"). It is called with no additional
arguments.</p></dd>
        

        
          <dt>
<b> -startcdatasectioncommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with the start of a
CDATA section.  It is called with no additional arguments.</p></dd>
        

        
          <dt>
<b> -endcdatasectioncommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with the end of a CDATA
section.  It is called with no additional arguments.</p></dd>
        

        
          <dt>
<b> -elementdeclcommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with element
declarations. The actual command consists of this option followed by two
arguments: the name of the element and the content model. The content model arg
is a tcl list of four elements. The first list element specifies the type of
the XML element; the six different possible types are reported as
"MIXED", "NAME", "EMPTY", "CHOICE",
"SEQ" or "ANY". The second list element reports the
quantifier to the content model in XML Syntax ("?", "*" or
"+") or is the empty list. If the type is "MIXED", then the
quantifier will be "{}", indicating an PCDATA only element, or
"*", with the allowed elements to intermix with PCDATA as tcl list as
the fourth argument. If the type is "NAME", the name is the third
arg; otherwise the third argument is the empty list. If the type is
"CHOICE" or "SEQ" the fourth argument will contain a list
of content models build like this one. The "EMPTY", "ANY",
and "MIXED" types will only occur at top level.</p>

<p>Examples:</p>

<pre class="example">
proc elDeclHandler {name content} {
     puts "$name $content"
}

set parser [expat -elementdeclcommand elDeclHandler]
$parser parse {&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE test [
&lt;!ELEMENT test (#PCDATA)&gt; 
]&gt;
&lt;test&gt;foo&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>

<pre class="example">
test {MIXED {} {} {}}

$parser reset
$parser parse {&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE test [
&lt;!ELEMENT test (a|b)&gt;
]&gt;
&lt;test&gt;&lt;a/&gt;&lt;/test&gt;}
</pre>

<p>This would result in the following command being invoked:</p>

<pre class="example">
elDeclHandler test {CHOICE {} {} {{NAME {} a {}} {NAME {} b {}}}}
</pre>
</dd>
        


        
          <dt>
<b> -attlistdeclcommand</b> <i>script</i>
</dt>
          

          <dd>
<p>Specifies a Tcl command to associate with attlist
declarations. The actual command consists of this option followed by five
arguments.  The Attlist declaration handler is called for *each* attribute. So
a single Attlist declaration with multiple attributes declared will generate
multiple calls to this handler. The arguments are the element name this
attribute belongs to, the name of the attribute, the type of the attribute, the
default value (may be the empty list) and a required flag. If this flag is true
and the default value is not the empty list, then this is a "#FIXED"
default.</p>

<p>Example:</p>

<pre class="example">
proc attlistHandler {elname name type default isRequired} {
    puts "$elname $name $type $default $isRequired"
}

set parser [expat -attlistdeclcommand attlistHandler]
$parser parse {&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE test [
&lt;!ELEMENT test EMPTY&gt;
&lt;!ATTLIST test
          id      ID      #REQUIRED
          name    CDATA   #IMPLIED&gt;
]&gt;
&lt;test/&gt;}
</pre>

<p>This would result in the following commands being invoked:</p>

<pre class="example">
attlistHandler test id ID {} 1
attlistHandler test name CDATA {} 0
</pre>
</dd>
        

        
          <dt>
<b> -startdoctypedeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with the start of the
DOCTYPE declaration. This command is called before any DTD or internal subset
is parsed.  The actual command consists of this option followed by four
arguments: the doctype name, the system identifier, the public identifier and a
boolean, that shows if the DOCTYPE has an internal subset.</p></dd>
        

        
          <dt>
<b> -enddoctypedeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with the end of the
DOCTYPE declaration. This command is called after processing any external
subset.  It is called with no additional arguments.</p></dd>
        

        
          <dt>
<b> -paramentityparsing</b> <i>never|notstandalone|always</i>
</dt>
          

          <dd><p>"never" disables expansion of parameter entities,
"always" expands always and "notstandalone" only, if the
document isn't "standalone='no'". The default ist "never"</p></dd>
        
        
        
          <dt>
<b> -entitydeclcommand</b> <i>script</i>
</dt>
          

          <dd><p>Specifies a Tcl command to associate with any entity
declaration. The actual command consists of this option followed by seven
arguments: the entity name, a boolean identifying parameter entities, the value
of the entity, the base uri, the system identifier, the public identifier and
the notation name. According to the type of entity declaration some of this
arguments may be the empty list.</p></dd>
        


        
          <dt>
<b> -ignorewhitecdata</b> <i>boolean</i>
</dt>
          

          <dd><p>If this flag is set, element content which contain only
whitespaces isn't reported with the
<tt class="samp">-characterdatacommand</tt>.</p></dd>
        

        
          <dt>
<b> -ignorewhitespace</b> <i>boolean</i>
</dt>
          

          <dd>Another name for <i class="m"> -ignorewhitecdata</i>; see there.
            </dd>
        

        
          <dt>
<b> -handlerset</b> <i>name</i>
</dt>
          

          <dd><p>This option sets the Tcl handler set scope for the
configure options. Any option value pair following this option in the
same call to the parser are modifying the named Tcl handler set. If
you don't use this option, you are modifying the default Tcl handler
set, named "default".</p></dd>
        

        
          <dt>
<b> -noexpand</b> <i>boolean</i>
</dt>
          

          <dd>
<p>Normally, the parser will try to expand references to
entities defined in the internal subset. If this option is set to a true value
this entities are not expanded, but reported literal via the default
handler. <b>Warning:</b> If you set this option to true and doesn't install a
default handler (with the -defaultcommand option) for every handler set of the
parser all internal entities are silent lost for the handler sets without a
default handler.</p>
            </dd>
        

        
          <dt>
<b>-useForeignDTD</b> <i>&lt;boolen&gt;</i>
</dt>
          
          <dd>If &lt;boolen&gt; is true and the document does not have an
external subset, the parser will call the -externalentitycommand script with
empty values for the systemId and publicID arguments. This option must be set,
before the first piece of data is parsed. Setting this option, after the
parsing has started has no effect. The default is not to use a foreign DTD. The
default is restored, after resetting the parser. Pleace notice, that a
-paramentityparsing value of "never" (which is the default) suppresses any call
to the -externalentitycommand script. Pleace notice, that, if the document also
doesn't have an internal subset, the -startdoctypedeclcommand and
enddoctypedeclcommand scripts, if set, are not called.</dd>
        

      </dl>
    <h2><a name="SECTid0x1746b80"> COMMAND METHODS </a></h2><dl class="commandlist">
        
          <dt>
<b class="cmd">parser</b> <b class="method">configure</b> <i class="m">option value ?option value?</i>
</dt>

          <dd><p>Sets configuration options for the parser. Every command
option, except <i class="m">-namespace</i> can be set or modified with this method.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">cget</b> <i class="m">?-handlerset name? option</i>
</dt>

          <dd>
<p>Return the current configuration value option for the
parser.</p> 
          <p>If the -handlerset option is used, the configuration for the
named handler set is returned.</p>
          </dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">currentmarkup</b>
</dt>

          <dd><p>Returns the current markup as found in the XML, if
          called from within one of its markup event handler script
          (-elementstartcommand, -elementendcommand, -commentcommand
          and -processinginstructioncommand). Otherwise it return the
          empty string.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">delete</b>
</dt>

          <dd><p>Deletes the parser and the parser command. A parser cannot
be deleted from within one of its handler callbacks (neither directly nor
indirectly) and will raise a tcl error in this case.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">free</b>
</dt>

          <dd><p>Another name to call the method <i class="m">delete</i>, see
          there.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">get</b> <i class="m">-specifiedattributecount|-idattributeindex|-currentbytecount|-currentlinenumber|-currentcolumnnumber|-currentbyteindex</i>
</dt>
          <dd>
<dl class="optlist">
              
                <dt><b>-specifiedattributecount</b></dt>

                <dd><p> Returns the number of the attribute/value pairs
passed in last call to the elementstartcommand that were specified in the
start-tag rather than defaulted. Each attribute/value pair counts as 2; thus
this corresponds to an index into the attribute list passed to the
elementstartcommand.</p></dd>
              

              
                <dt><b>-idattributeindex</b></dt>
                
                <dd><p>Returns the index of the ID attribute passed in the
last call to XML_StartElementHandler, or -1 if there is no ID attribute.  Each
attribute/value pair counts as 2; thus this corresponds to an index into the
attributes list passed to the elementstartcommand.</p></dd>
              
              
              
                <dt><b>-currentbytecount</b></dt>

                <dd><p>Return the number of bytes in the current event.
Returns 0 if the event is in an internal entity.</p></dd>
              

              
                <dt><b>-currentlinenumber</b></dt>

                <dd><p> Returns the line number of the current parse
location.</p></dd>
              

              
                <dt><b>-currentcolumnnumber</b></dt>

                <dd><p> Returns the column number of the current parse
location.</p></dd>
              

              
                <dt><b>-currentbyteindex</b></dt>

                <dd><p> Returns the byte index of the current parse
location.</p></dd>
              
            </dl>
<p>Only one value may be requested at a time.</p>
</dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">parse</b> <i class="m">data</i>
</dt>

          <dd><p>Parses the XML string <i class="m">data</i>. The event callback
scripts will be called, as there triggering events happens. This method cannot
be used from within a callback (neither directly nor indirectly) of
the parser to be used and will raise an error in this case.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">parsechannel</b> <i class="m">channelID</i>
</dt>
          <dd><p>Reads the XML data out of the tcl channel <i class="m">channelID</i>
(starting at the current access position, without any seek) up to the end of
file condition and parses that data. The channel encoding is respected. Use the
helper proc tDOM::xmlOpenFile out of the tDOM script library to open a file, if
you want to use this method. This method cannot
be used from within a callback (neither directly nor indirectly) of
the parser to be used and will raise an error in this case.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">parsefile</b> <i class="m">filename</i>
</dt>

          <dd><p>Reads the XML data directly out of the file with the
filename <i class="m">filename</i> and parses that data. This is done with low level file
operations. The XML data must be in US-ASCII, ISO-8859-1, UTF-8 or UTF-16
encoding. If applicable, this is the fastest way, to parse XML data. This
method cannot be used from within a callback (neither directly nor indirectly)
of the parser to be used and will raise an error in this case.</p></dd>
        

        
          <dt>
<b class="cmd">parser</b> <b class="method">reset</b>
</dt>

          <dd><p>Resets the parser in preparation for parsing another
document. A parser cannot be reset from within one of its handler callbacks
(neither directly nor indirectly) and will raise a tcl error in this
cases.</p></dd>
        
      </dl>

    <h2><a name="SECTid0x174d660">Callback Command Return Codes</a></h2><p>A script invoked for any of the parser callback commands, such as
-elementstartcommand, -elementendcommand, etc, may return an error code other
than "ok" or "error". All callbacks may in addition return
"break" or "continue".</p><p>If a callback script returns an "error" error code then
processing of the document is terminated and the error is propagated in the
usual fashion.</p><p>If a callback script returns a "break" error code then all
further processing of every handler script out of this Tcl handler set is
suppressed for the further parsing. This does not influence any other handler
set.</p><p>If a callback script returns a "continue" error code then
processing of the current element, and its children, ceases for every handler
script out of this Tcl handler set and processing continues with the next
(sibling) element. This does not influence any other handler set.</p><p>If a callback script returns a "return" error
code then parsing is canceled altogether, but no error is raised.</p>

    <h2><a name="SECTid0x174e1f0">SEE ALSO</a></h2><p class="seealso">
<a href="expatapi.html">expatapi</a>, <a href="tdomcmd.html">tdom</a>
</p>

    <h2><a name="SECTid0x174e5b0">KEYWORDS</a></h2><p class="keywords"><a class="keyword" href="keyword-index.html#KW-SAX">SAX</a></p>
  </div><hr class="navsep"><div class="navbar" align="center">
<a class="navaid" href="index.html">Contents</a> · <a class="navaid" href="category-index.html">Index</a> · <a class="navaid" href="keyword-index.html">Keywords</a> · <a class="navaid" href="http://tdom.org">Repository</a>
</div>
</body>
</html>