Home | History | Annotate | Download | only in dom

Lines Matching refs:tagname

57     def startElementNS(self, name, tagName , attrs):

69 # *a* valid tagName from the current context.
70 if tagName is None:
73 tagName = prefix + ":" + localname
75 tagName = localname
77 node = self.document.createElementNS(uri, tagName)
79 node = self.buildDocument(uri, tagName)
81 # When the tagname is not prefixed, it just appears as
114 def endElementNS(self, name, tagName):
170 def buildDocument(self, uri, tagname):
171 # Can't do that in startDocument, since we need the tagname
173 node = self.documentFactory.createDocument(uri, tagname, None)
297 def startElementNS(self, name, tagName , attrs):
298 PullDOM.startElementNS(self, name, tagName, attrs)