/[suikacvs]/test/html.dtd
Suika

Diff of /test/html.dtd

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by connolly, Thu Jan 7 00:38:36 1993 UTC revision 1.7.2.1 by connolly, Fri Apr 1 20:07:22 1994 UTC
# Line 1  Line 1 
1  <!SGML  "ISO 8879:1986"  <!-- Jul 1 93 version, minus backward-compatibility stuff. -->
 --  
         Document Type Definition for the HyperText Markup Language  
         as used by the World Wide Web application (HTML DTD).  
   
         NOTE: This is a definition of HTML with respect to  
         SGML, and assumes an understaning of SGML terms.  
   
         For a description of HTML in layman's terms, see  
   
         "HTML: A Representation for Nodes in the World Wide Web"  
                 by Dan Connolly.  
   
         aka  
   
         http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html  
                 by <connolly@convex.com>  
 --  
   
 CHARSET  
          BASESET  "ISO 646:1983//CHARSET  
                    International Reference Version (IRV)//ESC 2/5 4/0"  
          DESCSET  0   9   UNUSED  
                   9   2   9  
                   11  2   UNUSED  
                   13  1   13  
                   14  18  UNUSED  
                   32  95  32  
                   127 1   UNUSED  
   
 CAPACITY        SGMLREF  
                 TOTALCAP        150000  
                 GRPCAP          150000  
     
 SCOPE    DOCUMENT  
 SYNTAX    
          SHUNCHAR CONTROLS 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  
                            19 20 21 22 23 24 25 26 27 28 29 30 31 127 255  
          BASESET  "ISO 646:1983//CHARSET  
                    International Reference Version (IRV)//ESC 2/5 4/0"  
          DESCSET  0 128 0  
          FUNCTION RE          13  
                   RS          10  
                   SPACE       32  
                   TAB SEPCHAR  9  
          NAMING   LCNMSTRT ""  
                   UCNMSTRT ""  
                   LCNMCHAR ".-"  
                   UCNMCHAR ".-"  
                   NAMECASE GENERAL YES  
                            ENTITY  NO  
          DELIM    GENERAL  SGMLREF  
                   SHORTREF SGMLREF  
          NAMES    SGMLREF  
          QUANTITY SGMLREF  
                   NAMELEN  34  
                   TAGLVL   100  
                   LITLEN   1024  
                   GRPGTCNT 150  
                   GRPCNT   64                    
   
 FEATURES  
   MINIMIZE  
     DATATAG  NO  
     OMITTAG  NO  
     RANK     NO  
     SHORTTAG NO  
   LINK  
     SIMPLE   NO  
     IMPLICIT NO  
     EXPLICIT NO  
   OTHER  
     CONCUR   NO  
     SUBDOC   NO  
     FORMAL   YES  
   APPINFO    NONE  
 >  
   
 <!DOCTYPE HTML [  
 <!--  
  $Id$  
 -->  
   
 <!--    Regarding clause 6.1, SGML Document:  
   
         [1] SGML document = SGML document entity,  
             (SGML subdocument entity |  
             SGML text entity | non-SGML data entity)*  
   
         The role of SGML document entity is filled by this DTD,  
         followed by the conventional HTML data stream.  
 -->  
2    
3  <!-- DTD definitions -->  <!-- DTD definitions -->
4    
5  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >
6  <!ENTITY % list "UL|OL|DIR|MENU">  <!ENTITY % list " UL | OL | DIR | MENU ">
7  <!ENTITY % literal "XMP|LISTING">  <!ENTITY % literal " XMP | LISTING ">
   
 <!ENTITY % headelement  
          "TITLE | NEXTID | ISINDEX" >  
8    
9  <!ENTITY % bodyelement  <!ENTITY % bodyelement
10           "P | A | %heading |           "P | HR | %heading |
11           %list | DL | HEADERS | ADDRESS | PRE | BLOCKQUOTE           %list | DL | ADDRESS | PRE | BLOCKQUOTE
12          | %literal">          | %literal">
13    
14  <!ENTITY % oldstyle "%headelement | %bodyelement | #PCDATA">  <!ENTITY % URL "CDATA"
15            -- The term URL means a CDATA attribute
16  <!-- Characters from various Latin alphabets. -->             whose value is a Uniform Resource Locator,
17  <!ENTITY % ISOlat1 PUBLIC             as defined. (A URN may also be usable here when defined.)
18          "ISO 8879:1986//ENTITIES Added Latin 1//EN">          -->
19  %ISOlat1;  
20    <!ENTITY % linkattributes
21            "NAME NMTOKEN #IMPLIED
22            HREF %URL;  #IMPLIED
23            REL CDATA #IMPLIED -- forward relationship type --
24            REV CDATA #IMPLIED -- reversed relationship type
25                                  to referent data:
26    
27                                    PARENT CHILD, SIBLING, NEXT, TOP,
28                                    DEFINITION, UPDATE, ORIGINAL etc. --
29    
30            URN CDATA #IMPLIED -- universal resource number --
31    
32            TITLE CDATA #IMPLIED -- advisory only --
33    
34            METHODS NAMES #IMPLIED -- supported public methods of the object:
35                                            TEXTSEARCH, GET, HEAD, ... --
36    
37            ">
38    
39    
40  <!-- Document Element -->  <!-- Document Element -->
41    
42  <!ELEMENT HTML O O  (HEAD | BODY | %oldstyle)*>  <!ELEMENT HTML O O  (HEAD, BODY)>
43    
44    <!ELEMENT HEAD O O  ( TITLE?  & ISINDEX?  & NEXTID?  & LINK*
45                                  & BASE?)>
46    
47  <!ELEMENT HEAD - -  (TITLE? & ISINDEX? & NEXTID?)>  <!ELEMENT TITLE - -  (#PCDATA)
48  <!-- LINK element (from timbl) -->            -- The TITLE element is not considered part of the flow of text.
49  <!ATTLIST HEAD               It should be displayed, for example as the page header or
50          EXPIRES NUMBER #IMPLIED -- expiration date               window title.
51                                  in ISO format: yyyymmddhhmmssZ --            -->
         >  
   
 <!ELEMENT TITLE - -  RCDATA  
           -- The TITLE element is not considered part of the flow of text.  
              It should be displayed, for example as the page header or  
              window title.  
           -->  
52    
53  <!ELEMENT ISINDEX - O EMPTY  <!ELEMENT ISINDEX - O EMPTY
54            -- WWW clients should offer the option to perform a search on            -- WWW clients should offer the option to perform a search on
55               documents containing ISINDEX.               documents containing ISINDEX.
56            -->            -->
57    
58  <!ELEMENT NEXTID - O EMPTY>  <!ELEMENT NEXTID - O EMPTY>
59  <!ATTLIST NEXTID N NUMBER #REQUIRED  <!ATTLIST NEXTID N NAME #REQUIRED
60            -- The number should be the highest number that appears in            -- The number should be a name suitable for use
61               any NAME attribute in the document.               for the ID of a new element. When used, the value
62            -->               has its numeric part incremented. EG Z67 becomes Z68
63                      -->
64    <!ELEMENT LINK - O EMPTY>
65    <!ATTLIST LINK
66            %linkattributes>
67            
68    <!ELEMENT BASE - O EMPTY    -- Reference context for URLS -->
69    <!ATTLIST BASE
70    
71            HREF %URL; #IMPLIED
72    
73            >
74  <!ENTITY % inline "EM | TT | STRONG | B | I | U |  <!ENTITY % inline "EM | TT | STRONG | B | I | U |
75                          CODE | SAMP | KBD | KEY | VAR | DFN | CITE "                          CODE | SAMP | KBD | KEY | VAR | DFN | CITE "
76          >          >
77    
78  <!ELEMENT (%inline;) - - (#PCDATA)>  <!ELEMENT (%inline;) - - (#PCDATA)>
79    
80  <!ENTITY % text "#PCDATA | %inline;">  <!ENTITY % text "#PCDATA | IMG | %inline;">
81    
82  <!ELEMENT BODY - -  (%bodyelement|%text;)*>  <!ENTITY % htext "A | %text"    -- Plus links, no structure -->
83    
84    <!ENTITY % stext                -- as htext but also nested structure --
85                            "P | HR | %list | DL | ADDRESS
86                            | PRE | BLOCKQUOTE
87                            | %literal | %htext">
88    
89    
90    <!ELEMENT BODY O O  (%bodyelement|%htext;)*>
91    
 <!ENTITY % URL "CDATA"  
         -- The term URL means a CDATA attribute  
            whose value is a Universal Resource Locator,  
            as defined in ftp://info.cern.ch/pub/www/doc/url3.txt  
         -->  
92    
93  <!ELEMENT A     - -  (#PCDATA)>  <!ELEMENT A     - -  (%text)>
94  <!ATTLIST A  <!ATTLIST A
95          NAME NMTOKEN #IMPLIED          %linkattributes;
96          HREF %URL; #IMPLIED          >
97          TYPE NAME #IMPLIED -- type of relashionship to referent data:  
98                                  PARENT CHILD, SIBLING, NEXT, TOP,  <!ELEMENT IMG    - O EMPTY --  Embedded image -->
99                                   DEFINITION, UPDATE, ORIGINAL etc. --  <!ATTLIST IMG
100          URN CDATA #IMPLIED -- universal resource number. unique doc id --          SRC %URL;  #IMPLIED     -- URL of document to embed --
101          TITLE CDATA #IMPLIED -- advisory only --          >
102          METHODS NAMES #IMPLIED -- supported methods of the object:  
103                                          TEXTSEARCH, GET, HEAD, ... --  
104          >  <!ELEMENT P     - O EMPTY -- separates paragraphs -->
105    <!ELEMENT HR    - O EMPTY -- horizontal rule -->
106  <!ELEMENT P     - O EMPTY -- separates paragraphs -->  
107    <!ELEMENT ( %heading )  - -  (%htext;)+>
108  <!ELEMENT (%heading)    - -  (%text;|A)+>  
109    <!ELEMENT DL    - -  (DT | DD | %stext;)*>
110  <!ELEMENT HEADERS - - (DT | #PCDATA | DD | A)+>  <!--    Content should match ((DT,(%htext;)+)+,(DD,(%stext;)+))
111  <!ELEMENT DL    - -  (DT | DD | A | P | %text;)*>          But mixed content is messy.  -Dan Connolly
 <!--    Content should match ((DT,(A|%text;)+)+,(DD,(A|%text;)+))  
         But mixed content is messy.  
112    -->    -->
113    
114  <!ELEMENT DT    - O EMPTY>  <!ELEMENT DT    - O EMPTY>
115  <!ELEMENT DD    - O EMPTY>  <!ELEMENT DD    - O EMPTY>
116    
117  <!ELEMENT (%list) - -  (%text;|LI|A|P)+>  <!ELEMENT (UL|OL) - -  (%htext;|LI|P)+>
118  <!--    Content should match ((LI,(A|%text;)+)+)  <!ELEMENT (DIR|MENU) - -  (%htext;|LI)+>
119          But mixed content is messy.  <!--    Content should match ((LI,(%htext;)+)+)
120            But mixed content is messy.
121    -->    -->
122  <!ATTLIST (%list)  <!ATTLIST (%list)
123          STYLE NAME #IMPLIED -- COMPACT, etc.--          COMPACT NAME #IMPLIED -- COMPACT, etc.--
124          >          >
125    
126  <!ELEMENT LI    - O EMPTY>  <!ELEMENT LI    - O EMPTY>
127    
128  <!ELEMENT BLOCKQUOTE - - (%text;|A|P|ADDRESS)+  <!ELEMENT BLOCKQUOTE - - (%htext;|P)+
129          -- for quoting some other source -->          -- for quoting some other source -->
 <!ATTLIST BLOCKQUOTE  
         SOURCE CDATA #IMPLIED  
         >  
130    
131  <!ELEMENT ADDRESS - - (%text;|A|P)+>  <!ELEMENT ADDRESS - - (%htext;|P)+>
132    
133  <!ELEMENT PRE - - (#PCDATA|A|P)+>  <!ELEMENT PRE - - (#PCDATA|%inline|A|P)+>
134  <!ATTLIST PRE  <!ATTLIST PRE
135          WIDTH NUMBER #implied          WIDTH NUMBER #implied
136          >          >
137    
138    <!-- Mnemonic character entities. -->
139    <!ENTITY AElig "&#198;"  -- capital AE diphthong (ligature) -->
140    <!ENTITY Aacute "&#193;" -- capital A, acute accent -->
141    <!ENTITY Acirc "&#194;"  -- capital A, circumflex accent -->
142    <!ENTITY Agrave "&#192;" -- capital A, grave accent -->
143    <!ENTITY Aring "&#197;"  -- capital A, ring -->
144    <!ENTITY Atilde "&#195;" -- capital A, tilde -->
145    <!ENTITY Auml "&#196;"   -- capital A, dieresis or umlaut mark -->
146    <!ENTITY Ccedil "&#199;" -- capital C, cedilla -->
147    <!ENTITY ETH "&#208;"    -- capital Eth, Icelandic -->
148    <!ENTITY Eacute "&#201;" -- capital E, acute accent -->
149    <!ENTITY Ecirc "&#202;"  -- capital E, circumflex accent -->
150    <!ENTITY Egrave "&#200;" -- capital E, grave accent -->
151    <!ENTITY Euml "&#203;"   -- capital E, dieresis or umlaut mark -->
152    <!ENTITY Iacute "&#205;" -- capital I, acute accent -->
153    <!ENTITY Icirc "&#206;"  -- capital I, circumflex accent -->
154    <!ENTITY Igrave "&#204;" -- capital I, grave accent -->
155    <!ENTITY Iuml "&#207;"   -- capital I, dieresis or umlaut mark -->
156    <!ENTITY Ntilde "&#209;" -- capital N, tilde -->
157    <!ENTITY Oacute "&#211;" -- capital O, acute accent -->
158    <!ENTITY Ocirc "&#212;"  -- capital O, circumflex accent -->
159    <!ENTITY Ograve "&#210;" -- capital O, grave accent -->
160    <!ENTITY Oslash "&#216;" -- capital O, slash -->
161    <!ENTITY Otilde "&#213;" -- capital O, tilde -->
162    <!ENTITY Ouml "&#214;"   -- capital O, dieresis or umlaut mark -->
163    <!ENTITY THORN "&#222;"  -- capital THORN, Icelandic -->
164    <!ENTITY Uacute "&#218;" -- capital U, acute accent -->
165    <!ENTITY Ucirc "&#219;"  -- capital U, circumflex accent -->
166    <!ENTITY Ugrave "&#217;" -- capital U, grave accent -->
167    <!ENTITY Uuml "&#220;"   -- capital U, dieresis or umlaut mark -->
168    <!ENTITY Yacute "&#221;" -- capital Y, acute accent -->
169    <!ENTITY aacute "&#225;" -- small a, acute accent -->
170    <!ENTITY acirc "&#226;"  -- small a, circumflex accent -->
171    <!ENTITY aelig "&#230;"  -- small ae diphthong (ligature) -->
172    <!ENTITY agrave "&#224;" -- small a, grave accent -->
173    <!ENTITY amp "&#38;"     -- ampersand -->
174    <!ENTITY aring "&#229;"  -- small a, ring -->
175    <!ENTITY atilde "&#227;" -- small a, tilde -->
176    <!ENTITY auml "&#228;"   -- small a, dieresis or umlaut mark -->
177    <!ENTITY ccedil "&#231;" -- small c, cedilla -->
178    <!ENTITY eacute "&#233;" -- small e, acute accent -->
179    <!ENTITY ecirc "&#234;"  -- small e, circumflex accent -->
180    <!ENTITY egrave "&#232;" -- small e, grave accent -->
181    <!ENTITY eth "&#240;"    -- small eth, Icelandic -->
182    <!ENTITY euml "&#235;"   -- small e, dieresis or umlaut mark -->
183    <!ENTITY gt "&#62;"      -- greater than -->
184    <!ENTITY iacute "&#237;" -- small i, acute accent -->
185    <!ENTITY icirc "&#238;"  -- small i, circumflex accent -->
186    <!ENTITY igrave "&#236;" -- small i, grave accent -->
187    <!ENTITY iuml "&#239;"   -- small i, dieresis or umlaut mark -->
188    <!ENTITY lt "&#60;"      -- less than -->
189    <!ENTITY nbsp "&#32;"    --  should be NON_BREAKING space -->
190    <!ENTITY ntilde "&#241;" -- small n, tilde -->
191    <!ENTITY oacute "&#243;" -- small o, acute accent -->
192    <!ENTITY ocirc "&#244;"  -- small o, circumflex accent -->
193    <!ENTITY ograve "&#242;" -- small o, grave accent -->
194    <!ENTITY oslash "&#248;" -- small o, slash -->
195    <!ENTITY otilde "&#245;" -- small o, tilde -->
196    <!ENTITY ouml "&#246;"   -- small o, dieresis or umlaut mark -->
197    <!ENTITY szlig "&#223;"  -- small sharp s, German (sz ligature) -->
198    <!ENTITY thorn "&#254;"  -- small thorn, Icelandic -->
199    <!ENTITY uacute "&#250;" -- small u, acute accent -->
200    <!ENTITY ucirc "&#251;"  -- small u, circumflex accent -->
201    <!ENTITY ugrave "&#249;" -- small u, grave accent -->
202    <!ENTITY uuml "&#252;"   -- small u, dieresis or umlaut mark -->
203    <!ENTITY yacute "&#253;" -- small y, acute accent -->
204    <!ENTITY yuml "&#255;"   -- small y, dieresis or umlaut mark -->
205    
206  <!-- deprecated elements -->  <!-- deprecated elements -->
207    
208  <!ELEMENT (%literal) - -  RCDATA>  <!ELEMENT (%literal) - -  CDATA>
209    
210  <!ELEMENT PLAINTEXT - O EMPTY>  <!ELEMENT PLAINTEXT - O EMPTY>
211    
# Line 216  FEATURES Line 213  FEATURES
213  <!-- mode: sgml -->  <!-- mode: sgml -->
214  <!-- compile-command: "sgmls -s -p " -->  <!-- compile-command: "sgmls -s -p " -->
215  <!-- end: -->  <!-- end: -->
 ]>  

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.7.2.1

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24