Home | History | Annotate | Download | only in dom

Lines Matching full:systemid

1224     """Mix-in class that supports the publicId and systemId attributes."""
1227 # __slots__ = 'publicId', 'systemId'
1229 def _identified_mixin_init(self, publicId, systemId):
1231 self.systemId = systemId
1237 return self.systemId
1244 systemId = None
1269 notation = Notation(n.nodeName, n.publicId, n.systemId)
1273 entity = Entity(e.nodeName, e.publicId, e.systemId,
1290 % (newl, self.publicId, newl, self.systemId))
1291 elif self.systemId:
1292 writer.write("%s SYSTEM '%s'" % (newl, self.systemId))
1308 def __init__(self, name, publicId, systemId, notation):
1312 self._identified_mixin_init(publicId, systemId)
1343 def __init__(self, name, publicId, systemId):
1345 self._identified_mixin_init(publicId, systemId)
1409 def createDocumentType(self, qualifiedName, publicId, systemId):
1412 doctype.systemId = systemId
1660 def _create_entity(self, name, publicId, systemId, notationName):
1661 e = Entity(name, publicId, systemId, notationName)
1665 def _create_notation(self, name, publicId, systemId):
1666 n = Notation(name, publicId, systemId)
1862 node.name, node.publicId, node.systemId)
1868 notation = Notation(n.nodeName, n.publicId, n.systemId)
1874 entity = Entity(e.nodeName, e.publicId, e.systemId,