1<!-- ...................................................................... -->
2<!-- XHTML Common Attributes Module  ...................................... -->
3<!-- file: xhtml-attribs-1.mod
4
5     This is XHTML, a reformulation of HTML as a modular XML application.
6     Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
7     Revision: $Id: xhtml-attribs-1.mod,v 4.0 2001/04/02 22:42:49 altheim Exp $ SMI
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11       PUBLIC "-//W3C//ENTITIES XHTML Common Attributes 1.0//EN"
12       SYSTEM "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-attribs-1.mod"
13
14     Revisions:
15     (none)
16     ....................................................................... -->
17
18<!-- Common Attributes
19
20     This module declares many of the common attributes for the XHTML DTD.
21     %NS.decl.attrib; is declared in the XHTML Qname module.
22-->
23
24<!ENTITY % id.attrib
25     "id           ID                       #IMPLIED"
26>
27
28<!ENTITY % class.attrib
29     "class        NMTOKENS                 #IMPLIED"
30>
31
32<!ENTITY % title.attrib
33     "title        %Text.datatype;          #IMPLIED"
34>
35
36<!ENTITY % Core.extra.attrib "" >
37
38<!ENTITY % Core.attrib
39     "%XHTML.xmlns.attrib;
40      %id.attrib;
41      %class.attrib;
42      %title.attrib;
43      %Core.extra.attrib;"
44>
45
46<!ENTITY % lang.attrib
47     "xml:lang     %LanguageCode.datatype;  #IMPLIED"
48>
49
50<![%XHTML.bidi;[
51<!ENTITY % dir.attrib
52     "dir          ( ltr | rtl )            #IMPLIED"
53>
54
55<!ENTITY % I18n.attrib
56     "%dir.attrib;
57      %lang.attrib;"
58>
59
60]]>
61<!ENTITY % I18n.attrib
62     "%lang.attrib;"
63>
64
65<!ENTITY % Common.extra.attrib "" >
66
67<!-- intrinsic event attributes declared previously
68-->
69<!ENTITY % Events.attrib "" >
70
71<!ENTITY % Common.attrib
72     "%Core.attrib;
73      %I18n.attrib;
74      %Events.attrib;
75      %Common.extra.attrib;"
76>
77
78<!-- end of xhtml-attribs-1.mod -->
79