mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-13 23:35:30 +00:00
More tweaks.
This commit is contained in:
parent
44fb9e4fce
commit
97a9edbf30
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,8 +9,11 @@ doc/mxml.man
|
||||
libmxml.1.dylib
|
||||
libmxml.a
|
||||
libmxml.dylib
|
||||
libmxml.sl
|
||||
libmxml.sl.1
|
||||
libmxml.so
|
||||
libmxml.so.1
|
||||
libmxml.so.1.5
|
||||
mxml.list
|
||||
mxml.pc
|
||||
mxmldoc
|
||||
|
37
mxml.list.in
37
mxml.list.in
@ -30,32 +30,27 @@ $PICFLAG=@PICFLAG@
|
||||
%copyright 2003-2017 by Michael R Sweet
|
||||
%vendor Michael R Sweet
|
||||
%license ${srcdir}/COPYING
|
||||
%readme ${srcdir}/README
|
||||
%readme ${srcdir}/README.md
|
||||
%version @VERSION@
|
||||
|
||||
%description <<EOF
|
||||
Mini-XML is a small XML parsing library that you can use to read
|
||||
XML and XML-like data files in your application without
|
||||
requiring large non-standard libraries. Mini-XML provides the
|
||||
following functionality:
|
||||
Mini-XML is a small XML parsing library that you can use to read XML data files
|
||||
or strings in your application without requiring large non-standard libraries.
|
||||
Mini-XML provides the following functionality:
|
||||
|
||||
- Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded
|
||||
XML files and strings.
|
||||
- Data is stored in a linked-list tree structure, preserving
|
||||
the XML data hierarchy.
|
||||
- Supports arbitrary element names, attributes, and
|
||||
attribute values with no preset limits, just available
|
||||
memory.
|
||||
- Supports integer, real, opaque ("cdata"), and text data
|
||||
types in "leaf" nodes.
|
||||
- Functions for creating and managing trees of data.
|
||||
- "Find" and "walk" functions for easily locating and
|
||||
navigating trees of data.
|
||||
- Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and
|
||||
strings.
|
||||
- Data is stored in a linked-list tree structure, preserving the XML data
|
||||
hierarchy.
|
||||
- SAX (streamed) reading of XML files and strings to minimize memory usage.
|
||||
- Supports arbitrary element names, attributes, and attribute values with no
|
||||
preset limits, just available memory.
|
||||
- Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.
|
||||
- Functions for creating and managing trees of data.
|
||||
- "Find" and "walk" functions for easily locating and navigating trees of data.
|
||||
|
||||
Mini-XML doesn't do validation or other types of processing on
|
||||
the data based upon schema files or other sources of definition
|
||||
information, nor does it support character entities other than
|
||||
those required by the XML specification.
|
||||
Mini-XML doesn't do validation or other types of processing on the data
|
||||
based upon schema files or other sources of definition information.
|
||||
EOF
|
||||
|
||||
# Executables
|
||||
|
Loading…
Reference in New Issue
Block a user