From kwaclaw at users.sourceforge.net Wed Jul 2 22:01:17 2003 From: kwaclaw at users.sourceforge.net (Karl Waclawek) Date: Thu Jul 3 00:01:21 2003 Subject: [Expat-checkins] expat/lib xmltok_impl.c,1.9,1.10 Message-ID: Update of /cvsroot/expat/expat/lib In directory sc8-pr-cvs1:/tmp/cvs-serv30743 Modified Files: xmltok_impl.c Log Message: Expat would report an incorrect "Unlosed token" error when expanding %percent; in the second of these entity declarations: This patch was submitted by James Clark on the xml-dev mailing list. Index: xmltok_impl.c =================================================================== RCS file: /cvsroot/expat/expat/lib/xmltok_impl.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- xmltok_impl.c 20 Sep 2002 03:42:43 -0000 1.9 +++ xmltok_impl.c 3 Jul 2003 04:01:14 -0000 1.10 @@ -882,7 +882,7 @@ const char **nextTokPtr) { if (ptr == end) - return XML_TOK_PARTIAL; + return -XML_TOK_PERCENT; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_S: case BT_LF: case BT_CR: case BT_PERCNT: From fdrake at users.sourceforge.net Tue Jul 15 09:20:37 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Tue Jul 15 11:20:41 2003 Subject: [Expat-checkins] expat/lib expat.h,1.53,1.54 Message-ID: Update of /cvsroot/expat/expat/lib In directory sc8-pr-cvs1:/tmp/cvs-serv10818/lib Modified Files: expat.h Log Message: - bump the versioning information - start describing the changes in 1.95.7 Index: expat.h =================================================================== RCS file: /cvsroot/expat/expat/lib/expat.h,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- expat.h 13 Mar 2003 02:17:48 -0000 1.53 +++ expat.h 15 Jul 2003 15:20:35 -0000 1.54 @@ -926,7 +926,7 @@ */ #define XML_MAJOR_VERSION 1 #define XML_MINOR_VERSION 95 -#define XML_MICRO_VERSION 6 +#define XML_MICRO_VERSION 7 #ifdef __cplusplus } From fdrake at users.sourceforge.net Tue Jul 15 09:20:37 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Tue Jul 15 11:20:42 2003 Subject: [Expat-checkins] expat Changes, 1.34, 1.35 README, 1.22, 1.23 configure.in, 1.33, 1.34 expat.spec, 1.9, 1.10 Message-ID: Update of /cvsroot/expat/expat In directory sc8-pr-cvs1:/tmp/cvs-serv10818 Modified Files: Changes README configure.in expat.spec Log Message: - bump the versioning information - start describing the changes in 1.95.7 Index: Changes =================================================================== RCS file: /cvsroot/expat/expat/Changes,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- Changes 28 Jan 2003 05:54:08 -0000 1.34 +++ Changes 15 Jul 2003 15:20:33 -0000 1.35 @@ -1,3 +1,9 @@ +Release 1.95.7 XXX date not determined + - Fixed enum XML_Status issue (reported on SourceForge many + times), so compilers that are properly picky will be happy. + - Fixed a variety of bugs: see SF issues ... + - Added more regression tests. + Release 1.95.6 Tue Jan 28 2003 - Added XML_FreeContentModel(). - Added XML_MemMalloc(), XML_MemRealloc(), XML_MemFree(). Index: README =================================================================== RCS file: /cvsroot/expat/expat/README,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- README 7 Oct 2002 20:26:26 -0000 1.22 +++ README 15 Jul 2003 15:20:34 -0000 1.23 @@ -1,5 +1,5 @@ - Expat, Release 1.95.6 + Expat, Release 1.95.7 This is Expat, a C library for parsing XML, written by James Clark. Expat is a stream-oriented XML parser. This means that you register Index: configure.in =================================================================== RCS file: /cvsroot/expat/expat/configure.in,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- configure.in 5 Sep 2002 04:46:24 -0000 1.33 +++ configure.in 15 Jul 2003 15:20:34 -0000 1.34 @@ -45,8 +45,8 @@ dnl LIBCURRENT=4 -LIBREVISION=0 -LIBAGE=4 +LIBREVISION=1 +LIBAGE=5 AC_CONFIG_HEADER(expat_config.h) Index: expat.spec =================================================================== RCS file: /cvsroot/expat/expat/expat.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- expat.spec 25 Jan 2003 15:36:31 -0000 1.9 +++ expat.spec 15 Jul 2003 15:20:34 -0000 1.10 @@ -1,4 +1,4 @@ -%define version 1.95.6 +%define version 1.95.7 %define release 1 Summary: Expat is an XML 1.0 parser written in C. @@ -38,6 +38,9 @@ /usr/man/man1/xmlwf.1.gz %changelog +* Tue Jul 15 2003 Fred L. Drake, Jr. +- Updated for the 1.95.7 release. + * Sat Jan 25 2003 Fred L. Drake, Jr. [Release 1.95.6-1] - Updated for the 1.95.6 release. From fdrake at users.sourceforge.net Tue Jul 15 09:20:37 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Tue Jul 15 11:20:43 2003 Subject: [Expat-checkins] expat/win32 expat.iss,1.16,1.17 Message-ID: Update of /cvsroot/expat/expat/win32 In directory sc8-pr-cvs1:/tmp/cvs-serv10818/win32 Modified Files: expat.iss Log Message: - bump the versioning information - start describing the changes in 1.95.7 Index: expat.iss =================================================================== RCS file: /cvsroot/expat/expat/win32/expat.iss,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- expat.iss 28 Jan 2003 15:26:59 -0000 1.16 +++ expat.iss 15 Jul 2003 15:20:35 -0000 1.17 @@ -7,15 +7,15 @@ [Setup] AppName=expat AppId=expat -AppVersion=1.95.6 -AppVerName=expat 1.95.6 -AppCopyright=Copyright © 1998-2002 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers -DefaultDirName={sd}\Expat-1.95.6 +AppVersion=1.95.7 +AppVerName=expat 1.95.7 +AppCopyright=Copyright © 1998-2003 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers +DefaultDirName={sd}\Expat-1.95.7 AppPublisher=The Expat Developers AppPublisherURL=http://www.libexpat.org/ AppSupportURL=http://www.libexpat.org/ AppUpdatesURL=http://www.libexpat.org/ -UninstallDisplayName=Expat XML Parser (version 1.95.6) +UninstallDisplayName=Expat XML Parser (version 1.95.7) UninstallFilesDir={app}\Uninstall Compression=bzip/9 From fdrake at users.sourceforge.net Tue Jul 15 09:42:15 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Tue Jul 15 11:42:19 2003 Subject: [Expat-checkins] expat README,1.23,1.24 Message-ID: Update of /cvsroot/expat/expat In directory sc8-pr-cvs1:/tmp/cvs-serv13950 Modified Files: README Log Message: Added notes about needing the check library to run the regression and unit tests. See SF bug #732794. Index: README =================================================================== RCS file: /cvsroot/expat/expat/README,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- README 15 Jul 2003 15:20:34 -0000 1.23 +++ README 15 Jul 2003 15:42:13 -0000 1.24 @@ -92,6 +92,13 @@ PATH=/usr/ccs/bin:$PATH make +The unit and regression tests for Expat require the "check" library on +Unix; more information is available at http://check.sourceforge.net/, +and downloadable packages are available from the library's project +page on SourceForge: http://sourceforge.net/projects/check/. You do +not need to install the check library to build and use Expat, only to +build and run Expat's test suite. + When using Expat with a project using autoconf for configuration, you can use the probing macro in conftools/expat.m4 to determine how to include Expat. See the comments at the top of that file for more From fdrake at users.sourceforge.net Tue Jul 15 11:29:45 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Tue Jul 15 13:29:48 2003 Subject: [Expat-checkins] expat configure.in,1.34,1.35 Message-ID: Update of /cvsroot/expat/expat In directory sc8-pr-cvs1:/tmp/cvs-serv2572 Modified Files: configure.in Log Message: Update the library version properly this time. Index: configure.in =================================================================== RCS file: /cvsroot/expat/expat/configure.in,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- configure.in 15 Jul 2003 15:20:34 -0000 1.34 +++ configure.in 15 Jul 2003 17:29:42 -0000 1.35 @@ -44,8 +44,8 @@ dnl If the API changes incompatibly set LIBAGE back to 0 dnl -LIBCURRENT=4 -LIBREVISION=1 +LIBCURRENT=5 +LIBREVISION=0 LIBAGE=5 AC_CONFIG_HEADER(expat_config.h) From fdrake at users.sourceforge.net Wed Jul 16 06:21:27 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Wed Jul 16 08:21:30 2003 Subject: [Expat-checkins] expat/vms descrip.mms,1.1,1.2 Message-ID: Update of /cvsroot/expat/expat/vms In directory sc8-pr-cvs1:/tmp/cvs-serv18529 Modified Files: descrip.mms Log Message: Replace a poor message with one that isn't misleading. See SF bug #699323. Index: descrip.mms =================================================================== RCS file: /cvsroot/expat/expat/vms/descrip.mms,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- descrip.mms 5 Jun 2002 04:13:10 -0000 1.1 +++ descrip.mms 16 Jul 2003 12:21:25 -0000 1.2 @@ -38,6 +38,7 @@ IF F$SEARCH("$(LIBRARY)") .EQS. "" THEN $(LIBR) /CREATE /OBJECT $(LIBRARY) all : $(LIBRARY) + @ write sys$output "All made." .SUFFIXES : .SUFFIXES : $(OLB) $(O) .C .H From fdrake at users.sourceforge.net Fri Jul 25 10:30:49 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Sat Jul 26 07:56:34 2003 Subject: [Expat-checkins] htdocs index.html,1.39,1.40 Message-ID: Update of /cvsroot/expat/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv19194 Modified Files: index.html Log Message: Added link to Late Night Software's XML Tools 2. Index: index.html =================================================================== RCS file: /cvsroot/expat/htdocs/index.html,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- index.html 15 Apr 2003 18:43:03 -0000 1.39 +++ index.html 25 Jul 2003 16:30:47 -0000 1.40 @@ -130,6 +130,10 @@ >Introductory article on using Expat on xml.com
  • + XML Tools + 2 is an AppleScript scripting addition that allows AppleScript + applications to work with XML data; it is based on Expat.
  • +
  • Simkin is an open source scripting language available under the GNU LGPL. It can be embedded in XML and supports a DOM-like API backed by Expat.
  • From fdrake at users.sourceforge.net Mon Jul 28 09:46:35 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Mon Jul 28 11:46:41 2003 Subject: [Expat-checkins] htdocs index.html,1.40,1.41 Message-ID: Update of /cvsroot/expat/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv30300 Modified Files: index.html Log Message: Update expatpp link, and use the name in the description. Index: index.html =================================================================== RCS file: /cvsroot/expat/htdocs/index.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- index.html 25 Jul 2003 16:30:47 -0000 1.40 +++ index.html 28 Jul 2003 15:46:32 -0000 1.41 @@ -157,8 +157,8 @@ >Arabica -- an XML Parser toolkit for C++ programmers, with SAX2 implementations based on several parsers, including Expat.
  • - C++ interface to Expat (old; not updated since Expat 1.2)
  • + expatpp -- C++ interface to Expat
  • EasySoap is a C++ SOAP implementation which uses Expat.