1 |
w |
1.1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<!-- ...................................................................... -->
|
3 |
|
|
<!-- HLink DTD ............................................................ -->
|
4 |
|
|
<!-- URI: http://www.w3.org/2002/06/hlink.dtd
|
5 |
|
|
|
6 |
|
|
This is HLink - a link recongnition mechanism for the XHTML Family.
|
7 |
|
|
|
8 |
|
|
Copyright ©2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
|
9 |
|
|
|
10 |
|
|
Editor: Masayasu Ishikawa <mimasa@w3.org>
|
11 |
|
|
Revision: Id: hlink.dtd,v 1.3 2002/09/06 20:04:18 mimasa Exp
|
12 |
|
|
|
13 |
|
|
Permission to use, copy, modify and distribute the HLink DTD and its
|
14 |
|
|
accompanying documentation for any purpose and without fee is hereby
|
15 |
|
|
granted in perpetuity, provided that the above copyright notice and
|
16 |
|
|
this paragraph appear in all copies. The copyright holders make no
|
17 |
|
|
representation about the suitability of this DTD for any purpose.
|
18 |
|
|
|
19 |
|
|
It is provided "as is" without expressed or implied warranty.
|
20 |
|
|
|
21 |
|
|
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
|
22 |
|
|
|
23 |
|
|
PUBLIC "-//W3C//DTD HLink 1.0//EN"
|
24 |
|
|
SYSTEM "http://www.w3.org/2002/06/hlink.dtd"
|
25 |
|
|
|
26 |
|
|
Revisions:
|
27 |
|
|
(none)
|
28 |
|
|
....................................................................... -->
|
29 |
|
|
|
30 |
|
|
<!-- HLink
|
31 |
|
|
|
32 |
|
|
hlinks, hlink
|
33 |
|
|
|
34 |
|
|
This HLink DTD declares elements and attributes defining
|
35 |
|
|
HLink, a link recongnition mechanism for the XHTML Family.
|
36 |
|
|
-->
|
37 |
|
|
|
38 |
|
|
<!-- Datatypes
|
39 |
|
|
|
40 |
|
|
defines containers for the following datatypes, many of
|
41 |
|
|
these imported from other specifications and standards -
|
42 |
|
|
not quite used at the moment.
|
43 |
|
|
-->
|
44 |
|
|
|
45 |
|
|
<!-- media type, as per [RFC2045] -->
|
46 |
|
|
<!ENTITY % ContentType.datatype "CDATA" >
|
47 |
|
|
|
48 |
|
|
<!-- comma separated list of coordinates to use in defining areas -->
|
49 |
|
|
<!ENTITY % Coords.datatype "CDATA" >
|
50 |
|
|
|
51 |
|
|
<!-- space-separated list of link types -->
|
52 |
|
|
<!ENTITY % LinkTypes.datatype "NMTOKENS" >
|
53 |
|
|
|
54 |
|
|
<!-- the shape of a region -->
|
55 |
|
|
<!ENTITY % Shape.datatype "( default | rect | circle | poly )">
|
56 |
|
|
|
57 |
|
|
<!-- a Uniform Resource Identifier reference, as per anyURI in
|
58 |
|
|
XML Schema Part 2 [SCHEMA]
|
59 |
|
|
-->
|
60 |
|
|
<!ENTITY % URI.datatype "CDATA" >
|
61 |
|
|
|
62 |
|
|
<!-- HLink Qname (Qualified Name) Module -->
|
63 |
|
|
<!ENTITY % hlink-qname.mod
|
64 |
|
|
PUBLIC "-//W3C//ENTITIES HLink Qualified Names 1.0//EN"
|
65 |
|
|
"hlink-qname.mod" >
|
66 |
|
|
%hlink-qname.mod;
|
67 |
|
|
|
68 |
|
|
<!-- hlinks element .................................... -->
|
69 |
|
|
<!ELEMENT %HLINK.hlinks.qname; ( %HLINK.hlink.qname; )+ >
|
70 |
|
|
<!ATTLIST %HLINK.hlinks.qname;
|
71 |
|
|
%HLINK.xmlns.attrib;
|
72 |
|
|
>
|
73 |
|
|
|
74 |
|
|
<!-- hlink element ..................................... -->
|
75 |
|
|
<!ELEMENT %HLINK.hlink.qname; EMPTY >
|
76 |
|
|
<!ATTLIST %HLINK.hlink.qname;
|
77 |
|
|
%HLINK.xmlns.attrib;
|
78 |
|
|
namespace %URI.datatype; #REQUIRED
|
79 |
|
|
element NMTOKEN #IMPLIED
|
80 |
|
|
locator CDATA #IMPLIED
|
81 |
|
|
effect CDATA #IMPLIED
|
82 |
|
|
actuate CDATA #IMPLIED
|
83 |
|
|
replacement CDATA #IMPLIED
|
84 |
|
|
role CDATA #IMPLIED
|
85 |
|
|
reverseRole CDATA #IMPLIED
|
86 |
|
|
shape CDATA #IMPLIED
|
87 |
|
|
coords CDATA #IMPLIED
|
88 |
|
|
arcrole CDATA #IMPLIED
|
89 |
|
|
label CDATA #IMPLIED
|
90 |
|
|
from CDATA #IMPLIED
|
91 |
|
|
to CDATA #IMPLIED
|
92 |
|
|
mediaType CDATA #IMPLIED
|
93 |
|
|
onSuccess CDATA #IMPLIED
|
94 |
|
|
onFailure CDATA #IMPLIED
|
95 |
|
|
>
|
96 |
|
|
|
97 |
|
|
<!-- end of hlink.dtd --> |