XML SAX Handler.
GSSAXHandler is a callback-based interface to the XML parser that operates in a similar (though not identical) manner to SAX.
Each GSSAXHandler object is associated with a GSXMLParser object. As parsing progresses, the mathods of the GSSAXHandler are invoked by the parser, so the handler is able to deal with the elements and entities being parsed.
The callback methods in the GSSAXHandler class do nothing - it is intended that you subclass GSSAXHandler and override them.
Create a new SAX handler.
Return pointer to xmlSAXHandler structure.
Return the parser object with which this handler is associated. This may occasionally be useful.
Called when the document start being processed.
Called when the document end has been detected.
Called if the document is standalone.
Called when an opening tag has been processed.
Called when the end of an element has been detected.
Handle an attribute that has been read by the parser.
Receiving some chars from the parser.
Receiving some ignorable whitespaces from the parser.
A processing instruction has been parsed.
A comment has been parsed.
Called when a pcdata block has been parsed.
An old global namespace has been parsed.
Called when found a error.
Called when found a fatal error.
Called when found a warning.
Does this document have an internal subset?
Does this document have an external subset.
Callback on internal subset declaration. Return YES if handled, NO if you want the parser to handle it.
Callback on external subset declaration. Return YES if handled, NO if you want the parser to handle it.
This method controls the loading of external entities into the system. If it returns an empty string, the entity is not loaded. If it returns a filename, the entity is loaded from that file. If it returns nil, the default entity loading mechanism is used.
The default entity loading mechanism is to construct a file name from the locationURL, by replacing all path separators with underscores, then attempt to locate that file in the DTDs resource directory of the main bundle, and all the standard system locations.
As a special case, the default loader examines the publicID and if it is a GNUstep DTD, the loader constructs a special name from the ID (by replacing dots with underscores and spaces with hyphens) and looks for a file with that name and a '.dtd' extension in the GNUstep bundles.
Get an entity by name.
Get a parameter entity by name.
A namespace has been parsed.
What to do when a notation declaration has been parsed.
An entity definition has been parsed.
An attribute definition has been parsed.
An element definition has been parsed.
What to do when an unparsed entity declaration is parsed.
Called when an entity reference is detected.