コード例 #1
0
ファイル: trefNode.py プロジェクト: UGentPortaal/RGT-tool
 def __init__(self, ownerDoc):
     BaseTextNode.__init__(self, ownerDoc, 'tref')
     XlinkAttributes.__init__(self)
     self._allowedSvgChildNodes.update({
         self.SVG_ANIMATE_NODE, self.SVG_ANIMATE_COLOR_NODE,
         self.SVG_SET_NODE
     })
コード例 #2
0
 def __init__(self, ownerDoc, tagName):
     BaseTextNode.__init__(self, ownerDoc, tagName)
     self._allowedSvgChildNodes.update(self.SVG_GROUP_DESCRIPTIVE_ELEMENTS)
コード例 #3
0
ファイル: trefNode.py プロジェクト: UGentPortaal/RGT-tool
 def __init__(self, ownerDoc):
     BaseTextNode.__init__(self, ownerDoc, 'tref')
     XlinkAttributes.__init__(self)
     self._allowedSvgChildNodes.update({self.SVG_ANIMATE_NODE, self.SVG_ANIMATE_COLOR_NODE, self.SVG_SET_NODE})
コード例 #4
0
ファイル: altGlyphNode.py プロジェクト: UGentPortaal/RGT-tool
 def __init__(self, ownerDoc):
     BaseTextNode.__init__(self, ownerDoc, 'altGlyph')
     XlinkAttributes.__init__(self)
     PositionAttributes.__init__(self)
     self.allowAllSvgNodesAsChildNodes= True
コード例 #5
0
 def __init__(self, ownerDoc):
     BaseTextNode.__init__(self, ownerDoc, 'altGlyph')
     XlinkAttributes.__init__(self)
     PositionAttributes.__init__(self)
     self.allowAllSvgNodesAsChildNodes = True
コード例 #6
0
 def __init__(self, ownerDoc, tagName):
     BaseTextNode.__init__(self, ownerDoc, tagName)
     self._allowedSvgChildNodes.update(self.SVG_GROUP_DESCRIPTIVE_ELEMENTS)