[Zope3-checkins] CVS: zopeproducts/xmldom - core.py:1.9 expatbuilder.py:1.2 loadsave.py:1.2 saxbuilder.py:1.2 traversal.py:1.2 xmlextended.py:1.4
Philipp von Weitershausen
philikon@philikon.de
Thu, 19 Jun 2003 17:38:46 -0400
Update of /cvs-repository/zopeproducts/xmldom
In directory cvs.zope.org:/tmp/cvs-serv15362
Modified Files:
core.py expatbuilder.py loadsave.py saxbuilder.py traversal.py
xmlextended.py
Log Message:
Fixed up module docstrings.
=== zopeproducts/xmldom/core.py 1.8 => 1.9 ===
--- zopeproducts/xmldom/core.py:1.8 Thu Jun 19 16:43:42 2003
+++ zopeproducts/xmldom/core.py Thu Jun 19 17:38:45 2003
@@ -11,6 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""
+XML DOM core implementation
+
+See the W3C DOM specification more information: http://www.w3.org/DOM/
+
+$Id$
+"""
__metaclass__ = type
=== zopeproducts/xmldom/expatbuilder.py 1.1 => 1.2 ===
--- zopeproducts/xmldom/expatbuilder.py:1.1 Sat Jun 7 06:13:50 2003
+++ zopeproducts/xmldom/expatbuilder.py Thu Jun 19 17:38:45 2003
@@ -11,10 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""
+XML DOM implementation
+Create a DOM tree from a string or file using the Expat parser.
-"""Facility to use the Expat parser to load a ParsedXML.DOM instance
-from a string or file."""
+$Id$
+"""
# Warning!
#
=== zopeproducts/xmldom/loadsave.py 1.1 => 1.2 ===
--- zopeproducts/xmldom/loadsave.py:1.1 Sat Jun 7 06:13:50 2003
+++ zopeproducts/xmldom/loadsave.py Thu Jun 19 17:38:45 2003
@@ -11,7 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Implementation of the DOM Level 3 'Load' feature."""
+"""
+XML DOM Implementation
+
+Implementation of the DOM Level 3 'Load' feature.
+
+$Id$
+"""
import core
import expatbuilder
=== zopeproducts/xmldom/saxbuilder.py 1.1 => 1.2 ===
--- zopeproducts/xmldom/saxbuilder.py:1.1 Sat Jun 7 06:13:50 2003
+++ zopeproducts/xmldom/saxbuilder.py Thu Jun 19 17:38:45 2003
@@ -11,7 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Constructor for ParsedXML.DOM, based on a SAX parser."""
+"""
+XML DOM Implementation
+
+Create a DOM tree using a SAX parser.
+
+$Id$
+"""
import os
import urllib
=== zopeproducts/xmldom/traversal.py 1.1 => 1.2 ===
--- zopeproducts/xmldom/traversal.py:1.1 Sat Jun 7 06:13:50 2003
+++ zopeproducts/xmldom/traversal.py Thu Jun 19 17:38:45 2003
@@ -11,10 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Implementation of DOM Level 2 Traversal.
+"""
+XML DOM Impelmentation
-Based on the W3C recommendation at:
+DOM Level 2 Traversal, based on the W3C recommendation at:
http://www.w3.org/TR/DOM-Level-2-Traversal-Range/
+
+$Id$
"""
# This code could be sped up.
=== zopeproducts/xmldom/xmlextended.py 1.3 => 1.4 ===
--- zopeproducts/xmldom/xmlextended.py:1.3 Thu Jun 19 16:43:42 2003
+++ zopeproducts/xmldom/xmlextended.py Thu Jun 19 17:38:45 2003
@@ -11,7 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Acquisition-based implementation of the DOM 'XML' feature classes."""
+"""
+Acquisition-based implementation of the DOM 'XML' feature classes.
+
+See the W3C DOM specification more information: http://www.w3.org/DOM/
+
+$Id$
+"""
import core
from core import DOMProperty