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:
William M. Brack 2004-04-16 08:11:26 +00:00
parent 0d1a845097
commit 5d8d10bba3
6 changed files with 36 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,6 @@
<?xml version="1.0"?>
<a>
There is no b.xml ...
There is no c.xml ...
</a>

View File

View 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

View 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>

View File

@ -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 */