]> git.eshelyaron.com Git - emacs.git/commitdiff
Renamed xhtml-basic-table.rnc to xhtml-btable.rnc; all users changed.
authorEli Zaretskii <eliz@gnu.org>
Sat, 15 Dec 2007 11:08:24 +0000 (11:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 15 Dec 2007 11:08:24 +0000 (11:08 +0000)
etc/schema/xhtml-basic-table.rnc [deleted file]
etc/schema/xhtml-btable.rnc [new file with mode: 0644]
etc/schema/xhtml-table.rnc

diff --git a/etc/schema/xhtml-basic-table.rnc b/etc/schema/xhtml-basic-table.rnc
deleted file mode 100644 (file)
index 97e10a5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# Basic Tables Module
-
-table = element table { table.attlist, caption?, tr+ }
-table.attlist =
-  Common.attrib,
-  attribute summary { Text.datatype }?
-caption = element caption { caption.attlist, Inline.model }
-caption.attlist = Common.attrib
-tr = element tr { tr.attlist, (th | td)+ }
-tr.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib
-th = element th { th.attlist, Flow.model }
-th.attlist = Cell.attrib
-td = element td { td.attlist, Flow.model }
-td.attlist = Cell.attrib
-Cell.attrib =
-  Common.attrib,
-  attribute abbr { Text.datatype }?,
-  attribute axis { text }?,
-  attribute headers { IDREFS.datatype }?,
-  scope.attrib,
-  attribute rowspan { Number.datatype }?,
-  attribute colspan { Number.datatype }?,
-  CellHAlign.attrib,
-  CellVAlign.attrib
-CellHAlign.attrib = attribute align { "left" | "center" | "right" }?
-CellVAlign.attrib = attribute valign { "top" | "middle" | "bottom" }?
-scope.attrib = attribute scope { "row" | "col" }?
-Block.class |= table
diff --git a/etc/schema/xhtml-btable.rnc b/etc/schema/xhtml-btable.rnc
new file mode 100644 (file)
index 0000000..97e10a5
--- /dev/null
@@ -0,0 +1,28 @@
+# Basic Tables Module
+
+table = element table { table.attlist, caption?, tr+ }
+table.attlist =
+  Common.attrib,
+  attribute summary { Text.datatype }?
+caption = element caption { caption.attlist, Inline.model }
+caption.attlist = Common.attrib
+tr = element tr { tr.attlist, (th | td)+ }
+tr.attlist = Common.attrib, CellHAlign.attrib, CellVAlign.attrib
+th = element th { th.attlist, Flow.model }
+th.attlist = Cell.attrib
+td = element td { td.attlist, Flow.model }
+td.attlist = Cell.attrib
+Cell.attrib =
+  Common.attrib,
+  attribute abbr { Text.datatype }?,
+  attribute axis { text }?,
+  attribute headers { IDREFS.datatype }?,
+  scope.attrib,
+  attribute rowspan { Number.datatype }?,
+  attribute colspan { Number.datatype }?,
+  CellHAlign.attrib,
+  CellVAlign.attrib
+CellHAlign.attrib = attribute align { "left" | "center" | "right" }?
+CellVAlign.attrib = attribute valign { "top" | "middle" | "bottom" }?
+scope.attrib = attribute scope { "row" | "col" }?
+Block.class |= table
index 70055b1598f9c786683e3ad45054bfe605cf828f..129d7b6742c87d5a7e93820ad708e1e06ba10871 100644 (file)
@@ -3,7 +3,7 @@
 # This builds on the basic tables module, unlike with the DTD
 # implementation.
 
-include "xhtml-basic-table.rnc" {
+include "xhtml-btable.rnc" {
   table =
     element table {
       table.attlist,