Mercurial > emacs
annotate etc/schema/xhtml-form.rnc @ 103751:47e338b0e07b
* progmodes/gdb-mi.el (gdb-init-1): Set correct mode name for
disassembly buffer.
(gdb-breakpoints-list-handler-custom): Replacement for
gdb-break-list-handler. Using real parser instead of regexps now.
(gdb-place-breakpoints): Replacement for gdb-break-list-custom.
Use gdb-breakpoints-list instead of parsing breakpoints buffer to
place breakpoints.
(def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
functions.
(gdb-disassembly-handler-custom): Show overlay arrow.
(gdb-disassembly-place-breakpoints): Show breakpoints in
disassembly buffer.
(gdb-toggle-breakpoint, gdb-delete-breakpoint)
(gdb-goto-breakpoint): Using gdb-breakpoint text properties
instead of parsing breakpoints buffer.
Fixed old menu references in gud-menu-map.
author | Dmitry Dzhus <dima@sphinx.net.ru> |
---|---|
date | Tue, 07 Jul 2009 17:22:26 +0000 |
parents | 9e48c9dc543f |
children |
rev | line source |
---|---|
86361 | 1 # Forms Module |
2 | |
3 # Unlike the DTD implementation, this builds on the basic-form module | |
4 | |
87294
9e48c9dc543f
Renamed xhtml-basic-form.rnc to xhtml-bform.rnc; all users fixed..
Eli Zaretskii <eliz@gnu.org>
parents:
86361
diff
changeset
|
5 include "xhtml-bform.rnc" { |
86361 | 6 select = element select { select.attlist, (option | optgroup)+ } |
7 } | |
8 form.attlist &= | |
9 attribute accept-charset { Charsets.datatype }?, | |
10 attribute accept { ContentTypes.datatype }? | |
11 input.attlist &= | |
12 attribute disabled { "disabled" }?, | |
13 attribute readonly { "readonly" }?, | |
14 attribute alt { text }?, | |
15 attribute tabindex { Number.datatype }?, | |
16 attribute accept { ContentTypes.datatype }? | |
17 InputType.class |= "image" | "button" | |
18 select.attlist &= | |
19 attribute disabled { "disabled" }?, | |
20 attribute tabindex { Number.datatype }? | |
21 option.attlist &= | |
22 attribute disabled { "disabled" }?, | |
23 attribute label { Text.datatype }? | |
24 optgroup = element optgroup { optgroup.attlist, option+ } | |
25 optgroup.attlist = | |
26 Common.attrib, | |
27 attribute disabled { "disabled" }?, | |
28 attribute label { Text.datatype } | |
29 textarea.attlist &= | |
30 attribute disabled { "disabled" }?, | |
31 attribute readonly { "readonly" }?, | |
32 attribute tabindex { Number.datatype }? | |
33 fieldset = element fieldset { fieldset.attlist, legend, Flow.model } | |
34 fieldset.attlist = Common.attrib | |
35 button = element button { button.attlist, Flow.model } | |
36 button.attlist = | |
37 Common.attrib, | |
38 attribute name { text }?, | |
39 attribute value { text }?, | |
40 attribute type { "button" | "submit" | "reset" }?, | |
41 attribute disabled { "disabled" }?, | |
42 attribute tabindex { Number.datatype }?, | |
43 attribute accesskey { Character.datatype }? | |
44 legend = element legend { legend.attlist, Inline.model } | |
45 legend.attlist = | |
46 Common.attrib, | |
47 attribute accesskey { Character.datatype }? | |
48 Form.class |= fieldset | |
49 Formctrl.class |= button |