Mercurial > emacs
annotate etc/schema/dbsoextbl.rnc @ 96486:7369ded3b436
Typo and docstring fixes.
* url.el (url-do-setup):
* url-dired.el (url-dired-minor-mode):
* url-file.el (url-file-find-possibly-compressed-file):
* url-gw.el (url-gateway-broken-resolution):
* url-handlers.el (url-handler-regexp):
* url-imap.el (url-imap-default-port):
* url-methods.el (url-scheme-get-property): Fix typos in docstrings.
* url-auth.el (url-basic-auth-storage, url-digest-auth):
Fix typos in docstrings.
(url-digest-auth-storage, url-register-auth-scheme): Reflow docstrings.
* url-cache.el (url-cache-prepare): Doc fix.
(url-cache-create-filename-human-readable, url-cache-extract):
Fix typos in docstrings.
* url-dav.el (url-intersection, url-dav-iso8601-regexp)
(url-dav-delete-something): Fix typos in docstrings.
(url-dav-http-success-p, url-dav-file-name-all-completions)
(url-dav-directory-files, url-dav-file-name-completion): Doc fixes.
* url-http.el (url-http-idle-sentinel): Doc fix.
* url-irc.el (url-irc-default-port): Fix typo in docstring.
(url-irc-function): Doc fix.
* url-util.el (url-get-url-filename-chars, url-unhex-string):
Fix typos in docstrings.
(url-file-extension): Doc fix.
* url-vars.el (url-current-object, url-current-mime-headers)
(url-privacy-level, url-mail-command, url-mime-language-string):
Fix typos in docstrings.
(url-honor-refresh-requests): Reflow docstring.
(url-using-proxy): Doc fix.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 02 Jul 2008 11:14:38 +0000 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 # Definitions specific to the OASIS XML Exchange Table Model. |
2 | |
3 # Reference OASIS Exchange Table Model | |
4 include "soextbl.rnc" { | |
5 # Override definition of start | |
6 start |= notAllowed | |
7 # Add common attributes and the Label attribute to Table and | |
8 # InformalTable. | |
9 bodyatt = common.attrib, label.attrib, tables.role.attrib | |
10 # Add common attributes to TGroup, ColSpec, TBody, THead, Row, Entry | |
11 tbl.tgroup.att = common.attrib | |
12 tbl.colspec.att = common.attrib | |
13 tbl.tbody.att = common.attrib | |
14 tbl.thead.att = common.attrib | |
15 tbl.row.att = common.attrib | |
16 tbl.entry.att = common.attrib | |
17 # Content model for Table. | |
18 tbl.table.mdl = | |
19 blockinfo?, | |
20 formalobject.title.content, | |
21 ndxterm.class*, | |
22 textobject*, | |
23 (graphic+ | mediaobject+ | tgroup+) | |
24 # Allow either objects or inlines; beware of REs between elements. | |
25 tbl.entry.mdl = (para.char.mix | tabentry.mix)* | |
26 } | |
27 | |
28 common.table.attribs = bodyatt | |
29 | |
30 # end of table.module |