~ubuntu-branches/debian/wheezy/jing-trang/wheezy

« back to all changes in this revision

Viewing changes to xhtml/modules/events.rng

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-2kweef05h5v9j3ni
Tags: upstream-20090818
ImportĀ upstreamĀ versionĀ 20090818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!-- Events Module -->
 
3
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
 
4
 
 
5
<define name="a.attlist" combine="interleave">
 
6
  <optional>
 
7
    <attribute name="onblur">
 
8
      <ref name="Script.datatype"/>
 
9
    </attribute>
 
10
  </optional>
 
11
  <optional>
 
12
    <attribute name="onfocus">
 
13
      <ref name="Script.datatype"/>
 
14
    </attribute>
 
15
  </optional>
 
16
</define>
 
17
 
 
18
<define name="area.attlist" combine="interleave">
 
19
  <optional>
 
20
    <attribute name="onblur">
 
21
      <ref name="Script.datatype"/>
 
22
    </attribute>
 
23
  </optional>
 
24
  <optional>
 
25
    <attribute name="onfocus">
 
26
      <ref name="Script.datatype"/>
 
27
    </attribute>
 
28
  </optional>
 
29
</define>
 
30
 
 
31
<define name="form.attlist" combine="interleave">
 
32
  <optional>
 
33
    <attribute name="onreset">
 
34
      <ref name="Script.datatype"/>
 
35
    </attribute>
 
36
  </optional>
 
37
  <optional>
 
38
    <attribute name="onsubmit">
 
39
      <ref name="Script.datatype"/>
 
40
    </attribute>
 
41
  </optional>
 
42
</define>
 
43
 
 
44
<define name="body.attlist" combine="interleave">
 
45
  <optional>
 
46
    <attribute name="onload">
 
47
      <ref name="Script.datatype"/>
 
48
    </attribute>
 
49
  </optional>
 
50
  <optional>
 
51
    <attribute name="onunload">
 
52
      <ref name="Script.datatype"/>
 
53
    </attribute>
 
54
  </optional>
 
55
</define>
 
56
 
 
57
<define name="label.attlist" combine="interleave">
 
58
  <optional>
 
59
    <attribute name="onblur">
 
60
      <ref name="Script.datatype"/>
 
61
    </attribute>
 
62
  </optional>
 
63
  <optional>
 
64
    <attribute name="onfocus">
 
65
      <ref name="Script.datatype"/>
 
66
    </attribute>
 
67
  </optional>
 
68
</define>
 
69
 
 
70
<define name="input.attlist" combine="interleave">
 
71
  <optional>
 
72
    <attribute name="onblur">
 
73
      <ref name="Script.datatype"/>
 
74
    </attribute>
 
75
  </optional>
 
76
  <optional>
 
77
    <attribute name="onchange">
 
78
      <ref name="Script.datatype"/>
 
79
    </attribute>
 
80
  </optional>
 
81
  <optional>
 
82
    <attribute name="onfocus">
 
83
      <ref name="Script.datatype"/>
 
84
    </attribute>
 
85
  </optional>
 
86
  <optional>
 
87
    <attribute name="onselect">
 
88
      <ref name="Script.datatype"/>
 
89
    </attribute>
 
90
  </optional>
 
91
</define>
 
92
 
 
93
<define name="select.attlist" combine="interleave">
 
94
  <optional>
 
95
    <attribute name="onblur">
 
96
      <ref name="Script.datatype"/>
 
97
    </attribute>
 
98
  </optional>
 
99
  <optional>
 
100
    <attribute name="onchange">
 
101
      <ref name="Script.datatype"/>
 
102
    </attribute>
 
103
  </optional>
 
104
  <optional>
 
105
    <attribute name="onfocus">
 
106
      <ref name="Script.datatype"/>
 
107
    </attribute>
 
108
  </optional>
 
109
</define>
 
110
 
 
111
<define name="textarea.attlist" combine="interleave">
 
112
  <optional>
 
113
    <attribute name="onblur">
 
114
      <ref name="Script.datatype"/>
 
115
    </attribute>
 
116
  </optional>
 
117
  <optional>
 
118
    <attribute name="onchange">
 
119
      <ref name="Script.datatype"/>
 
120
    </attribute>
 
121
  </optional>
 
122
  <optional>
 
123
    <attribute name="onfocus">
 
124
      <ref name="Script.datatype"/>
 
125
    </attribute>
 
126
  </optional>
 
127
  <optional>
 
128
    <attribute name="onselect">
 
129
      <ref name="Script.datatype"/>
 
130
    </attribute>
 
131
  </optional>
 
132
</define>
 
133
 
 
134
<define name="button.attlist" combine="interleave">
 
135
  <optional>
 
136
    <attribute name="onblur">
 
137
      <ref name="Script.datatype"/>
 
138
    </attribute>
 
139
  </optional>
 
140
  <optional>
 
141
    <attribute name="onfocus">
 
142
      <ref name="Script.datatype"/>
 
143
    </attribute>
 
144
  </optional>
 
145
</define>
 
146
 
 
147
<define name="Events.attrib">
 
148
  <optional>
 
149
    <attribute name="onclick">
 
150
      <ref name="Script.datatype"/>
 
151
    </attribute>
 
152
  </optional>
 
153
  <optional>
 
154
    <attribute name="ondblclick">
 
155
      <ref name="Script.datatype"/>
 
156
    </attribute>
 
157
  </optional>
 
158
  <optional>
 
159
    <attribute name="onmousedown">
 
160
      <ref name="Script.datatype"/>
 
161
    </attribute>
 
162
  </optional>
 
163
  <optional>
 
164
    <attribute name="onmouseup">
 
165
      <ref name="Script.datatype"/>
 
166
    </attribute>
 
167
  </optional>
 
168
  <optional>
 
169
    <attribute name="onmouseover">
 
170
      <ref name="Script.datatype"/>
 
171
    </attribute>
 
172
  </optional>
 
173
  <optional>
 
174
    <attribute name="onmousemove">
 
175
      <ref name="Script.datatype"/>
 
176
    </attribute>
 
177
  </optional>
 
178
  <optional>
 
179
    <attribute name="onmouseout">
 
180
      <ref name="Script.datatype"/>
 
181
    </attribute>
 
182
  </optional>
 
183
  <optional>
 
184
    <attribute name="onkeypress">
 
185
      <ref name="Script.datatype"/>
 
186
    </attribute>
 
187
  </optional>
 
188
  <optional>
 
189
    <attribute name="onkeydown">
 
190
      <ref name="Script.datatype"/>
 
191
    </attribute>
 
192
  </optional>
 
193
  <optional>
 
194
    <attribute name="onkeyup">
 
195
      <ref name="Script.datatype"/>
 
196
    </attribute>
 
197
  </optional>
 
198
</define>
 
199
 
 
200
<define name="Common.attrib" combine="interleave">
 
201
  <ref name="Events.attrib"/>
 
202
</define>
 
203
 
 
204
<define name="CommonIdRequired.attrib" combine="interleave">
 
205
  <ref name="Events.attrib"/>
 
206
</define>
 
207
 
 
208
</grammar>
 
 
b'\\ No newline at end of file'