Mercurial > emacs
view etc/schema/xhtml-table.rnc @ 108229:0c1c81ee223e
Move LD_SWITCH_X_SITE_AUX from cpp to autoconf.
* configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE as well.
(LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
* nt/config.nt (LD_SWITCH_X_SITE_AUX): Remove.
* src/s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
variable.
* src/s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
(LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
* src/s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
(LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
LD_SWITCH_SYSTEM_tmp.
* src/Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
New variables, set by configure.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 03 May 2010 20:13:35 -0700 |
parents | 309bef8b751c |
children |
line wrap: on
line source
# Tables Module # This builds on the basic tables module, unlike with the DTD # implementation. include "xhtml-btable.rnc" { table = element table { table.attlist, caption?, (col* | colgroup*), ((thead?, tfoot?, tbody+) | tr+) } th = element th { th.attlist, Flow.model } td = element td { td.attlist, Flow.model } CellHAlign.attrib = attribute align { "left" | "center" | "right" | "justify" | "char" }?, attribute char { Character.datatype }?, attribute charoff { Length.datatype }? CellVAlign.attrib = attribute valign { "top" | "middle" | "bottom" | "baseline" }? scope.attrib = attribute scope { "row" | "col" | "rowgroup" | "colgroup" }? } table.attlist &= attribute width { Length.datatype }?, attribute border { Pixels.datatype }?, frame.attrib, rules.attrib, attribute cellspacing { Length.datatype }?, attribute cellpadding { Length.datatype }? col = element col { col.attlist } col.attlist = Common.attrib, attribute span { Number.datatype }?, attribute width { MultiLength.datatype }?, CellHAlign.attrib, CellVAlign.attrib colgroup = element colgroup { colgroup.attlist, col* } colgroup.attlist = Common.attrib, attribute span { Number.datatype }?, attribute width { MultiLength.datatype }?, CellHAlign.attrib, CellVAlign.attrib tbody = element tbody { tbody.attlist, tr+ } tbody.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib thead = element thead { thead.attlist, tr+ } thead.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib tfoot = element tfoot { tfoot.attlist, tr+ } tfoot.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib frame.attrib = attribute frame { "void" | "above" | "below" | "hsides" | "lhs" | "rhs" | "vsides" | "box" | "border" }? rules.attrib = attribute rules { "none" | "groups" | "rows" | "cols" | "all" }?