86361
|
1 # Definitions specific to the CALS Table Model.
|
|
2
|
|
3 # Reference CALS Table Model
|
|
4 include "calstbl.rnc" {
|
|
5 # Override definition of start
|
|
6 start |= notAllowed
|
|
7 # Add label and role attributes to table and informaltable
|
|
8 bodyatt = label.attrib
|
|
9 # Add common attributes to Table, TGroup, TBody, THead, TFoot, Row,
|
|
10 # EntryTbl, and Entry (and InformalTable element).
|
|
11 secur = common.attrib, tables.role.attrib
|
|
12 # Content model for Table.
|
|
13 tbl.table.mdl =
|
|
14 blockinfo?,
|
|
15 formalobject.title.content,
|
|
16 ndxterm.class*,
|
|
17 textobject*,
|
|
18 (graphic+ | mediaobject+ | tgroup+)
|
|
19 # Allow either objects or inlines; beware of REs between elements.
|
|
20 tbl.entry.mdl = para.char.mix | tabentry.mix
|
|
21 }
|
|
22
|
|
23 common.table.attribs = bodyatt, secur
|
|
24
|
|
25 # end of table.module
|