]> git.rkrishnan.org Git - .emacs.d.git/blob - emacs/nxhtml/etc/schema/xinclude.rnc
remove toolbar and menubar
[.emacs.d.git] / emacs / nxhtml / etc / schema / xinclude.rnc
1 default namespace = "http://www.w3.org/2001/XInclude"\r
2 namespace xi = "http://www.w3.org/2001/XInclude"\r
3 \r
4 xi.include.attlist =\r
5    attribute href     { xsd:anyURI }?,\r
6    attribute parse    { "xml" | "text" }?,\r
7    attribute xpointer { xsd:string }?,\r
8    attribute encoding { xsd:string }?,\r
9    attribute accept   { xsd:string }?,\r
10    attribute accept-language { xsd:string }?\r
11 \r
12 xi.include.attlist.extra =\r
13    attribute * - xi.include.attlist { text }*\r
14 \r
15 xi.include =\r
16    element xi:include {\r
17       xi.include.attlist,\r
18       xi.include.attlist.extra,\r
19       (xi.fallback? | xi.include.extra)*\r
20    }\r
21 \r
22 xi.include.extra = notAllowed\r
23 \r
24 xi.fallback.attlist =\r
25    attribute * { text }*\r
26 \r
27 xi.fallback =\r
28    element xi:fallback {\r
29       xi.fallback.attlist, \r
30       (xi.include | xi.fallback.extra)*\r
31    }\r
32 \r
33 xi.fallback.extra = notAllowed\r
34 \r
35 xi.class = xi.include | xi.fallback