view etc/schema/xhtml-events.rnc @ 107541:d59e6301c2cd

Add "union tags" in mpc.el. * mpc.el: Remove backward compatibility code. (mpc-browser-tags): Change default. (mpc--find-memoize-union-tags): New var. (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun. (mpc-cmd-find): Handle the case where the playlist does not exist. Handle union-tags. (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags. (mpc-cmd-add): Use mpc-cmd-flush. (mpc-tagbrowser-tag-name): New fun. (mpc-tagbrowser-buf): Use it. (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 24 Mar 2010 20:06:08 -0400
parents 38f93f3d00a2
children
line wrap: on
line source

# Events Module

a.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onfocus { Script.datatype }?
area.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onfocus { Script.datatype }?
form.attlist &=
  attribute onreset { Script.datatype }?,
  attribute onsubmit { Script.datatype }?
body.attlist &=
  attribute onload { Script.datatype }?,
  attribute onunload { Script.datatype }?
label.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onfocus { Script.datatype }?
input.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onchange { Script.datatype }?,
  attribute onfocus { Script.datatype }?,
  attribute onselect { Script.datatype }?
select.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onchange { Script.datatype }?,
  attribute onfocus { Script.datatype }?
textarea.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onchange { Script.datatype }?,
  attribute onfocus { Script.datatype }?,
  attribute onselect { Script.datatype }?
button.attlist &=
  attribute onblur { Script.datatype }?,
  attribute onfocus { Script.datatype }?
Events.attrib =
  attribute onclick { Script.datatype }?,
  attribute ondblclick { Script.datatype }?,
  attribute onmousedown { Script.datatype }?,
  attribute onmouseup { Script.datatype }?,
  attribute onmouseover { Script.datatype }?,
  attribute onmousemove { Script.datatype }?,
  attribute onmouseout { Script.datatype }?,
  attribute onkeypress { Script.datatype }?,
  attribute onkeydown { Script.datatype }?,
  attribute onkeyup { Script.datatype }?
Common.attrib &= Events.attrib
CommonIdRequired.attrib &= Events.attrib