view etc/schema/xhtml-csismap.rnc @ 112221:1e3cae16f7b0

Update refcards/*.tex short copyright year to 2011. * refcards/calccard.tex, refcards/cs-dired-ref.tex: * refcards/cs-refcard.tex, refcards/cs-survival.tex: * refcards/de-refcard.tex, refcards/dired-ref.tex: * refcards/fr-dired-ref.tex, refcards/fr-refcard.tex: * refcards/fr-survival.tex, refcards/orgcard.tex: * refcards/pl-refcard.tex, refcards/pt-br-refcard.tex: * refcards/refcard.tex, refcards/ru-refcard.tex: * refcards/sk-dired-ref.tex, refcards/sk-refcard.tex: * refcards/sk-survival.tex, refcards/survival.tex: * refcards/vipcard.tex, refcards/viperCard.tex: Update short copyright year to 2011.
author Glenn Morris <rgm@gnu.org>
date Sun, 02 Jan 2011 16:39:50 -0800
parents 38f93f3d00a2
children
line wrap: on
line source

# Client-side Image Map Module

area = element area { area.attlist }
area.attlist =
  Common.attrib,
  attribute href { URI.datatype }?,
  shape.attrib,
  coords.attrib,
  attribute nohref { "nohref" }?,
  attribute alt { Text.datatype },
  attribute tabindex { Number.datatype }?,
  attribute accesskey { Character.datatype }?
map =
  element map {
    map.attlist,
    (# This does not use Block.mix
     # because loose.dtd doesn't use %Flow;
     Block.class
     | area)+
  }
map.attlist = CommonIdRequired.attrib
a.attlist &= shape.attrib, coords.attrib
img.attlist &= usemap.attlist
object.attlist &= usemap.attlist
usemap.attlist = attribute usemap { IDREF.datatype }?
shape.attrib =
  attribute shape { "rect" | "circle" | "poly" | "default" }?
coords.attrib = attribute coords { text }?
Inline.class |= map