From fdrake at users.sourceforge.net Mon Aug 4 08:38:27 2003 From: fdrake at users.sourceforge.net (Fred L. Drake) Date: Mon Aug 4 10:38:31 2003 Subject: [Expat-checkins] htdocs index.html,1.41,1.42 Message-ID: Update of /cvsroot/expat/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv12282 Modified Files: index.html Log Message: update link to mailing lists Index: index.html =================================================================== RCS file: /cvsroot/expat/htdocs/index.html,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- index.html 28 Jul 2003 15:46:32 -0000 1.41 +++ index.html 4 Aug 2003 14:38:24 -0000 1.42 @@ -26,7 +26,7 @@ Expat project page (includes downloads)
  • - Mailing lists
  • Update of /cvsroot/expat/expat/tests In directory sc8-pr-cvs1:/tmp/cvs-serv31916 Modified Files: runtests.c Log Message: elaborated test case to cover SF bug #774028; current Expat already handles this correctly Index: runtests.c =================================================================== RCS file: /cvsroot/expat/expat/tests/runtests.c,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- runtests.c 12 Mar 2003 19:25:03 -0000 1.50 +++ runtests.c 27 Aug 2003 12:34:23 -0000 1.51 @@ -363,17 +363,17 @@ } END_TEST -/* Regression test for SF bug #481609. */ +/* Regression test for SF bug #481609, #774028. */ START_TEST(test_latin1_umlauts) { char *text = "\n" - "ä ö ü ä ö ü ä ö ü"; + "ä ö ü ä ö ü ä ö ü >"; char *utf8 = "\xC3\xA4 \xC3\xB6 \xC3\xBC " "\xC3\xA4 \xC3\xB6 \xC3\xBC " - "\xC3\xA4 \xC3\xB6 \xC3\xBC"; + "\xC3\xA4 \xC3\xB6 \xC3\xBC >"; run_character_check(text, utf8); XML_ParserReset(parser, NULL); run_attribute_check(text, utf8); From kwaclaw at users.sourceforge.net Thu Aug 28 07:08:13 2003 From: kwaclaw at users.sourceforge.net (Karl Waclawek) Date: Thu Aug 28 09:08:22 2003 Subject: [Expat-checkins] expat/doc reference.html,1.45,1.46 Message-ID: Update of /cvsroot/expat/expat/doc In directory sc8-pr-cvs1:/tmp/cvs-serv26515 Modified Files: reference.html Log Message: Fixed omission of second argument in XML_ParserReset. Reported by Tim Bray. Index: reference.html =================================================================== RCS file: /cvsroot/expat/expat/doc/reference.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- reference.html 13 Mar 2003 02:13:06 -0000 1.45 +++ reference.html 28 Aug 2003 13:08:10 -0000 1.46 @@ -692,7 +692,7 @@
     XML_Bool
    -XML_ParserReset(XML_Parser p);
    +XML_ParserReset(XML_Parser p, const XML_Char *encoding);
     
    Clean up the memory structures maintained by the parser so that it may @@ -708,9 +708,9 @@

    Parsing

    To state the obvious: the three parsing functions XML_Parse, XML_ParseBuffer and >XML_GetBuffer must not be +"#XML_Parse" >XML_Parse, +XML_ParseBuffer and +XML_GetBuffer must not be called from within a handler unless they operate on a separate parser instance, that is, one that did not call the handler. For example, it is OK to call the parsing functions from within an From kwaclaw at users.sourceforge.net Thu Aug 28 07:12:36 2003 From: kwaclaw at users.sourceforge.net (Karl Waclawek) Date: Thu Aug 28 09:12:39 2003 Subject: [Expat-checkins] expat/doc reference.html,1.46,1.47 Message-ID: Update of /cvsroot/expat/expat/doc In directory sc8-pr-cvs1:/tmp/cvs-serv27123 Modified Files: reference.html Log Message: Adjusted layout of XML_ParserReset fix. Index: reference.html =================================================================== RCS file: /cvsroot/expat/expat/doc/reference.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- reference.html 28 Aug 2003 13:08:10 -0000 1.46 +++ reference.html 28 Aug 2003 13:12:34 -0000 1.47 @@ -692,7 +692,8 @@

     XML_Bool
    -XML_ParserReset(XML_Parser p, const XML_Char *encoding);
    +XML_ParserReset(XML_Parser p,
    +                const XML_Char *encoding);
     
    Clean up the memory structures maintained by the parser so that it may