Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Resources/www.w3.org/Graphics.SVG.1.1.DTD/svg-basic-text.mod @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 3.5 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Basic Text Module ............................................. -->
3<!-- file: svg-basic-text.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-basic-text.mod,v 1.4 2002/11/13 20:14:30 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ELEMENTS SVG 1.1 Basic Text//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-text.mod"
13
14     ....................................................................... -->
15
16<!-- Basic Text
17
18        text
19
20     This module declares markup to provide support for text.
21-->
22
23<!-- 'font-family' property/attribute value (i.e., list of fonts) -->
24<!ENTITY % FontFamilyValue.datatype "CDATA" >
25
26<!-- 'font-size' property/attribute value -->
27<!ENTITY % FontSizeValue.datatype "CDATA" >
28
29<!-- Qualified Names (Default) ......................... -->
30
31<!ENTITY % SVG.text.qname "text" >
32
33<!-- Attribute Collections (Default) ................... -->
34
35<!ENTITY % SVG.Core.attrib "" >
36<!ENTITY % SVG.Conditional.attrib "" >
37<!ENTITY % SVG.Style.attrib "" >
38<!ENTITY % SVG.Paint.attrib "" >
39<!ENTITY % SVG.Color.attrib "" >
40<!ENTITY % SVG.Opacity.attrib "" >
41<!ENTITY % SVG.Graphics.attrib "" >
42<!ENTITY % SVG.Clip.attrib "" >
43<!ENTITY % SVG.Mask.attrib "" >
44<!ENTITY % SVG.Filter.attrib "" >
45<!ENTITY % SVG.GraphicalEvents.attrib "" >
46<!ENTITY % SVG.Cursor.attrib "" >
47<!ENTITY % SVG.External.attrib "" >
48
49<!-- SVG.Text.class .................................... -->
50
51<!ENTITY % SVG.Text.extra.class "" >
52
53<!ENTITY % SVG.Text.class
54    "| %SVG.text.qname; %SVG.Text.extra.class;"
55>
56
57<!-- SVG.TextContent.attrib ............................ -->
58
59<!ENTITY % SVG.TextContent.extra.attrib "" >
60
61<!ENTITY % SVG.TextContent.attrib
62    "text-anchor ( start | middle | end | inherit ) #IMPLIED
63     %SVG.TextContent.extra.attrib;"
64>
65
66<!-- SVG.Font.attrib ................................... -->
67
68<!ENTITY % SVG.Font.extra.attrib "" >
69
70<!ENTITY % SVG.Font.attrib
71    "font-family %FontFamilyValue.datatype; #IMPLIED
72     font-size %FontSizeValue.datatype; #IMPLIED
73     font-style ( normal | italic | oblique | inherit ) #IMPLIED
74     font-weight ( normal | bold | bolder | lighter | 100 | 200 | 300 | 400 |
75                   500 | 600 | 700 | 800 | 900 | inherit ) #IMPLIED
76     %SVG.Font.extra.attrib;"
77>
78
79<!-- text: Text Element ................................ -->
80
81<!ENTITY % SVG.text.extra.content "" >
82
83<!ENTITY % SVG.text.element "INCLUDE" >
84<![%SVG.text.element;[
85<!ENTITY % SVG.text.content
86    "( #PCDATA | %SVG.Description.class; | %SVG.Animation.class;
87       %SVG.Hyperlink.class; %SVG.text.extra.content; )*"
88>
89<!ELEMENT %SVG.text.qname; %SVG.text.content; >
90<!-- end of SVG.text.element -->]]>
91
92<!ENTITY % SVG.text.attlist "INCLUDE" >
93<![%SVG.text.attlist;[
94<!ATTLIST %SVG.text.qname;
95    %SVG.Core.attrib;
96    %SVG.Conditional.attrib;
97    %SVG.Style.attrib;
98    %SVG.TextContent.attrib;
99    %SVG.Font.attrib;
100    %SVG.Paint.attrib;
101    %SVG.Color.attrib;
102    %SVG.Opacity.attrib;
103    %SVG.Graphics.attrib;
104    %SVG.Clip.attrib;
105    %SVG.Mask.attrib;
106    %SVG.Filter.attrib;
107    %SVG.GraphicalEvents.attrib;
108    %SVG.Cursor.attrib;
109    %SVG.External.attrib;
110    x %Coordinates.datatype; #IMPLIED
111    y %Coordinates.datatype; #IMPLIED
112    rotate %Numbers.datatype; #IMPLIED
113    transform %TransformList.datatype; #IMPLIED
114>
115<!-- end of SVG.text.attlist -->]]>
116
117<!-- end of svg-basic-text.mod -->
Note: See TracBrowser for help on using the repository browser.