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-hyperlink.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.8 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Hyperlinking Module ........................................... -->
3<!-- file: svg-hyperlink.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-hyperlink.mod,v 1.4 2002/11/14 15:11:02 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ELEMENTS SVG 1.1 Hyperlinking//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod"
13
14     ....................................................................... -->
15
16<!-- Hyperlinking
17
18        a
19
20     This module declares markup to provide support for hyper linking.
21-->
22
23<!-- link to this target -->
24<!ENTITY % LinkTarget.datatype "NMTOKEN" >
25
26<!-- Qualified Names (Default) ......................... -->
27
28<!ENTITY % SVG.a.qname "a" >
29
30<!-- Attribute Collections (Default) ................... -->
31
32<!ENTITY % SVG.Core.attrib "" >
33<!ENTITY % SVG.Conditional.attrib "" >
34<!ENTITY % SVG.Style.attrib "" >
35<!ENTITY % SVG.Viewport.attrib "" >
36<!ENTITY % SVG.Text.attrib "" >
37<!ENTITY % SVG.TextContent.attrib "" >
38<!ENTITY % SVG.Font.attrib "" >
39<!ENTITY % SVG.Paint.attrib "" >
40<!ENTITY % SVG.Color.attrib "" >
41<!ENTITY % SVG.Opacity.attrib "" >
42<!ENTITY % SVG.Graphics.attrib "" >
43<!ENTITY % SVG.Marker.attrib "" >
44<!ENTITY % SVG.Gradient.attrib "" >
45<!ENTITY % SVG.Clip.attrib "" >
46<!ENTITY % SVG.Mask.attrib "" >
47<!ENTITY % SVG.Filter.attrib "" >
48<!ENTITY % SVG.FilterColor.attrib "" >
49<!ENTITY % SVG.GraphicalEvents.attrib "" >
50<!ENTITY % SVG.Cursor.attrib "" >
51<!ENTITY % SVG.XLinkReplace.attrib "" >
52<!ENTITY % SVG.External.attrib "" >
53
54<!-- SVG.Hyperlink.class ............................... -->
55
56<!ENTITY % SVG.Hyperlink.extra.class "" >
57
58<!ENTITY % SVG.Hyperlink.class
59    "| %SVG.a.qname; %SVG.Hyperlink.extra.class;"
60>
61
62<!-- SVG.Presentation.attrib ........................... -->
63
64<!ENTITY % SVG.Presentation.extra.attrib "" >
65
66<!ENTITY % SVG.Presentation.attrib
67    "%SVG.Container.attrib;
68     %SVG.Viewport.attrib;
69     %SVG.Text.attrib;
70     %SVG.TextContent.attrib;
71     %SVG.Font.attrib;
72     %SVG.Paint.attrib;
73     %SVG.Color.attrib;
74     %SVG.Opacity.attrib;
75     %SVG.Graphics.attrib;
76     %SVG.Marker.attrib;
77     %SVG.ColorProfile.attrib;
78     %SVG.Gradient.attrib;
79     %SVG.Clip.attrib;
80     %SVG.Mask.attrib;
81     %SVG.Filter.attrib;
82     %SVG.FilterColor.attrib;
83     %SVG.Cursor.attrib;
84     flood-color %SVGColor.datatype; #IMPLIED
85     flood-opacity %OpacityValue.datatype; #IMPLIED
86     lighting-color %SVGColor.datatype; #IMPLIED
87     %SVG.Presentation.extra.attrib;"
88>
89
90<!-- a: Anchor Element ................................. -->
91
92<!ENTITY % SVG.a.extra.content "" >
93
94<!ENTITY % SVG.a.element "INCLUDE" >
95<![%SVG.a.element;[
96<!ENTITY % SVG.a.content
97    "( #PCDATA | %SVG.Description.class; | %SVG.Animation.class;
98       %SVG.Structure.class; %SVG.Conditional.class; %SVG.Image.class;
99       %SVG.Style.class; %SVG.Shape.class; %SVG.Text.class; %SVG.Marker.class;
100       %SVG.ColorProfile.class; %SVG.Gradient.class; %SVG.Pattern.class;
101       %SVG.Clip.class; %SVG.Mask.class; %SVG.Filter.class; %SVG.Cursor.class;
102       %SVG.Hyperlink.class; %SVG.View.class; %SVG.Script.class;
103       %SVG.Font.class; %SVG.a.extra.content; )*"
104>
105<!ELEMENT %SVG.a.qname; %SVG.a.content; >
106<!-- end of SVG.a.element -->]]>
107
108<!ENTITY % SVG.a.attlist "INCLUDE" >
109<![%SVG.a.attlist;[
110<!ATTLIST %SVG.a.qname;
111    %SVG.Core.attrib;
112    %SVG.Conditional.attrib;
113    %SVG.Style.attrib;
114    %SVG.Presentation.attrib;
115    %SVG.GraphicalEvents.attrib;
116    %SVG.XLinkReplace.attrib;
117    %SVG.External.attrib;
118    transform %TransformList.datatype; #IMPLIED
119    target %LinkTarget.datatype; #IMPLIED
120>
121<!-- end of SVG.a.attlist -->]]>
122
123<!-- end of svg-hyperlink.mod -->
Note: See TracBrowser for help on using the repository browser.