xml.sax.handler.feature_external_ges

xml.sax.handler.feature_external_ges value: "http://xml.org/sax/features/external-general-entities" true: Include all external general (text) entities. false: Do not include external general entities. access: (parsing) read-only; (not parsing) read/write

xml.sax.handler.feature_external_pes

xml.sax.handler.feature_external_pes value: "http://xml.org/sax/features/external-parameter-entities" true: Include all external parameter entities, including the external DTD subset. false: Do not include any external parameter entities, even the external DTD subset. access: (parsing) read-only; (not parsing) read/write

xml.sax.handler.feature_namespace_prefixes

xml.sax.handler.feature_namespace_prefixes value: "http://xml.org/sax/features/namespace-prefixes" true: Report the original prefixed names and attributes used for Namespace declarations. false: Do not report attributes used for Namespace declarations, and optionally do not report original prefixed names (default). access: (parsing) read-only; (not parsing) read/write

xml.sax.handler.ErrorHandler.error()

ErrorHandler.error(exception) Called when the parser encounters a recoverable error. If this method does not raise an exception, parsing may continue, but further document information should not be expected by the application. Allowing the parser to continue may allow additional errors to be discovered in the input document.

xml.sax.handler.EntityResolver

class xml.sax.handler.EntityResolver Basic interface for resolving entities. If you create an object implementing this interface, then register the object with your Parser, the parser will call the method in your object to resolve all external entities.

xml.sax.handler.DTDHandler.notationDecl()

DTDHandler.notationDecl(name, publicId, systemId) Handle a notation declaration event.

xml.sax.handler.EntityResolver.resolveEntity()

EntityResolver.resolveEntity(publicId, systemId) Resolve the system identifier of an entity and return either the system identifier to read from as a string, or an InputSource to read from. The default implementation returns systemId.

xml.sax.handler.DTDHandler.unparsedEntityDecl()

DTDHandler.unparsedEntityDecl(name, publicId, systemId, ndata) Handle an unparsed entity declaration event.

xml.sax.handler.ErrorHandler

class xml.sax.handler.ErrorHandler Interface used by the parser to present error and warning messages to the application. The methods of this object control whether errors are immediately converted to exceptions or are handled in some other way.

xml.sax.handler.DTDHandler

class xml.sax.handler.DTDHandler Handle DTD events. This interface specifies only those DTD events required for basic parsing (unparsed entities and attributes).