Browse Source

----------------------------------------------------------------------

Modified Files:
 	ZSI/wstools/XMLSchema.py -- fixed a few syntax errors in Restriction class,
		and removed "self.facets" in ComplexType which was never used?

 ----------------------------------------------------------------------
main
Joshua Boverhof 19 years ago
parent
commit
bc552a5fe1
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      XMLSchema.py

+ 3
- 4
XMLSchema.py View File

@@ -2288,7 +2288,6 @@ class ComplexType(XMLSchemaComponent,\
XMLSchemaComponent.__init__(self, parent) XMLSchemaComponent.__init__(self, parent)
self.annotation = None self.annotation = None
self.content = None self.content = None
self.facets = []
self.attr_content = None self.attr_content = None


def isMixed(self): def isMixed(self):
@@ -2316,7 +2315,6 @@ class ComplexType(XMLSchemaComponent,\
def fromDom(self, node): def fromDom(self, node):
self.setAttributes(node) self.setAttributes(node)
contents = self.getContents(node) contents = self.getContents(node)
facets = {}
indx = 0 indx = 0
num = len(contents) num = len(contents)
@@ -2785,6 +2783,7 @@ class SimpleType(XMLSchemaComponent,\
XMLSchemaComponent.__init__(self, parent) XMLSchemaComponent.__init__(self, parent)
self.annotation = None self.annotation = None
self.content = None self.content = None
self.facets = None


def getAttributeBase(self): def getAttributeBase(self):
return XMLSchemaComponent.getAttribute(self, 'base') return XMLSchemaComponent.getAttribute(self, 'base')
@@ -2798,6 +2797,7 @@ class SimpleType(XMLSchemaComponent,\
return None return None


def fromDom(self, node): def fromDom(self, node):
self.facets = []
self.setAttributes(node) self.setAttributes(node)
contents = self.getContents(node) contents = self.getContents(node)
content = [] content = []
@@ -2812,8 +2812,7 @@ class SimpleType(XMLSchemaComponent,\
content.append(AnonymousSimpleType(self)) content.append(AnonymousSimpleType(self))
content[-1].fromDom(contents[indx]) content[-1].fromDom(contents[indx])
elif component in RestrictionMarker.facets: elif component in RestrictionMarker.facets:
facets[component] = contents[indx]
self.facets.append(facets)
self.facets.append(contents[indx])
else: else:
raise SchemaError, 'Unknown component (%s)' %(i.getTagName()) raise SchemaError, 'Unknown component (%s)' %(i.getTagName())
self.content = tuple(content) self.content = tuple(content)


Loading…
Cancel
Save