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-datatypes.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: 2.5 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Datatypes Module .............................................. -->
3<!-- file: svg-datatypes.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-datatypes.mod,v 1.2 2002/04/20 18:07:42 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ENTITIES SVG 1.1 Datatypes//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod"
13
14     ....................................................................... -->
15
16<!-- Datatypes
17
18     This module declares common data types for properties and attributes.
19-->
20
21<!-- feature specification -->
22<!ENTITY % Boolean.datatype "( false | true )" >
23
24<!-- 'clip-rule' or 'fill-rule' property/attribute value -->
25<!ENTITY % ClipFillRule.datatype "( nonzero | evenodd | inherit )" >
26
27<!-- media type, as per [RFC2045] -->
28<!ENTITY % ContentType.datatype "CDATA" >
29
30<!-- a <coordinate> -->
31<!ENTITY % Coordinate.datatype "CDATA" >
32
33<!-- a list of <coordinate>s -->
34<!ENTITY % Coordinates.datatype "CDATA" >
35
36<!-- a <color> value -->
37<!ENTITY % Color.datatype "CDATA" >
38
39<!-- a <integer> -->
40<!ENTITY % Integer.datatype "CDATA" >
41
42<!-- a language code, as per [RFC3066] -->
43<!ENTITY % LanguageCode.datatype "NMTOKEN" >
44
45<!-- comma-separated list of language codes, as per [RFC3066] -->
46<!ENTITY % LanguageCodes.datatype "CDATA" >
47
48<!-- a <length> -->
49<!ENTITY % Length.datatype "CDATA" >
50
51<!-- a list of <length>s -->
52<!ENTITY % Lengths.datatype "CDATA" >
53
54<!-- a <number> -->
55<!ENTITY % Number.datatype "CDATA" >
56
57<!-- a list of <number>s -->
58<!ENTITY % Numbers.datatype "CDATA" >
59
60<!-- opacity value (e.g., <number>) -->
61<!ENTITY % OpacityValue.datatype "CDATA" >
62
63<!-- a path data specification -->
64<!ENTITY % PathData.datatype "CDATA" >
65
66<!-- 'preserveAspectRatio' attribute specification -->
67<!ENTITY % PreserveAspectRatioSpec.datatype "CDATA" >
68
69<!-- script expression -->
70<!ENTITY % Script.datatype "CDATA" >
71
72<!-- An SVG color value (RGB plus optional ICC) -->
73<!ENTITY % SVGColor.datatype "CDATA" >
74
75<!-- arbitrary text string -->
76<!ENTITY % Text.datatype "CDATA" >
77
78<!-- list of transforms -->
79<!ENTITY % TransformList.datatype "CDATA" >
80
81<!-- a Uniform Resource Identifier, see [URI] -->
82<!ENTITY % URI.datatype "CDATA" >
83
84<!-- 'viewBox' attribute specification -->
85<!ENTITY % ViewBoxSpec.datatype "CDATA" >
86
87<!-- end of svg-datatypes.mod -->
Note: See TracBrowser for help on using the repository browser.