mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-08-07 06:43:02 +03:00
fixed the bug generating a template loop in libxslt when using
* xpath.c: fixed the bug generating a template loop in libxslt when using docbook-xsl-1.4, * should filter out document nodes * HACKING: added William * TODO: updated Daniel
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
|
* xpath.c: fixed the bug generating a template loop in libxslt
|
||||||
|
when using docbook-xsl-1.4, * should filter out document nodes
|
||||||
|
* HACKING: added William
|
||||||
|
* TODO: updated
|
||||||
|
|
||||||
Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
* doc/FAQ.html: added a warning about gcc-3.0
|
* doc/FAQ.html: added a warning about gcc-3.0
|
||||||
|
3
HACKING
3
HACKING
@@ -28,5 +28,6 @@ This simply mean that I'm on holliday or on the road.
|
|||||||
|
|
||||||
Daniel
|
Daniel
|
||||||
|
|
||||||
P.S.: Bjorn Reese get an exception for the send before commit rule
|
P.S.: Bjorn Reese and William Brack get an exception for the send before
|
||||||
|
commit rule
|
||||||
|
|
||||||
|
3
TODO
3
TODO
@@ -35,6 +35,9 @@ TODO:
|
|||||||
- Fix output of <tst val="x
y"/>
|
- Fix output of <tst val="x
y"/>
|
||||||
- Implement OASIS XML Catalog support
|
- Implement OASIS XML Catalog support
|
||||||
http://www.oasis-open.org/committees/entity/
|
http://www.oasis-open.org/committees/entity/
|
||||||
|
- Stricten the UTF8 conformance (Martin Duerst):
|
||||||
|
http://www.w3.org/2001/06/utf-8-test/.
|
||||||
|
The bad files are in http://www.w3.org/2001/06/utf-8-wrong/.
|
||||||
|
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
|
4
xpath.c
4
xpath.c
@@ -7361,9 +7361,7 @@ xmlXPathNodeCollectAndTest(xmlXPathParserContextPtr ctxt,
|
|||||||
addNode(list, cur);
|
addNode(list, cur);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ((cur->type == XML_ELEMENT_NODE) ||
|
if (cur->type == XML_ELEMENT_NODE) {
|
||||||
(cur->type == XML_DOCUMENT_NODE) ||
|
|
||||||
(cur->type == XML_HTML_DOCUMENT_NODE)) {
|
|
||||||
if (prefix == NULL) {
|
if (prefix == NULL) {
|
||||||
#ifdef DEBUG_STEP
|
#ifdef DEBUG_STEP
|
||||||
n++;
|
n++;
|
||||||
|
Reference in New Issue
Block a user