コード例 #1
0
 def getElementsByTagName(self, tagName):
     return Element.getElementsByTagName(self, string.upper(tagName))
コード例 #2
0
 def setAttribute(self, name, value):
     Element.setAttribute(self, string.upper(name), value)
コード例 #3
0
 def __init__(self, ownerDocument, nodeName):
     tagName = string.upper(nodeName)
     Element.__init__(self, ownerDocument, tagName, EMPTY_NAMESPACE,
                      EMPTY_PREFIX, tagName)
コード例 #4
0
ファイル: HTMLElement.py プロジェクト: Birdbird/StartPage
 def setAttribute(self, name, value):
     Element.setAttribute(self, string.upper(name), value)
コード例 #5
0
ファイル: HTMLElement.py プロジェクト: Birdbird/StartPage
 def getElementsByTagName(self, tagName):
     return Element.getElementsByTagName(self, string.upper(tagName))
コード例 #6
0
ファイル: HTMLElement.py プロジェクト: Birdbird/StartPage
 def __init__(self, ownerDocument, nodeName):
     tagName = string.upper(nodeName)
     Element.__init__(self, ownerDocument, tagName,
                      EMPTY_NAMESPACE, EMPTY_PREFIX,tagName)
コード例 #7
0
ファイル: HTMLElement.py プロジェクト: carvalhomb/tsmells
 def __init__(self, ownerDocument, nodeName):
     tagName = string.upper(nodeName)
     Element.__init__(self, ownerDocument, tagName, '', '',tagName)