1 | <!-- ....................................................................... --> |
---|
2 | <!-- SVG 1.1 Style Module .................................................. --> |
---|
3 | <!-- file: svg-style.mod |
---|
4 | |
---|
5 | This is SVG, a language for describing two-dimensional graphics in XML. |
---|
6 | Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved. |
---|
7 | Revision: $Id: svg-style.mod,v 1.3 2002/10/24 17:40:16 fujisawa Exp $ |
---|
8 | |
---|
9 | This DTD module is identified by the PUBLIC and SYSTEM identifiers: |
---|
10 | |
---|
11 | PUBLIC "-//W3C//ELEMENTS SVG 1.1 Style//EN" |
---|
12 | SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod" |
---|
13 | |
---|
14 | ....................................................................... --> |
---|
15 | |
---|
16 | <!-- Style |
---|
17 | |
---|
18 | style |
---|
19 | |
---|
20 | This module declares markup to provide support for stylesheet. |
---|
21 | --> |
---|
22 | |
---|
23 | <!-- list of classes --> |
---|
24 | <!ENTITY % ClassList.datatype "CDATA" > |
---|
25 | |
---|
26 | <!-- comma-separated list of media descriptors. --> |
---|
27 | <!ENTITY % MediaDesc.datatype "CDATA" > |
---|
28 | |
---|
29 | <!-- style sheet data --> |
---|
30 | <!ENTITY % StyleSheet.datatype "CDATA" > |
---|
31 | |
---|
32 | <!-- Qualified Names (Default) ......................... --> |
---|
33 | |
---|
34 | <!ENTITY % SVG.style.qname "style" > |
---|
35 | |
---|
36 | <!-- Attribute Collections (Default) ................... --> |
---|
37 | |
---|
38 | <!ENTITY % SVG.Core.attrib "" > |
---|
39 | |
---|
40 | <!-- SVG.Style.class ................................... --> |
---|
41 | |
---|
42 | <!ENTITY % SVG.Style.extra.class "" > |
---|
43 | |
---|
44 | <!ENTITY % SVG.Style.class |
---|
45 | "| %SVG.style.qname; %SVG.Style.extra.class;" |
---|
46 | > |
---|
47 | |
---|
48 | <!-- SVG.Style.attrib .................................. --> |
---|
49 | |
---|
50 | <!ENTITY % SVG.Style.extra.attrib "" > |
---|
51 | |
---|
52 | <!ENTITY % SVG.Style.attrib |
---|
53 | "style %StyleSheet.datatype; #IMPLIED |
---|
54 | class %ClassList.datatype; #IMPLIED |
---|
55 | %SVG.Style.extra.attrib;" |
---|
56 | > |
---|
57 | |
---|
58 | <!-- style: Style Element .............................. --> |
---|
59 | |
---|
60 | <!ENTITY % SVG.style.extra.content "" > |
---|
61 | |
---|
62 | <!ENTITY % SVG.style.element "INCLUDE" > |
---|
63 | <![%SVG.style.element;[ |
---|
64 | <!ENTITY % SVG.style.content |
---|
65 | "( #PCDATA %SVG.style.extra.content; )*" |
---|
66 | > |
---|
67 | <!ELEMENT %SVG.style.qname; %SVG.style.content; > |
---|
68 | <!-- end of SVG.style.element -->]]> |
---|
69 | |
---|
70 | <!ENTITY % SVG.style.attlist "INCLUDE" > |
---|
71 | <![%SVG.style.attlist;[ |
---|
72 | <!ATTLIST %SVG.style.qname; |
---|
73 | xml:space ( preserve ) #FIXED 'preserve' |
---|
74 | %SVG.Core.attrib; |
---|
75 | type %ContentType.datatype; #REQUIRED |
---|
76 | media %MediaDesc.datatype; #IMPLIED |
---|
77 | title %Text.datatype; #IMPLIED |
---|
78 | > |
---|
79 | <!-- end of SVG.style.attlist -->]]> |
---|
80 | |
---|
81 | <!-- end of svg-style.mod --> |
---|