Mercurial > emacs
view etc/schema/xhtml-table.rnc @ 108301:68fc9037b502
Fix MSDOS build broken by autoconfiscation and changes in symbol handling.
src/msdos.c (dos_set_window_size):
src/w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
instead of `XSYMBOL (foo)->value'.
config.bat: Allow for 2 leading `#'s in comments in
src/Makefile.in.
src/Makefile.in: Don't use Make-style comments past the "start of
cpp stuff" line.
(MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
src/s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
edited directly by msdos/sed1v2.inp).
msdos/sed3v2.inp (C_SWITCH_MACHINE): Edit to empty.
msdos/sed1v2.inp (@LIB_MATH@): Edit to -lm.
(C_SWITCH_MACHINE, C_SWITCH_SYSTEM, LD_SWITCH_SYSTEM_TEMACS)
(LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH)
(LD_SWITCH_SYSTEM, LD_SWITCH_SYSTEM_EXTRA, LIBTIFF, LIBJPEG)
(LIBPNG, LIBGIF, LIBXPM, XFT_LIBS, DBUS_CFLAGS, DBUS_LIBS)
(DBUS_OBJ, GCONF_CFLAGS, GCONF_LIBS, GTK_OBJ, LIBXMU, LIBXSM)
(LIBXTR6, XOBJ, TOOLKIT_LIBW, WIDGET_OBJ, CYGWIN_OBJ, NS_OBJ)
(NS_SUPPORT, LIBSELINUX_LIBS, START_FILES): Edit to empty.
(XMENU_OBJ): Edit to xmenu.o.
(FONT_OBJ): Edit to value used for X on Unix.
(PRE_ALLOC_OBJ): Edit to lastfile.o.
(POST_ALLOC_OBJ): Edit to $(vmlimitobj).
(@unexec@): Edit to unexec.o.
lisp/cus-start.el (all): Add native condition for tool-bar-* symbols.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 07 May 2010 17:07:51 +0300 |
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" }?