diff options
author | Alexander Bokovoy <ab@samba.org> | 2004-04-08 11:18:59 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:45 -0500 |
commit | 8c20a748bd0373daa66bd39bb303a1a8b61c6e2d (patch) | |
tree | 943a3d92650c4f208f2f97ebd51e3ab749ec2b30 /docs/entities/xinclude.dtd | |
parent | 96d2ddfeb4b6129776cdeeeee58fe347cfc3637d (diff) | |
download | samba-8c20a748bd0373daa66bd39bb303a1a8b61c6e2d.tar.gz samba-8c20a748bd0373daa66bd39bb303a1a8b61c6e2d.tar.bz2 samba-8c20a748bd0373daa66bd39bb303a1a8b61c6e2d.zip |
Fix samba-docs build after svn conversion and Samba3 By Example addition.
Now we are able to build everything in samba-docs properly.
(This used to be commit bb09f771958150e9465a5dc9d8e62aa8477c17a4)
Diffstat (limited to 'docs/entities/xinclude.dtd')
-rw-r--r-- | docs/entities/xinclude.dtd | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/entities/xinclude.dtd b/docs/entities/xinclude.dtd new file mode 100644 index 0000000000..1634275be0 --- /dev/null +++ b/docs/entities/xinclude.dtd @@ -0,0 +1,31 @@ +<!-- + $Id: xinclude.dtd,v 1.2 2003/02/07 13:01:13 toms Exp $ + + The XInclude DTD is from + + http://www.w3.org/TR/xinclude/ + + and modified in a way which support our needs. + +--> + +<!ENTITY % xmlnsxi 'xmlns:xi CDATA #FIXED "http://www.w3.org/2001/XInclude"'> + + +<!ELEMENT xi:include (xi:fallback)?> + +<!-- Just for some modifications --> +<!ENTITY % local.xinclude.attrib ""> +<!ATTLIST xi:include + %xmlnsxi; + href CDATA #REQUIRED + parse (xml|text) "xml" + encoding CDATA #IMPLIED + %local.xinclude.attrib; +> + +<!ELEMENT xi:fallback ANY> +<!ATTLIST xi:fallback + %xmlnsxi; + %local.xinclude.attrib; +> |