view etc/schema/dbcalstbl.rnc @ 110348:facbb9773cf5

Various updates for the Bugs section of the manual. * doc/emacs/trouble.texi (Bugs): Update the section intro. (Known Problems): New section. (Checklist): Misc updates. Prefer M-x report-emacs-bug. (Sending Patches): Bug fixes are best as responses to existing bugs. * doc/emacs/emacs.texi (Known Problems): Add menu entry for new section.
author Glenn Morris <rgm@gnu.org>
date Sat, 11 Sep 2010 17:31:47 -0700
parents 38f93f3d00a2
children
line wrap: on
line source

# Definitions specific to the CALS Table Model.

# Reference CALS Table Model
include "calstbl.rnc" {
  # Override definition of start
  start |= notAllowed
  # Add label and role attributes to table and informaltable
  bodyatt = label.attrib
  # Add common attributes to Table, TGroup, TBody, THead, TFoot, Row,
  # EntryTbl, and Entry (and InformalTable element).
  secur = common.attrib, tables.role.attrib
  # Content model for Table.
  tbl.table.mdl =
    blockinfo?,
    formalobject.title.content,
    ndxterm.class*,
    textobject*,
    (graphic+ | mediaobject+ | tgroup+)
  # Allow either objects or inlines; beware of REs between elements.
  tbl.entry.mdl = para.char.mix | tabentry.mix
}

common.table.attribs = bodyatt, secur

# end of table.module