mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-20 18:50:08 +03:00
* uri.c: fixed a problem when base path was "./xxx" * result/XInclude/*: 5 test results changed by above. * Makefile.am: fixed a couple of spots where a new result file used different flags that the testing one.
20 lines
356 B
XML
20 lines
356 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE book [
|
|
<!ELEMENT book (doc)*>
|
|
<!ELEMENT doc (isid)*>
|
|
<!ELEMENT isid EMPTY>
|
|
<!ATTLIST isid myid ID #IMPLIED>
|
|
]>
|
|
<book>
|
|
<doc>
|
|
<isid myid="mine"/>
|
|
<isid myid="dup"/>
|
|
</doc>
|
|
<!-- including another XML document with IDs -->
|
|
<doc xml:base="../ents/ids.xml">
|
|
<isid myid="dup"/>
|
|
<isid myid="foo"/>
|
|
<isid myid="bar"/>
|
|
</doc>
|
|
</book>
|