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-paint-attrib.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.3 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Paint Attribute Module ........................................ -->
3<!-- file: svg-paint-attrib.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-paint-attrib.mod,v 1.2 2002/04/20 18:07:43 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ENTITIES SVG 1.1 Paint Attribute//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod"
13
14     ....................................................................... -->
15
16<!-- Paint Attribute
17
18        fill, fill-rule, stroke, stroke-dasharray, stroke-dashoffset,
19        stroke-linecap, stroke-linejoin, stroke-miterlimit, stroke-width, color,
20        color-interpolation, color-rendering
21
22     This module defines the Paint and Color attribute sets.
23-->
24
25<!-- a 'fill' or 'stroke' property/attribute value: <paint> -->
26<!ENTITY % Paint.datatype "CDATA" >
27
28<!-- 'stroke-dasharray' property/attribute value (e.g., 'none', list of <number>s) -->
29<!ENTITY % StrokeDashArrayValue.datatype "CDATA" >
30
31<!-- 'stroke-dashoffset' property/attribute value (e.g., 'none', <legnth>) -->
32<!ENTITY % StrokeDashOffsetValue.datatype "CDATA" >
33
34<!-- 'stroke-miterlimit' property/attribute value (e.g., <number>) -->
35<!ENTITY % StrokeMiterLimitValue.datatype "CDATA" >
36
37<!-- 'stroke-width' property/attribute value (e.g., <length>) -->
38<!ENTITY % StrokeWidthValue.datatype "CDATA" >
39
40<!ENTITY % SVG.fill.attrib
41    "fill %Paint.datatype; #IMPLIED"
42>
43
44<!ENTITY % SVG.fill-rule.attrib
45    "fill-rule %ClipFillRule.datatype; #IMPLIED"
46>
47
48<!ENTITY % SVG.stroke.attrib
49    "stroke %Paint.datatype; #IMPLIED"
50>
51
52<!ENTITY % SVG.stroke-dasharray.attrib
53    "stroke-dasharray %StrokeDashArrayValue.datatype; #IMPLIED"
54>
55
56<!ENTITY % SVG.stroke-dashoffset.attrib
57    "stroke-dashoffset %StrokeDashOffsetValue.datatype; #IMPLIED"
58>
59
60<!ENTITY % SVG.stroke-linecap.attrib
61    "stroke-linecap ( butt | round | square | inherit ) #IMPLIED"
62>
63
64<!ENTITY % SVG.stroke-linejoin.attrib
65    "stroke-linejoin ( miter | round | bevel | inherit ) #IMPLIED"
66>
67
68<!ENTITY % SVG.stroke-miterlimit.attrib
69    "stroke-miterlimit %StrokeMiterLimitValue.datatype; #IMPLIED"
70>
71
72<!ENTITY % SVG.stroke-width.attrib
73    "stroke-width %StrokeWidthValue.datatype; #IMPLIED"
74>
75
76<!ENTITY % SVG.Paint.extra.attrib "" >
77
78<!ENTITY % SVG.Paint.attrib
79    "%SVG.fill.attrib;
80     %SVG.fill-rule.attrib;
81     %SVG.stroke.attrib;
82     %SVG.stroke-dasharray.attrib;
83     %SVG.stroke-dashoffset.attrib;
84     %SVG.stroke-linecap.attrib;
85     %SVG.stroke-linejoin.attrib;
86     %SVG.stroke-miterlimit.attrib;
87     %SVG.stroke-width.attrib;
88     %SVG.Paint.extra.attrib;"
89>
90
91<!ENTITY % SVG.color.attrib
92    "color %Color.datatype; #IMPLIED"
93>
94
95<!ENTITY % SVG.color-interpolation.attrib
96    "color-interpolation ( auto | sRGB | linearRGB | inherit ) #IMPLIED"
97>
98
99<!ENTITY % SVG.color-rendering.attrib
100    "color-rendering ( auto | optimizeSpeed | optimizeQuality | inherit )
101                       #IMPLIED"
102>
103
104<!ENTITY % SVG.Color.extra.attrib "" >
105
106<!ENTITY % SVG.Color.attrib
107    "%SVG.color.attrib;
108     %SVG.color-interpolation.attrib;
109     %SVG.color-rendering.attrib;
110     %SVG.Color.extra.attrib;"
111>
112
113<!-- end of svg-paint-attrib.mod -->
Note: See TracBrowser for help on using the repository browser.