Mercurial > emacs
annotate 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 |
rev | line source |
---|---|
86361 | 1 # Tables Module |
2 | |
3 # This builds on the basic tables module, unlike with the DTD | |
4 # implementation. | |
5 | |
87295
309bef8b751c
Renamed xhtml-basic-table.rnc to xhtml-btable.rnc; all users changed.
Eli Zaretskii <eliz@gnu.org>
parents:
86361
diff
changeset
|
6 include "xhtml-btable.rnc" { |
86361 | 7 table = |
8 element table { | |
9 table.attlist, | |
10 caption?, | |
11 (col* | colgroup*), | |
12 ((thead?, tfoot?, tbody+) | tr+) | |
13 } | |
14 th = element th { th.attlist, Flow.model } | |
15 td = element td { td.attlist, Flow.model } | |
16 CellHAlign.attrib = | |
17 attribute align { | |
18 "left" | "center" | "right" | "justify" | "char" | |
19 }?, | |
20 attribute char { Character.datatype }?, | |
21 attribute charoff { Length.datatype }? | |
22 CellVAlign.attrib = | |
23 attribute valign { "top" | "middle" | "bottom" | "baseline" }? | |
24 scope.attrib = | |
25 attribute scope { "row" | "col" | "rowgroup" | "colgroup" }? | |
26 } | |
27 table.attlist &= | |
28 attribute width { Length.datatype }?, | |
29 attribute border { Pixels.datatype }?, | |
30 frame.attrib, | |
31 rules.attrib, | |
32 attribute cellspacing { Length.datatype }?, | |
33 attribute cellpadding { Length.datatype }? | |
34 col = element col { col.attlist } | |
35 col.attlist = | |
36 Common.attrib, | |
37 attribute span { Number.datatype }?, | |
38 attribute width { MultiLength.datatype }?, | |
39 CellHAlign.attrib, | |
40 CellVAlign.attrib | |
41 colgroup = element colgroup { colgroup.attlist, col* } | |
42 colgroup.attlist = | |
43 Common.attrib, | |
44 attribute span { Number.datatype }?, | |
45 attribute width { MultiLength.datatype }?, | |
46 CellHAlign.attrib, | |
47 CellVAlign.attrib | |
48 tbody = element tbody { tbody.attlist, tr+ } | |
49 tbody.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib | |
50 thead = element thead { thead.attlist, tr+ } | |
51 thead.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib | |
52 tfoot = element tfoot { tfoot.attlist, tr+ } | |
53 tfoot.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib | |
54 frame.attrib = | |
55 attribute frame { | |
56 "void" | |
57 | "above" | |
58 | "below" | |
59 | "hsides" | |
60 | "lhs" | |
61 | "rhs" | |
62 | "vsides" | |
63 | "box" | |
64 | "border" | |
65 }? | |
66 rules.attrib = | |
67 attribute rules { "none" | "groups" | "rows" | "cols" | "all" }? |