[Zope3-checkins] CVS: Zope3/src/zope/app/xml - w3cschemalocations.py:1.6
Fred L. Drake, Jr.
fred@zope.com
Tue, 1 Jul 2003 10:31:05 -0400
Update of /cvs-repository/Zope3/src/zope/app/xml
In directory cvs.zope.org:/tmp/cvs-serv12696
Modified Files:
w3cschemalocations.py
Log Message:
normalize whitespace
=== Zope3/src/zope/app/xml/w3cschemalocations.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/xml/w3cschemalocations.py:1.5 Fri Jun 20 09:59:38 2003
+++ Zope3/src/zope/app/xml/w3cschemalocations.py Tue Jul 1 10:31:05 2003
@@ -62,7 +62,7 @@
self._schema_uris = []
self._parser = ParserCreate(namespace_separator=" ")
self._parser.StartElementHandler = self.startElement
-
+
def startElement(self, name, attrs):
for key, value in attrs.items():
try:
@@ -84,10 +84,10 @@
# we do not take any special pains to make sure this is
# well-formed anyway; this should happen at a higher level
# (views) or will be detected at a lower layer (parsing into
- # a DOM or SAX events) anyway.
- pass
+ # a DOM or SAX events) anyway.
+ pass
except DoneParsing:
pass
-
+
def getSchemaLocations(self):
return self._schema_uris