annotate etc/schema/xhtml-struct.rnc @ 99002:b232f24c023c

(Visiting): Document find-file-confirm-nonexistent-file. (Version Control): Add VC Directory Mode and VC Directory Commands to the submenu. (Why Version Control?): Use table format. (Version Control Systems): Note that Meta-CVS support is gone. (VCS Concepts): Note precisely when VC started supporting filesets. Remove bogus xref to CVS Options node. (Types of Log File): Copyedits. (VC Mode Line): Document tooltips and mouse-1 on VC indicator. (Basic VC Editing): Content moved from Selecting A Fileset and Doing The Right Thing. (Selecting A Fileset, Doing The Right Thing): Nodes deleted. (Log Buffer): Reorganize node, putting C-c C-c description first. (Old Revisions): Use CVS for example, not RCS. (Secondary VC Commands): Remove VC Directory Mode and VC Directory Commands from the submenu, putting them under Version Control. (VC Directory Mode): Move node contents here from vc1-xtra.texi; we need to include it in the manual unconditionally, since it is now crucial to using distributed version control systems.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 21 Oct 2008 20:50:54 +0000
parents 38f93f3d00a2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
86361
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
1 # Structure Module
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
2
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
3 start = html
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
4 title = element title { title.attlist, text }
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
5 title.attlist = I18n.attrib
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
6 head = element head { head.attlist, head.content }
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
7 head.attlist = I18n.attrib, profile.attlist
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
8 head.content = title
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
9 profile.attlist = attribute profile { URI.datatype }?
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
10 body = element body { body.attlist, Block.model }
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
11 body.attlist = Common.attrib
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
12 html = element html { html.attlist, head, body }
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
13 html.attlist = XHTML.version.attrib, I18n.attrib
38f93f3d00a2 Initial merge of nxml
Mark A. Hershberger <mah@everybody.org>
parents:
diff changeset
14 XHTML.version.attrib = attribute version { FPI.datatype }?