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-cursor.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.3 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Cursor Module ................................................. -->
3<!-- file: svg-cursor.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-cursor.mod,v 1.3 2002/10/24 17:40:15 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ELEMENTS SVG 1.1 Cursor//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-cursor.mod"
13
14     ....................................................................... -->
15
16<!-- Cursor
17
18        cursor
19
20     This module declares markup to provide support for cursor.
21-->
22
23<!-- 'cursor' property/attribute value (e.g., 'crosshair', <uri>) -->
24<!ENTITY % CursorValue.datatype "CDATA" >
25
26<!-- Qualified Names (Default) ......................... -->
27
28<!ENTITY % SVG.cursor.qname "cursor" >
29
30<!-- Attribute Collections (Default) ................... -->
31
32<!ENTITY % SVG.Core.attrib "" >
33<!ENTITY % SVG.Conditional.attrib "" >
34<!ENTITY % SVG.XLinkRequired.attrib "" >
35<!ENTITY % SVG.External.attrib "" >
36
37<!-- SVG.Cursor.class .................................. -->
38
39<!ENTITY % SVG.Cursor.extra.class "" >
40
41<!ENTITY % SVG.Cursor.class
42    "| %SVG.cursor.qname; %SVG.Cursor.extra.class;"
43>
44
45<!-- SVG.Cursor.attrib ................................. -->
46
47<!ENTITY % SVG.Cursor.extra.attrib "" >
48
49<!ENTITY % SVG.Cursor.attrib
50    "cursor %CursorValue.datatype; #IMPLIED
51     %SVG.Cursor.extra.attrib;"
52>
53
54<!-- cursor: Cursor Element ............................ -->
55
56<!ENTITY % SVG.cursor.extra.content "" >
57
58<!ENTITY % SVG.cursor.element "INCLUDE" >
59<![%SVG.cursor.element;[
60<!ENTITY % SVG.cursor.content
61    "( %SVG.Description.class; %SVG.cursor.extra.content; )*"
62>
63<!ELEMENT %SVG.cursor.qname; %SVG.cursor.content; >
64<!-- end of SVG.cursor.element -->]]>
65
66<!ENTITY % SVG.cursor.attlist "INCLUDE" >
67<![%SVG.cursor.attlist;[
68<!ATTLIST %SVG.cursor.qname;
69    %SVG.Core.attrib;
70    %SVG.Conditional.attrib;
71    %SVG.XLinkRequired.attrib;
72    %SVG.External.attrib;
73    x %Coordinate.datatype; #IMPLIED
74    y %Coordinate.datatype; #IMPLIED
75>
76<!-- end of SVG.cursor.attlist -->]]>
77
78<!-- end of svg-cursor.mod -->
Note: See TracBrowser for help on using the repository browser.