mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
e7d05a7642
Lightweight XML Parser
21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
Plaintext
Parsifal is minimal non-validating XML parser written in ANSI C. Parsifal
|
|
implements the subset of SAX2 including namespace support.
|
|
|
|
Parsifal can be used for parsing XML based messages (such as SOAP and RSS) and
|
|
for application specific data processing e.g. config files, data files etc.
|
|
Parsifal can also be used for limited document-oriented processing and for
|
|
parsing modular documents because it contains supports for internal and
|
|
external general entities - it doesn't support currently parameter entities or
|
|
other DTD features. Parsifal can be used for processing large data files and
|
|
streams too since its SAX based and consumes very little memory not to mention
|
|
it is fast enough for most purposes 'cos its written in C.
|
|
|
|
Using Parsifal in place of large XML processing libraries (e.g. libxml, xerces)
|
|
or even in the place of small Expat (which is considerably bigger and more
|
|
complicated) can be justified for limited memory environments and in
|
|
applications requiring bundled parser. If you need higher level tools, for
|
|
example library supporting DTD validation or dom/xpath processing, you should
|
|
look for other libs of course.
|
|
|
|
WWW: http://www.saunalahti.fi/~samiuus/toni/xmlproc/
|