1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xml:lang="en" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0">
<a:documentation>
SVG 1.1 Graphical Element Events Attribute Module
file: svg-graphevents-attrib.rng
This is SVG, a language for describing two-dimensional graphics in XML.
Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
$Id: svg-graphevents-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
</a:documentation>
<a:documentation>
Graphical Element Events Attribute
onfocusin, onfocusout, onactivate, onclick, onmousedown, onmouseup,
onmouseover, onmousemove, onmouseout, onload
This module defines the GraphicalEvents attribute set.
</a:documentation>
<define name="SVG.onfocusin.attrib">
<optional>
<attribute name="onfocusin">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onfocusout.attrib">
<optional>
<attribute name="onfocusout">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onactivate.attrib">
<optional>
<attribute name="onactivate">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onclick.attrib">
<optional>
<attribute name="onclick">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onmousedown.attrib">
<optional>
<attribute name="onmousedown">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onmouseup.attrib">
<optional>
<attribute name="onmouseup">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onmouseover.attrib">
<optional>
<attribute name="onmouseover">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onmousemove.attrib">
<optional>
<attribute name="onmousemove">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onmouseout.attrib">
<optional>
<attribute name="onmouseout">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onload.attrib" combine="interleave">
<optional>
<attribute name="onload">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.GraphicalEvents.extra.attrib">
<empty/>
</define>
<define name="SVG.GraphicalEvents.attrib" combine="interleave">
<ref name="SVG.onfocusin.attrib"/>
<ref name="SVG.onfocusout.attrib"/>
<ref name="SVG.onactivate.attrib"/>
<ref name="SVG.onclick.attrib"/>
<ref name="SVG.onmousedown.attrib"/>
<ref name="SVG.onmouseup.attrib"/>
<ref name="SVG.onmouseover.attrib"/>
<ref name="SVG.onmousemove.attrib"/>
<ref name="SVG.onmouseout.attrib"/>
<ref name="SVG.onload.attrib"/>
<ref name="SVG.GraphicalEvents.extra.attrib"/>
</define>
</grammar>
|