summaryrefslogtreecommitdiff
path: root/sys/src/cmd/python/Doc/lib/xmldompulldom.tex
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@localhost>2011-05-03 11:25:13 +0000
committercinap_lenrek <cinap_lenrek@localhost>2011-05-03 11:25:13 +0000
commit458120dd40db6b4df55a4e96b650e16798ef06a0 (patch)
tree8f82685be24fef97e715c6f5ca4c68d34d5074ee /sys/src/cmd/python/Doc/lib/xmldompulldom.tex
parent3a742c699f6806c1145aea5149bf15de15a0afd7 (diff)
add hg and python
Diffstat (limited to 'sys/src/cmd/python/Doc/lib/xmldompulldom.tex')
-rw-r--r--sys/src/cmd/python/Doc/lib/xmldompulldom.tex61
1 files changed, 61 insertions, 0 deletions
diff --git a/sys/src/cmd/python/Doc/lib/xmldompulldom.tex b/sys/src/cmd/python/Doc/lib/xmldompulldom.tex
new file mode 100644
index 000000000..a2ce66708
--- /dev/null
+++ b/sys/src/cmd/python/Doc/lib/xmldompulldom.tex
@@ -0,0 +1,61 @@
+\section{\module{xml.dom.pulldom} ---
+ Support for building partial DOM trees}
+
+\declaremodule{standard}{xml.dom.pulldom}
+\modulesynopsis{Support for building partial DOM trees from SAX events.}
+\moduleauthor{Paul Prescod}{paul@prescod.net}
+
+\versionadded{2.0}
+
+\module{xml.dom.pulldom} allows building only selected portions of a
+Document Object Model representation of a document from SAX events.
+
+
+\begin{classdesc}{PullDOM}{\optional{documentFactory}}
+ \class{xml.sax.handler.ContentHandler} implementation that ...
+\end{classdesc}
+
+
+\begin{classdesc}{DOMEventStream}{stream, parser, bufsize}
+ ...
+\end{classdesc}
+
+
+\begin{classdesc}{SAX2DOM}{\optional{documentFactory}}
+ \class{xml.sax.handler.ContentHandler} implementation that ...
+\end{classdesc}
+
+
+\begin{funcdesc}{parse}{stream_or_string\optional{,
+ parser\optional{, bufsize}}}
+ ...
+\end{funcdesc}
+
+
+\begin{funcdesc}{parseString}{string\optional{, parser}}
+ ...
+\end{funcdesc}
+
+
+\begin{datadesc}{default_bufsize}
+ Default value for the \var{bufsize} parameter to \function{parse()}.
+ \versionchanged[The value of this variable can be changed before
+ calling \function{parse()} and the new value will
+ take effect]{2.1}
+\end{datadesc}
+
+
+\subsection{DOMEventStream Objects \label{domeventstream-objects}}
+
+
+\begin{methoddesc}[DOMEventStream]{getEvent}{}
+ ...
+\end{methoddesc}
+
+\begin{methoddesc}[DOMEventStream]{expandNode}{node}
+ ...
+\end{methoddesc}
+
+\begin{methoddesc}[DOMEventStream]{reset}{}
+ ...
+\end{methoddesc}