Imported Upstream version 2.5.1
[debian/amanda] / man / entities / xinclude.dtd
1 <!--
2    $Id: xinclude.dtd,v 1.2 2006/05/25 01:47:13 johnfranks Exp $
3
4  The XInclude DTD is from
5
6    http://www.w3.org/TR/xinclude/
7
8  and modified in a way which support our needs.
9
10 -->
11
12 <!ENTITY % xmlnsxi 'xmlns:xi CDATA  #FIXED "http://www.w3.org/2001/XInclude"'>
13
14
15 <!ELEMENT xi:include (xi:fallback)?>
16
17 <!-- Just for some modifications -->
18 <!ENTITY % local.xinclude.attrib "">
19 <!ATTLIST xi:include
20         %xmlnsxi;
21         href       CDATA       #REQUIRED
22         parse      (xml|text)  "xml"
23         encoding   CDATA       #IMPLIED
24         %local.xinclude.attrib;
25 >
26
27 <!ELEMENT xi:fallback ANY>
28 <!ATTLIST xi:fallback
29         %xmlnsxi;
30         %local.xinclude.attrib;
31 >