Mercurial > emacs
changeset 87294:9e48c9dc543f
Renamed xhtml-basic-form.rnc to xhtml-bform.rnc; all users fixed..
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 15 Dec 2007 11:01:36 +0000 |
parents | 1f52f42ea971 |
children | 309bef8b751c |
files | etc/schema/xhtml-basic-form.rnc etc/schema/xhtml-bform.rnc etc/schema/xhtml-form.rnc etc/schema/xhtml.rnc |
diffstat | 4 files changed, 66 insertions(+), 66 deletions(-) [+] |
line wrap: on
line diff
--- a/etc/schema/xhtml-basic-form.rnc Sat Dec 15 10:50:45 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,63 +0,0 @@ -# Simplified Forms Module - -form = - element form { - form.attlist, - # Don't use Block.model, because this gets redefined by the - # legacy module. - Block.class+ - } -form.attlist = - Common.attrib, - attribute action { URI.datatype }, - attribute method { "get" | "post" }?, - attribute enctype { ContentType.datatype }? -label = element label { label.attlist, Inline.model } -label.attlist = - Common.attrib, - attribute for { IDREF.datatype }?, - attribute accesskey { Character.datatype }? -input = element input { input.attlist } -input.attlist = - Common.attrib, - attribute type { InputType.class }?, - attribute name { text }?, - attribute value { text }?, - attribute checked { "checked" }?, - attribute size { text }?, - attribute maxlength { Number.datatype }?, - attribute src { URI.datatype }?, - attribute accesskey { Character.datatype }? -InputType.class = - "text" - | "password" - | "checkbox" - | "radio" - | "submit" - | "reset" - | "hidden" -select = element select { select.attlist, option+ } -select.attlist = - Common.attrib, - attribute name { text }?, - attribute size { Number.datatype }?, - attribute multiple { "multiple" }? -option = - element option { - Common.attrib, - attribute selected { "selected" }?, - attribute value { text }?, - text - } -textarea = element textarea { textarea.attlist } -textarea.attlist = - Common.attrib, - attribute name { text }?, - attribute rows { Number.datatype }, - attribute cols { Number.datatype }, - attribute accesskey { Character.datatype }?, - text -Form.class = form -Formctrl.class = input | label | select | textarea -Block.class |= Form.class -Inline.class |= Formctrl.class
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/etc/schema/xhtml-bform.rnc Sat Dec 15 11:01:36 2007 +0000 @@ -0,0 +1,63 @@ +# Simplified Forms Module + +form = + element form { + form.attlist, + # Don't use Block.model, because this gets redefined by the + # legacy module. + Block.class+ + } +form.attlist = + Common.attrib, + attribute action { URI.datatype }, + attribute method { "get" | "post" }?, + attribute enctype { ContentType.datatype }? +label = element label { label.attlist, Inline.model } +label.attlist = + Common.attrib, + attribute for { IDREF.datatype }?, + attribute accesskey { Character.datatype }? +input = element input { input.attlist } +input.attlist = + Common.attrib, + attribute type { InputType.class }?, + attribute name { text }?, + attribute value { text }?, + attribute checked { "checked" }?, + attribute size { text }?, + attribute maxlength { Number.datatype }?, + attribute src { URI.datatype }?, + attribute accesskey { Character.datatype }? +InputType.class = + "text" + | "password" + | "checkbox" + | "radio" + | "submit" + | "reset" + | "hidden" +select = element select { select.attlist, option+ } +select.attlist = + Common.attrib, + attribute name { text }?, + attribute size { Number.datatype }?, + attribute multiple { "multiple" }? +option = + element option { + Common.attrib, + attribute selected { "selected" }?, + attribute value { text }?, + text + } +textarea = element textarea { textarea.attlist } +textarea.attlist = + Common.attrib, + attribute name { text }?, + attribute rows { Number.datatype }, + attribute cols { Number.datatype }, + attribute accesskey { Character.datatype }?, + text +Form.class = form +Formctrl.class = input | label | select | textarea +Block.class |= Form.class +Inline.class |= Formctrl.class
--- a/etc/schema/xhtml-form.rnc Sat Dec 15 10:50:45 2007 +0000 +++ b/etc/schema/xhtml-form.rnc Sat Dec 15 11:01:36 2007 +0000 @@ -2,7 +2,7 @@ # Unlike the DTD implementation, this builds on the basic-form module -include "xhtml-basic-form.rnc" { +include "xhtml-bform.rnc" { select = element select { select.attlist, (option | optgroup)+ } } form.attlist &=
--- a/etc/schema/xhtml.rnc Sat Dec 15 10:50:45 2007 +0000 +++ b/etc/schema/xhtml.rnc Sat Dec 15 11:01:36 2007 +0000 @@ -22,11 +22,11 @@ include "xhtml-pres.rnc" include "xhtml-edit.rnc" include "xhtml-applet.rnc" -# include "xhtml-basic-form.rnc" +# include "xhtml-bform.rnc" include "xhtml-form.rnc" include "xhtml-style.rnc" include "xhtml-script.rnc" -# include "xhtml-basic-table.rnc" +# include "xhtml-btable.rnc" include "xhtml-table.rnc" include "xhtml-csismap.rnc" include "xhtml-events.rnc"