1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

warn if version is not 1.0 but it's not strictly speaking an error after

* parser.c: warn if version is not 1.0 but it's not
  strictly speaking an error after analyzing the spec
Daniel
This commit is contained in:
Daniel Veillard
2001-09-05 15:51:05 +00:00
parent 04685003cd
commit a050d23085
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
* parser.c: warn if version is not 1.0 but it's not
strictly speaking an error after analyzing the spec
Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net> Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
*doc/catalog.html - add link to the html version of the *doc/catalog.html - add link to the html version of the

View File

@ -7263,6 +7263,14 @@ xmlParseXMLDecl(xmlParserCtxtPtr ctxt) {
version = xmlParseVersionInfo(ctxt); version = xmlParseVersionInfo(ctxt);
if (version == NULL) if (version == NULL)
version = xmlCharStrdup(XML_DEFAULT_VERSION); version = xmlCharStrdup(XML_DEFAULT_VERSION);
else if (!xmlStrEqual(version, (const xmlChar *) XML_DEFAULT_VERSION)) {
/*
* TODO: Blueberry should be detected here
*/
if ((ctxt->sax != NULL) && (ctxt->sax->warning != NULL))
ctxt->sax->warning(ctxt->userData, "Unsupported version '%s'\n",
version);
}
ctxt->version = xmlStrdup(version); ctxt->version = xmlStrdup(version);
xmlFree(version); xmlFree(version);