John Fleck fixed typos in the options output fix ignorable white space SAX

* xmllint.c: John Fleck fixed typos in the options output
* parser.c SAX.c: fix ignorable white space SAX selection
* entities.c: Steve Underwood found the possibility of an
  ininite loop in case of error.
Daniel
This commit is contained in:
Daniel Veillard 2001-09-09 08:38:09 +00:00
parent 5eb9dea8be
commit 05c13a20b9
5 changed files with 22 additions and 8 deletions

View File

@ -1,3 +1,13 @@
Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
* xmllint.c: John Fleck fixed typos in the options output
* parser.c SAX.c: fix ignorable white space SAX selection
Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* entities.c: Steve Underwood found the possibility of an
ininite loop in case of error.
Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
* Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD

9
SAX.c
View File

@ -1258,7 +1258,6 @@ reference(void *ctx, const xmlChar *name)
* @len: the number of xmlChar
*
* receiving some chars from the parser.
* Question: how much at a time ???
*/
void
characters(void *ctx, const xmlChar *ch, int len)
@ -1364,7 +1363,7 @@ characters(void *ctx, const xmlChar *ch, int len)
* @len: the number of xmlChar
*
* receiving some ignorable whitespaces from the parser.
* Question: how much at a time ???
* UNUSED: by default the DOM building will use characters
*/
void
ignorableWhitespace(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch ATTRIBUTE_UNUSED, int len ATTRIBUTE_UNUSED)
@ -1682,7 +1681,7 @@ xmlSAXHandler xmlDefaultSAXHandler = {
endElement,
reference,
characters,
ignorableWhitespace,
characters,
processingInstruction,
comment,
xmlParserWarning,
@ -1726,7 +1725,7 @@ xmlDefaultSAXHandlerInit(void)
xmlDefaultSAXHandler.reference = reference;
xmlDefaultSAXHandler.characters = characters;
xmlDefaultSAXHandler.cdataBlock = cdataBlock;
xmlDefaultSAXHandler.ignorableWhitespace = ignorableWhitespace;
xmlDefaultSAXHandler.ignorableWhitespace = characters;
xmlDefaultSAXHandler.processingInstruction = processingInstruction;
xmlDefaultSAXHandler.comment = comment;
if (xmlGetWarningsDefaultValue == 0)
@ -1762,7 +1761,7 @@ xmlSAXHandler htmlDefaultSAXHandler = {
endElement,
NULL,
characters,
ignorableWhitespace,
characters,
NULL,
comment,
xmlParserWarning,

View File

@ -669,6 +669,7 @@ xmlEncodeEntitiesReentrant(xmlDocPtr doc, const xmlChar *input) {
buf[sizeof(buf) - 1] = 0;
ptr = buf;
while (*ptr != 0) *out++ = *ptr++;
cur++;
continue;
} else if (*cur < 0xE0) {
val = (cur[0]) & 0x1F;

View File

@ -1475,7 +1475,11 @@ static int areBlanks(xmlParserCtxtPtr ctxt, const xmlChar *str, int len) {
int i, ret;
xmlNodePtr lastChild;
if (ctxt->keepBlanks)
/*
* Don't spend time trying to differentiate them, the same callback is
* used !
*/
if (ctxt->sax->ignorableWhitespace == ctxt->sax->characters)
return(0);
/*

View File

@ -780,7 +780,7 @@ static void usage(const char *name) {
printf("\t--noent : substitute entity references by their value\n");
printf("\t--noout : don't output the result tree\n");
printf("\t--htmlout : output results as HTML\n");
printf("\t--nowarp : do not put HTML doc wrapper\n");
printf("\t--nowrap : do not put HTML doc wrapper\n");
printf("\t--valid : validate the document in addition to std well-formed check\n");
printf("\t--postvalid : do a posteriori validation, i.e after parsing\n");
printf("\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
@ -803,7 +803,7 @@ static void usage(const char *name) {
#ifdef LIBXML_CATALOG_ENABLED
printf("\t--catalogs : use the catalogs from $SGML_CATALOG_FILES\n");
printf("\t otherwise /etc/xml/catalog is activated by default\n");
printf("\t--nocatalogs: desactivate all catalogs\n");
printf("\t--nocatalogs: deactivate all catalogs\n");
#endif
printf("\t--auto : generate a small doc on the fly\n");
#ifdef LIBXML_XINCLUDE_ENABLED