annotate etc/schema/xhtml-applet.rnc @ 106793:f0cdc68631e2
Fix typos in ffap.el.
* ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
(ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
(ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
(ffap-read-url-internal, ffap-menu, ffap-at-mouse):
Fix typos in docstrings.
(ffap-url-regexp): Doc fix.
(ffap-at-mouse): Fix typo in message.
author |
Juanma Barranquero <lekktu@gmail.com> |
date |
Mon, 11 Jan 2010 16:22:23 +0100 |
parents |
38f93f3d00a2 |
children |
|
rev |
line source |
86361
|
1 # Applet Module
|
|
2
|
|
3 applet =
|
|
4 element applet {
|
|
5 applet.attlist,
|
|
6 # No restrictions on mixed content in TREX.
|
|
7 param*,
|
|
8 Flow.model
|
|
9 }
|
|
10 applet.attlist =
|
|
11 Core.attrib,
|
|
12 attribute alt { Text.datatype },
|
|
13 attribute archive { text }?,
|
|
14 attribute code { text }?,
|
|
15 attribute codebase { URI.datatype }?,
|
|
16 attribute object { text }?,
|
|
17 attribute height { Length.datatype },
|
|
18 attribute width { Length.datatype }
|
|
19 Inline.class |= applet
|