Lines Matching refs:publicId
240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, argument
243 doctypeName, publicId, systemId)
310 base, systemId, publicId, notationName): argument
316 node = self.document._create_entity(entityName, publicId,
327 def notation_decl_handler(self, notationName, base, systemId, publicId): argument
328 node = self.document._create_notation(notationName, publicId, systemId)
347 def external_entity_ref_handler(self, context, base, systemId, publicId): argument
637 if doctype.publicId:
639 % (doctype.publicId, doctype.systemId))
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
680 if entity.publicId:
682 % (s, entity.publicId, entity.systemId)
695 def external_entity_ref_handler(self, context, base, systemId, publicId): argument
715 self, context, base, systemId, publicId)
892 def start_doctype_decl_handler(self, name, publicId, systemId, argument