+ album-3.10, getmail-4.3.14, zile-2.2.9.
[pkgsrc.git] / textproc / expatobjc / DESCR
1 Expatobjc is a small library that allows you to use James Clark's
2 Expat XML parser library more easily with Objective C.  It provides an
3 object-oriented interface to the library which is similar to SAX2.
4
5 To use it, make a subclass of the XMLParser object that will override
6 any or all of the following methods based on what parts of the XML
7 parser document you want to read and analyze:
8
9 startElement - for element start tags
10 endElement - for element end tags
11 characters - for PCDATA stuff
12 processingInstruction - for XML processing instructions
13 comment - for XML comments
14 startCdata - for the start of a CDATA section
15 endCdata - for the end of a CDATA section
16 externalEntity - for an external entity declaration
17 unparsedEntityDecl - for an unparsed entity declaration
18 startPrefixMapping - for the start of a namespace prefix declaration
19 endPrefixMapping - for the end of a namespace prefix declaration
20 defaultHandler - for any text that is not parsed above