/[pub]/test/html.dtd
Suika

Contents of /test/html.dtd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.26 - (hide annotations) (download)
Fri Jun 2 08:00:02 1995 UTC (31 years, 1 month ago) by connolly
Branch: MAIN
Changes since 1.25: +3 -3 lines
* no more A4 paper: html-spec.style

* don't build .txt at all (don't clobber JEnglish's version!)

* remove vestigates of "version=" parameter

* remove list of WG members from acknowledgements

* remove <tag// markup from section titles, as it messes up xrefs

* a few typos

* "selected" latin 1 characters

* fix <!doctypes> in examples

* reword forms intro paragraph to mention form field defaults

* indent list of TYPE values

* give list of TEXTAREA attributes

* flush out LINK element description

* add error handling info for numeric character references

* fix & markup delimiter description

* @@ temporarily removed obsolete/proposed stuff. Need to revise it.

* updated comments in DTD,decl; info.cern.ch -> www.w3.org

* @@ began revising hyperlink discussion. Needs more work.

* put CR (13) in ISO latin 1 coded character set.

* revised IMG ALT verbage

* added reference to dexter model of hypertext

1 connolly 1.24 <!-- html.dtd
2 connolly 1.7
3 connolly 1.23 Document Type Definition for the HyperText Markup Language
4     (HTML DTD)
5 connolly 1.5
6 connolly 1.26 $Id: html.dtd,v 1.25 1995/03/29 18:53:13 connolly Exp $
7 connolly 1.11
8 connolly 1.25 Author: Daniel W. Connolly <[email protected]>
9 connolly 1.26 See Also: html.decl, html-1.dtd
10     http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html
11 connolly 1.2 -->
12    
13 connolly 1.18 <!ENTITY % HTML.Version
14 connolly 1.24 "-//IETF//DTD HTML 2.0//EN"
15 connolly 1.13
16     -- Typical usage:
17    
18 connolly 1.19 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
19 connolly 1.24 <html>
20     ...
21     </html>
22     --
23     >
24 connolly 1.13
25    
26 connolly 1.23 <!--============ Feature Test Entities ========================-->
27 connolly 1.8
28 connolly 1.19 <!ENTITY % HTML.Recommended "IGNORE"
29 connolly 1.23 -- Certain features of the language are necessary for
30     compatibility with widespread usage, but they may
31     compromise the structural integrity of a document.
32     This feature test entity enables a more prescriptive
33     document type definition that eliminates
34 connolly 1.21 those features.
35 connolly 1.19 -->
36    
37     <![ %HTML.Recommended [
38 connolly 1.24 <!ENTITY % HTML.Deprecated "IGNORE">
39 connolly 1.19 ]]>
40    
41     <!ENTITY % HTML.Deprecated "INCLUDE"
42 connolly 1.23 -- Certain features of the language are necessary for
43     compatibility with earlier versions of the specification,
44     but they tend to be used an implemented inconsistently,
45     and their use is deprecated. This feature test entity
46     enables a document type definition that eliminates
47     these features.
48 connolly 1.19 -->
49    
50 connolly 1.21 <!ENTITY % HTML.Highlighting "INCLUDE"
51 connolly 1.23 -- Use this feature test entity to validate that a
52     document uses no highlighting tags, which may be
53     ignored on minimal implementations.
54 connolly 1.21 -->
55    
56     <!ENTITY % HTML.Forms "INCLUDE"
57 connolly 1.24 -- Use this feature test entity to validate that a document
58     contains no forms, which may not be supported in minimal
59     implementations
60     -->
61 connolly 1.19
62 connolly 1.23 <!--============== Imported Names ==============================-->
63 connolly 1.19
64 connolly 1.8 <!ENTITY % Content-Type "CDATA"
65 connolly 1.24 -- meaning an internet media type
66     (aka MIME content type, as per RFC1521)
67     -->
68 connolly 1.2
69 connolly 1.19 <!ENTITY % HTTP-Method "GET | POST"
70 connolly 1.24 -- as per HTTP specification, in progress
71     -->
72 connolly 1.19
73     <!ENTITY % URI "CDATA"
74     -- The term URI means a CDATA attribute
75     whose value is a Uniform Resource Identifier,
76     as defined by
77     "Universal Resource Identifiers" by Tim Berners-Lee
78     aka RFC 1630
79    
80     Note that CDATA attributes are limited by the LITLEN
81     capacity (1024 in the current version of html.decl),
82     so that URIs in HTML have a bounded length.
83    
84     -->
85    
86    
87 connolly 1.23 <!--========= DTD "Macros" =====================-->
88 connolly 1.19
89     <!ENTITY % heading "H1|H2|H3|H4|H5|H6">
90    
91     <!ENTITY % list " UL | OL | DIR | MENU " >
92    
93    
94 connolly 1.23 <!--======= Character mnemonic entities =================-->
95 connolly 1.19
96     <!ENTITY % ISOlat1 PUBLIC
97 connolly 1.22 "ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML">
98 connolly 1.19 %ISOlat1;
99    
100     <!ENTITY amp CDATA "&#38;" -- ampersand -->
101     <!ENTITY gt CDATA "&#62;" -- greater than -->
102     <!ENTITY lt CDATA "&#60;" -- less than -->
103     <!ENTITY quot CDATA "&#34;" -- double quote -->
104    
105    
106 connolly 1.23 <!--========= SGML Document Access (SDA) Parameter Entities =====-->
107 connolly