Commit Graph

50 Commits

Author SHA1 Message Date
Michael Sweet
48c3c62521 Add mxmlElementAttrGetByIndex and mxmlElementAttrGetCount (Issue #185) 2017-04-23 13:12:39 -04:00
Michael Sweet
3700ebd2c3 Add libmxml1.dll target and support for mingw cross-compilation (Issue #188) 2017-04-23 12:21:38 -04:00
Michael Sweet
e6146472e6 Make EPUB generation conditional on the presence of ZLIB (again). 2017-04-05 09:47:24 -04:00
Michael Sweet
7c2551e996 Switch to using hand-rolled ZIP container "library" for EPUB files. 2017-04-04 16:16:17 -04:00
Michael Sweet
24c7481d65 Add EPUB target, libarchive tests. 2017-03-31 13:38:06 -04:00
Michael Sweet
6ac1fb23f4 Use vasprintf when available.
Use strlcpy when available.

Add xcode project.
2017-03-29 19:04:41 -04:00
Michael Sweet
be9a76ffdb More changes for cross compilation support (Issue #188) 2017-03-29 15:53:52 -04:00
Michael Sweet
150195f8e1 Fix cross-compilation so that we don't run locally-built targets when cross-
compiling.
2017-03-29 11:23:29 -04:00
Michael Sweet
2b94fdd0dd Add (limited) cross-compilation support (Issue #188) 2017-03-29 11:02:47 -04:00
Michael Sweet
89a9742c0e Bump version to 2.11.
Update copyrights and web site addresses.

New logo image following msweet.org template.
2017-03-22 14:51:16 -04:00
Michael R Sweet
d8c0ba9007 mxmlDelete used a recursive algorithm which could require large amounts of
stack space depending on the file (Bug #549)

Bump version to 2.10.
2016-06-11 20:51:49 +00:00
Michael R Sweet
21f436f36c Fix loading of text values with MXML_NO_CALLBACK or MXML_TEXT_CALLBACK (Bug #502)
Update unit test program to validate fix and cleanup output so that we can get
proper error messages.
2014-10-19 17:21:48 +00:00
Michael R Sweet
6471e5ccd4 Fixed a memory leak when loading invalid XML (Bug #496) 2014-01-05 03:21:00 +00:00
Michael R Sweet
7f6103a0df Update configure script (STR #120) 2011-03-24 05:02:54 +00:00
Michael R Sweet
97ca6dc424 Updated the source headers to reference the Mini-XML license and its exceptions
to the LGPL2 (STR #108)
2010-09-19 05:26:46 +00:00
Michael R Sweet
9ac6418218 Add long long support for printf-style functions. 2009-04-18 17:05:52 +00:00
Michael R Sweet
59e1bbbb7a Add support for generating Xcode documentation sets.
Fix a few Clang-detected issues.
2008-11-28 10:56:50 +00:00
Michael R Sweet
ee8df0fe52 Bump version to 2.5.
Add --heading option to place contact before table-of-contents and intro.

Tweak the mxmldoc test suite.

Use " instead of ' for attribute values.

Quote titles, etc. as needed.

Move TOC and HTML header generation to separate functions in preparation for
frame support.
2008-01-26 20:50:28 +00:00
Michael R Sweet
b6661a118c Add pthread support. 2007-09-22 21:00:56 +00:00
Michael R Sweet
d6d842e60a Bump version to 2.4.
Added mxmlElementDeleteAttr() function (STR #59).
2007-09-15 20:03:15 +00:00
Michael R Sweet
30feac1369 Add mxml_isspace() local Unicode implementation of isspace() with inlining
when possible (STR #48)
2007-09-09 07:27:08 +00:00
Michael R Sweet
a50d089c23 Add --with-archflags option.
Add datarootdir definition to silence new autoconf's brain damaged new
datarootdir variable (which as far as I can see is the same as the old
datadir, which is set to datarootdir all the time...)
2007-07-20 23:52:25 +00:00
Michael R Sweet
9fb36b4a2f Added snprintf() emulation function for test program (STR #32) 2007-04-18 13:14:10 +00:00
Michael R Sweet
c27692f2d0 Add the _CRT_SECURE_NO_DEPRECATE definition when building on VC++
2005 (STR #36)
2007-04-18 12:58:36 +00:00
Michael R Sweet
cb7c6c2311 Add user_data and ref_count members to mxml_node_t structure.
Add mxmlRelease() and mxmlRetain() for reference-counted node management.

Add mxmlSetWrapMargin() to control wrapping of XML output.
2007-04-18 01:08:58 +00:00
Michael R Sweet
10d3ab47d7 Fix link option order. 2006-09-11 00:29:01 +00:00
Michael R Sweet
f470dbf3c0 Sun compilers don't support -O2 2006-07-25 19:11:31 +00:00
Michael R Sweet
a5ea819842 Bump version to 2.3.
Add @since ...@ comments.

Fix parsing of @...@ comments.

Add comments to end of each list item.

Use "-Os -g" as the default optimization with GCC.

Change string functions to use _mxml prefix instead.
2005-10-13 18:27:00 +00:00
Michael R Sweet
89237c9280 Bump DSO version for new functions... 2005-08-10 19:30:58 +00:00
Michael R Sweet
4ecca8b1bd Whoops, no 2.2.3 release... 2005-08-10 19:28:15 +00:00
Michael R Sweet
cc95be7bed Add mxmlNewCDATA() and mxmlSetCDATA() functions.
Bump version to 2.2.3.

Update docos.
2005-08-05 14:17:19 +00:00
Michael R Sweet
87410f7b09 Add debug stuff. 2005-06-09 13:20:57 +00:00
Michael R Sweet
19b8ed648f Add MXML_IGNORE and MXML_IGNORE_CB to allow whitespace to be
ignored in element-only XML files.
2005-06-07 23:43:45 +00:00
Michael R Sweet
63cd5de2a0 Fix bug in custom data with whitespace.
Prep for 2.2.2 release.
2005-05-19 14:56:05 +00:00
Michael R Sweet
d05a2f8d52 Fixed an XML output bug in mxmldoc.
The "make install" target now uses the install command to set the
proper permissions on UNIX/Linux/OSX.
2005-04-24 23:23:59 +00:00
Michael R Sweet
7232c88dad Add shared library support. 2005-02-26 03:10:23 +00:00
Michael R Sweet
f5971df74b Added support for CDATA (STR #14, STR #15)
Updated comment and processing instruction handling - no entity
support per XML specification.

Added checking for invalid comment termination ("--->" is not
allowed)

Fixed test program to work with new ?xml handling.
2005-01-29 07:19:38 +00:00
Michael R Sweet
7ec9c5924f Update PCL driver to set PJL page size for DesignJet 1050C (PR #5219) 2004-11-18 17:04:17 +00:00
Michael R Sweet
725aaec2d8 Doco updates. 2004-06-21 10:58:27 +00:00
Michael R Sweet
afdd149dad Fix configure script. 2004-05-21 03:10:33 +00:00
Michael R Sweet
6b8ae18b75 Commit new configure script. 2004-05-21 02:06:32 +00:00
Michael R Sweet
08896f33e5 pkg-config support.
Update mxmldoc to produce XML conforming to the schema.

Update the schema so that it works.

Add version number to XML output.
2004-05-02 22:02:36 +00:00
Michael R Sweet
337baeddb5 New "set" and formatted string methods.
Prep for new "standard" opaque, integer, etc. callbacks.

Add new vsnprintf check.

Drop old string function checks for functions we don't actually use.
2003-09-28 12:44:39 +00:00
Michael R Sweet
6531fd7d8f Add --with-ansi configure option to avoid using non-ANSI strdup() function. 2003-07-27 23:11:40 +00:00
Michael R Sweet
54428c284f Add strdup emulation as needed.
Bump version to 1.1.
2003-07-20 13:41:17 +00:00
Michael R Sweet
8ff6b5ea68 Fix configure script handling of uname. 2003-06-15 01:37:32 +00:00
Michael R Sweet
e53bff5519 Add mxml library manpage. 2003-06-15 01:22:37 +00:00
Michael R Sweet
868e694d8d Add man page, packaging files. 2003-06-15 00:44:34 +00:00
Michael R Sweet
c1093723a9 Add -Wall when compiling with GCC.
Add ctype.h include...
2003-06-04 00:30:04 +00:00
Michael R Sweet
7a51d3c414 Initial revision 2003-06-03 19:46:29 +00:00