mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-28 07:21:26 +03:00
5add868b2e
* Makefile.am: stop generating wrong result file with * in name * relaxng.c: fixing the include bug raised by Sebastian Rahtz * result/relaxng/demo* test/relaxng/demo: added the tests from Sebastian reproducing the problem. Daniel
23 lines
583 B
XML
23 lines
583 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<grammar xmlns="http://relaxng.org/ns/structure/1.0" xmlns:t="http://www.thaiopensource.com/ns/annotations" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
|
|
<start>
|
|
<ref name="TEI.2"/>
|
|
</start>
|
|
<define name="IGNORE">
|
|
<notAllowed/>
|
|
</define>
|
|
<define name="INCLUDE">
|
|
<empty/>
|
|
</define>
|
|
|
|
|
|
<include href="demo3.rng"/>
|
|
|
|
<define name="TEI.2">
|
|
<element name="TEI.2">
|
|
<text/>
|
|
</element>
|
|
</define>
|
|
|
|
</grammar> |