mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fixed problem causing duplicate fallback execution (bug 139520) added
* xinclude.c: fixed problem causing duplicate fallback execution (bug 139520) * test/XInclude/docs/fallback2.xml result/XInclude/fallback2.*: added testcase
This commit is contained in:
parent
0d1a845097
commit
5d8d10bba3
@ -1,3 +1,10 @@
|
||||
Fri Apr 16 16:09:31 HKT 2004 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* xinclude.c: fixed problem causing duplicate fallback
|
||||
execution (bug 139520)
|
||||
* test/XInclude/docs/fallback2.xml result/XInclude/fallback2.*:
|
||||
added testcase
|
||||
|
||||
Fri Apr 9 23:49:37 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* SAX2.c include/libxml/tree.h: adding xml:id draft support
|
||||
|
6
result/XInclude/fallback2.xml
Normal file
6
result/XInclude/fallback2.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<a>
|
||||
There is no b.xml ...
|
||||
There is no c.xml ...
|
||||
|
||||
</a>
|
0
result/XInclude/fallback2.xml.err
Normal file
0
result/XInclude/fallback2.xml.err
Normal file
11
result/XInclude/fallback2.xml.rdr
Normal file
11
result/XInclude/fallback2.xml.rdr
Normal file
@ -0,0 +1,11 @@
|
||||
0 1 a 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 3 #text 0 1 There is no b.xml ...
|
||||
1 14 #text 0 1
|
||||
|
||||
1 3 #text 0 1 There is no c.xml ...
|
||||
1 14 #text 0 1
|
||||
|
||||
|
||||
0 15 a 0 0
|
10
test/XInclude/docs/fallback2.xml
Normal file
10
test/XInclude/docs/fallback2.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<a>
|
||||
<xi:include href="b.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<xi:fallback>There is no b.xml ... </xi:fallback>
|
||||
</xi:include>
|
||||
<xi:include href="c.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<xi:fallback>There is no c.xml ... </xi:fallback>
|
||||
</xi:include>
|
||||
|
||||
</a>
|
||||
|
@ -2206,6 +2206,8 @@ xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree) {
|
||||
if (xmlXIncludeTestNode(ctxt, cur))
|
||||
xmlXIncludePreProcessNode(ctxt, cur);
|
||||
} else {
|
||||
if (cur == tree)
|
||||
break;
|
||||
do {
|
||||
cur = cur->parent;
|
||||
if (cur == NULL) break; /* do */
|
||||
|
Loading…
x
Reference in New Issue
Block a user