/[suikacvs]/test/html.dtd
Suika

Diff of /test/html.dtd

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

revision 1.6 by connolly, Wed Mar 30 02:29:15 1994 UTC revision 1.13 by connolly, Wed May 18 17:23:29 1994 UTC
# Line 1  Line 1 
1  <!SGML  "ISO 8879:1986"  <!--    html.dtd
 --  
         Document Type Definition for the HyperText Markup Language  
         as used by the World Wide Web application (HTML DTD).  
2    
3          NOTE: This is a definition of HTML with respect to          Document Type Definition for the HyperText Markup Language
4          SGML, and assumes an understanding of SGML terms.          as used by the World Wide Web (HTML DTD).
5    
6          If you find bugs in this DTD or find it does not compile          $Id$
         under some circumstances please mail www-bug@info.cern.ch  
 --  
   
 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  
      BASESET   "ISO Registration Number 100//CHARSET  
                 ECMA-94 Right Part of Latin Alphabet Nr. 1//ESC 2/13 4/1"  
      DESCSET   128 32 UNUSED  
                160 95 32  
                255  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 [  
 <!-- Jul 1 93 -->  
 <!--    Regarding clause 6.1, SGML Document:  
   
         [1] SGML document = SGML document entity,  
             (SGML subdocument entity |  
             SGML text entity | non-SGML data entity)*  
7    
8          The role of SGML document entity is filled by this DTD,          Author: Daniel W. Connolly <connolly@hal.com>
9          followed by the conventional HTML data stream.          See Also: http://www.hal.com/%7Econnolly/html-spec/HTML.html
10                      http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html
11  -->  -->
12    
13    <!ENTITY HTML.Version
14            "-//connolly hal.com//DTD WWW HTML $Date 1994/04/19 17:24:06 $//EN"
15            -- public identifier for "current pracitice" version             --
16            -- actually, take the $'s out to get the real public identifer,  --
17            -- since $ is illegal in public identifier. When DTD stabilizes, --
18            -- we'll need to stop using RCS keywords to version the pub id   --
19    
20            -- Typical usage:
21    
22                <!DOCTYPE HTML PUBLIC "-//connolly hal.com//DTD WWW HTML
23                                                    $Date$//EN">
24                <html>
25                ...
26                </html>
27            --
28            >
29    
30    
31    <!-- Feature Test Entities -->
32    
33    <!-- To use these, write your document like:
34            <!DOCTYPE HTML [
35            <!ENTITY % HTML.Optional "INCLUDE">
36            <!ENTITY % html PUBLIC "-//connolly hal.com//DTD WWW HTML 1.8//EN">
37            %html;
38            ]>
39            <TITLE>Here's my doc</TITLE>
40            <p>It uses lots of optional features
41    
42     In practice, if you're using sgmls to validate your docs,
43     you can stick the <!DOCTYPE [...]> in a separate file and
44     validate with:
45            sgmls -s doctype.sgml foo.html
46     -->
47    
48    <!ENTITY % HTML.Minimal  "IGNORE">
49    <!ENTITY % HTML.Obsolete "IGNORE">
50    <!ENTITY % HTML.Prescriptive "IGNORE">
51    
52    <![ %HTML.Minimal [
53            <!ENTITY % HTML.linkRelationships "IGNORE">
54            <!ENTITY % HTML.linkMethods "IGNORE">
55            <!ENTITY % HTML.linkRedundantInfo "IGNORE">
56            <!ENTITY % HTML.forms "IGNORE">
57            <!-- @@ nested lists -->
58            <!-- @@ phrases -->
59            <!-- @@ headers inside A -->
60            <!-- @@ nested phrases, fonts -->
61            ]]>
62            
63    <![ %HTML.Obsolete [
64            <!ENTITY % HTML.titleCDATA "INCLUDE">
65            <!ENTITY % HTML.litCDATA "INCLUDE">
66            <!ENTITY % HTML.pSeparator "INCLUDE">
67            ]]>
68    
69    <![ %HTML.Prescriptive [
70            <!--
71            This feature test entity prescribes that certain
72            idioms detract from the structural integrity of an
73            HTML document, and are therefore disallowed.
74            -->
75            <!ENTITY % HTML.font-phrase "IGNORE">
76            <!ENTITY % HTML.anchorNameCDATA "IGNORE">
77            <!ENTITY % HTML.PLAINTEXT "IGNORE">
78            <!ENTITY % HTML.bodyBlockOnly "INCLUDE">
79            ]]>
80    
81    <!ENTITY % HTML.bodyBlockOnly "IGNORE"
82            -- only allow block elements in the BODY element
83            This means all paragraphs need to start with a <P> tag.
84            -->
85    
86    <!ENTITY % HTML.pSeparator "IGNORE"
87            -- use P element as paragraph separator, rather that container.
88            -->
89    
90    <!ENTITY % HTML.linkRelationships "INCLUDE"
91            -- Adding markup to links to show the relationship between
92            ends of a link
93            see http://info.cern.ch/hypertext/WWW/MarkUp/Relationships.html
94            -->
95    
96    <!ENTITY % HTML.linkMethods "INCLUDE"
97            -- Adding markup to links to show the methods supported
98            by the referent object
99            see http://info.cern.ch/hypertext/WWW/MarkUp/Elements/A.html
100            -->
101    
102    <!ENTITY % HTML.linkRedundantInfo "INCLUDE"
103            -- Adding markup to links to give redundant information
104            like URN, content type, title...
105            -->
106    
107    <!ENTITY % HTML.anchorNameCDATA "INCLUDE"
108            -- Anchor names should be distinct. SGML parser can validate
109            this if the NAME attribute of the A element is declared as ID.
110            But that restricts the syntax of an anchor name to an SGML name,
111            i.e. a letter followed by letters, numbers, periods and dashes,
112            up to NAMELEN (34) characters long.
113            -->
114    
115    <!ENTITY % HTML.PLAINTEXT "INCLUDE"
116            -- Support for the <PLAINTEXT> tag as a sign of the
117            end of th HTML data stream and the beginning of a stream
118            of text/plain data
119            -->
120    
121    <!ENTITY % HTML.titleCDATA "IGNORE"
122            -- Is the TITLE element #PCDATA, RCDATA, or CDATA content?
123            On Mosaic, it's #PCDATA, but in the linemode browser,
124            it's more like CDATA, but not quite.
125            -->
126    
127    <!ENTITY % HTML.NEXTID "INCLUDE"
128            -- Used by the NeXT implementation to keep track of the
129            next anchor id to use
130            -->
131    
132    <!ENTITY % HTML.font-phrase "INCLUDE"
133            -- allow B, I, TT, U outside PRE,
134            CITE, VAR, etc. inside PRE
135            -->
136    
137    <!ENTITY % HTML.KEY "IGNORE"
138            -- There was once a KEY element, for keyboard keys, menu items,
139            buttons, etc. but it's not supported or widely documented
140            -->
141    
142    <!ENTITY % HTML.U "IGNORE"
143            -- There was also a U element, but since it clashes with
144            the common pracitce of underlining hypertext links, it is
145            not widely supported
146            -->
147    
148    <!ENTITY % HTML.litCDATA "IGNORE"
149            -- treat XMP, LISTING as CDATA, as per linemodeWWW
150            -->
151    
152    <!ENTITY % HTML.forms "INCLUDE"
153            -- Support for forms as per
154    http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html
155            -->
156    
157  <!-- DTD definitions -->  <!-- DTD definitions -->
158    
159  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >
160  <!ENTITY % list " UL | OL | DIR | MENU ">  <!ENTITY % list " UL | OL | DIR | MENU ">
161  <!ENTITY % literal " XMP | LISTING ">  <!ENTITY % literal " XMP | LISTING ">
162    
163  <!ENTITY % headelement  <!ENTITY % URI "CDATA"
164           " TITLE | NEXTID |ISINDEX" >          -- The term URI means a CDATA attribute
165               whose value is a Uniform Resource Identifier,
166               as defined by
167            "Universal Resource Identifiers" by Tim Berners-Lee
168            aka http://info.cern.ch/hypertext/WWW/Addressing/URL/URI_Overview.html
169    
170            Note that CDATA attributes are limited by the LITLEN
171            capacity (1024 in the current version of html.decl),
172            so that URIs in HTML have a bounded length.
173    
174  <!ENTITY % bodyelement          @@ Need to discuss relative addresses.
          "P | HR | %heading |  
          %list | DL | ADDRESS | PRE | BLOCKQUOTE  
         | %literal">  
   
 <!ENTITY % oldstyle "%headelement | %bodyelement | #PCDATA">  
   
 <!ENTITY % URL "CDATA"  
         -- The term URL means a CDATA attribute  
            whose value is a Uniform Resource Locator,  
            as defined. (A URN may also be usable here when defined.)  
175          -->          -->
176    
177  <!ENTITY % linkattributes  <!ENTITY % Content-Type "CDATA"
178          "NAME NMTOKEN #IMPLIED          -- meaning a MIME content type, as per RFC1521
179          HREF %URL;  #IMPLIED          -->
180    
181    <![ %HTML.anchorNameCDATA [ <!ENTITY % anchor-name "CDATA"> ]]>
182    <!ENTITY % anchor-name "ID">
183    
184    <![ %HTML.linkRelationships [ <!ENTITY % linkRelAttrs "
185          REL CDATA #IMPLIED -- forward relationship type --          REL CDATA #IMPLIED -- forward relationship type --
186          REV CDATA #IMPLIED -- reversed relationship type          REV CDATA #IMPLIED -- reversed relationship type
187                                to referent data:                                to referent data:
188    
189                                  PARENT CHILD, SIBLING, NEXT, TOP,                                  PARENT CHILD, SIBLING, NEXT, TOP,
190                                  DEFINITION, UPDATE, ORIGINAL etc. --                                  DEFINITION, UPDATE, ORIGINAL etc. --
191            "> ]]>
192    <!ENTITY % linkRelAttrs "">
193    
194    <![ %HTML.linkRedundantInfo [ <!ENTITY % linkRedundantAttrs "
195          URN CDATA #IMPLIED -- universal resource number --          URN CDATA #IMPLIED -- universal resource number --
196    
197          TITLE CDATA #IMPLIED -- advisory only --          TITLE CDATA #IMPLIED -- advisory only --
198            "> ]]>
199    <!ENTITY % linkRedundantAttrs "">
200    
201    <![ %HTML.linkMethods [ <!ENTITY % linkMethodAttrs "
202          METHODS NAMES #IMPLIED -- supported public methods of the object:          METHODS NAMES #IMPLIED -- supported public methods of the object:
203                                          TEXTSEARCH, GET, HEAD, ... --                                          TEXTSEARCH, GET, HEAD, ... --
204            "> ]]>
205    <!ENTITY % linkMethodAttrs "">
206    
207    <!ENTITY % linkattributes
208            "NAME %anchor-name #IMPLIED
209            HREF %URI;  #IMPLIED
210            %linkRelAttrs;
211            %linkRedundantAttrs;
212            %linkMethodAttrs;
213          ">          ">
214    
215    
216  <!-- Document Element -->  <!-- Document Element -->
217    
 <!ELEMENT HTML O O  (( HEAD | BODY | %oldstyle )*, PLAINTEXT?)>  
218    
219  <!ELEMENT HEAD - -  ( TITLE?  & ISINDEX?  & NEXTID?  & LINK*  <![ %HTML.PLAINTEXT [ <!ENTITY % obsolete-plaintext ", PLAINTEXT?"> ]]>
220                                & BASE?)>  <!ENTITY % obsolete-plaintext "">
221    
222  <!ELEMENT TITLE - -  RCDATA  <!ENTITY % html-content "HEAD, BODY %obsolete-plaintext;">
223    <!ELEMENT HTML O O  (%html-content)>
224    
225    <![ %HTML.NEXTID [  <!ENTITY % head-content "TITLE? & ISINDEX? & LINK* & BASE?
226                            & NEXTID?"> ]]>
227    <!ENTITY % head-content "TITLE & ISINDEX? & LINK* & BASE?">
228    <!ELEMENT HEAD O O  (%head-content)>
229    
230    <![ %HTML.titleCDATA [ <!ENTITY % title-content "CDATA"> ]]>
231    <!ENTITY % title-content "(#PCDATA)">
232    <!ELEMENT TITLE - -  %title-content
233            -- The TITLE element is not considered part of the flow of text.            -- The TITLE element is not considered part of the flow of text.
234               It should be displayed, for example as the page header or               It should be displayed, for example as the page header or
235               window title.               window title.
# Line 148  FEATURES Line 241  FEATURES
241            -->            -->
242    
243  <!ELEMENT NEXTID - O EMPTY>  <!ELEMENT NEXTID - O EMPTY>
244  <!ATTLIST NEXTID N NAME #REQUIRED  <!ATTLIST NEXTID N %anchor-name #REQUIRED
245            -- The number should be a name suitable for use            -- The number should be a name suitable for use
246               for the ID of a new element. When used, the value               for the ID of a new element. When used, the value
247               has its numeric part incremented. EG Z67 becomes Z68               has its numeric part incremented. EG Z67 becomes Z68
# Line 157  FEATURES Line 250  FEATURES
250  <!ATTLIST LINK  <!ATTLIST LINK
251          %linkattributes>          %linkattributes>
252                    
253  <!ELEMENT BASE - O EMPTY    -- Reference context for URLS -->  <!ELEMENT BASE - O EMPTY    -- Reference context for URIs -->
254  <!ATTLIST BASE  <!ATTLIST BASE
255    
256          HREF %URL; #IMPLIED          HREF %URI; #REQUIRED
257    
258          >          >
 <!ENTITY % inline "EM | TT | STRONG | B | I | U |  
                         CODE | SAMP | KBD | KEY | VAR | DFN | CITE "  
         >  
259    
260  <!ELEMENT (%inline;) - - (#PCDATA)>  <![ %HTML.KEY [
261            <!ENTITY % key-emph "| KEY">
262            ]]>
263    <!ENTITY % key-emph "">
264    
265    <![ %HTML.U [
266            <!ENTITY % u-font "| U">
267            ]]>
268    <!ENTITY % u-font "">
269    
270    <!ENTITY % font "TT | B | I %u-font">
271    <!ENTITY % phrase "EM | STRONG | CODE | SAMP | KBD | VAR | DFN | CITE
272             | STRIKE %key-emph">
273    
274    
275    <![ %HTML.font-phrase [
276            <!ENTITY % obsolete-font "| %font">
277            <!ENTITY % obsolete-phrase "| %phrase">
278            ]]>
279    <!ENTITY % obsolete-font "">
280    <!ENTITY % obsolete-phrase "">
281    <![ %HTML.pSeparator [
282            <!ENTITY % obsolete-p "| P">
283            ]]>
284    <!ENTITY % obsolete-p "">
285    
286  <!ENTITY % text "#PCDATA | IMG | %inline;">  <!ENTITY % inline "%phrase %obsolete-font">
287    <!ENTITY % pre-inline "%font %obsolete-phrase %obsolete-p">
288    
289    <!ENTITY % text "#PCDATA | IMG | %inline | BR %obsolete-p">
290    
291  <!ENTITY % htext "A | %text"    -- Plus links, no structure -->  <!ENTITY % htext "A | %text"    -- Plus links, no structure -->
292    
293  <!ENTITY % stext                -- as htext but also nested structure --  <![ %HTML.font-phrase [ <!ENTITY % font-content "(%htext)+"> ]]>
294                          "P | HR | %list | DL | ADDRESS  <!ENTITY % font-content "#PCDATA">
295                          | PRE | BLOCKQUOTE  <!ELEMENT (%font;) - - (%font-content;)>
296                          | %literal | %htext">  
297    <!ELEMENT (%phrase;) - - (%htext)+>
298    
299    <!ENTITY % pre "PRE | XMP | LISTING">
300    
301    <![ %HTML.forms [ <!ENTITY % block-form "| FORM | ISINDEX"> ]]>
302    <!ENTITY % block-form "">
303    
304    <![ %HTML.pSeparator [
305            <!ENTITY % obsolete-htext "| %htext">
306            <!ENTITY % block-p "">
307            ]]>
308    <!ENTITY % obsolete-htext "| A">
309    <!ENTITY % block-p "| P ">
310    
311  <!ELEMENT BODY - -  (%bodyelement|%htext;)*>  <!ENTITY % block "HR | %list | DL
312                    | %pre | BLOCKQUOTE | ADDRESS
313                    %block-form %block-p">
314    
315    
316  <!ELEMENT A     - -  (%text)>  <![ %HTML.bodyBlockOnly [
317            <!ENTITY % current-htext "">
318            ]]>
319    <!ENTITY % current-htext "| %htext">
320    
321    <!ENTITY % body-content "%heading | %block %current-htext">
322    <!ELEMENT BODY O O  (%body-content)*>
323    
324    
325    <!ELEMENT A     - - (%heading|%block|%text)+ -(A)
326            -- @# Technically, this allows silliness like:
327                    <H2><A>xyz<H1>h1</H1></A></H2>
328            The right way to do anchors outside of %htext is more like:
329                    <as id=z1><H2>lkjlkj</h2><ae start=z1>
330            -->
331  <!ATTLIST A  <!ATTLIST A
332          %linkattributes;          %linkattributes;
333          >          >
334    
335  <!ELEMENT IMG    - O EMPTY --  Embedded image -->  <!ELEMENT IMG    - O EMPTY --  Embedded image -->
336  <!ATTLIST IMG  <!ATTLIST IMG
337          SRC %URL;  #IMPLIED     -- URL of document to embed --          SRC %URI;  #IMPLIED     -- URI of document to embed --
338            ALT CDATA #IMPLIED
339            ALIGN (top|middle|bottom) #IMPLIED
340            ISMAP (ISMAP) #IMPLIED
341          >          >
342    
343    
344  <!ELEMENT P     - O EMPTY -- separates paragraphs -->  <![ %HTML.pSeparator [ <!ENTITY % p-content "EMPTY"> ]]>
345    <!ENTITY % p-content "(%htext)+">
346    <!ELEMENT P     - O %p-content>
347  <!ELEMENT HR    - O EMPTY -- horizontal rule -->  <!ELEMENT HR    - O EMPTY -- horizontal rule -->
348    <!ELEMENT BR    - O EMPTY -- @# BR -> &br; -->
349    
350  <!ELEMENT ( %heading )  - -  (%htext;)+>  <!ELEMENT ( %heading )  - -  (%htext;)+>
351    
352  <!ELEMENT DL    - -  (DT | DD | %stext;)*>  <!ELEMENT DL    - -  (DT*, DD?)+>
353  <!--    Content should match ((DT,(%htext;)+)+,(DD,(%stext;)+))  <!ATTLIST DL
354          But mixed content is messy.  -Dan Connolly          COMPACT (COMPACT) #IMPLIED>
   -->  
   
 <!ELEMENT DT    - O EMPTY>  
 <!ELEMENT DD    - O EMPTY>  
   
 <!ELEMENT (UL|OL) - -  (%htext;|LI|P)+>  
 <!ELEMENT (DIR|MENU) - -  (%htext;|LI)+>  
 <!--    Content should match ((LI,(%htext;)+)+)  
         But mixed content is messy.  
   -->  
 <!ATTLIST (%list)  
         COMPACT NAME #IMPLIED -- COMPACT, etc.--  
         >  
355    
356  <!ELEMENT LI    - O EMPTY>  <!ELEMENT DT    - O (%htext)+>
357    <!ELEMENT DD    - O (%htext|%block)+>
358    
359  <!ELEMENT BLOCKQUOTE - - (%htext;|P)+  <!ELEMENT (%list) - -  (LI)+>
360    
361    <!ELEMENT LI    - O (%htext|%block)+>
362    
363    <!ELEMENT BLOCKQUOTE - - (%htext|%block)+ -- @# Hmm... --
364          -- for quoting some other source -->          -- for quoting some other source -->
365    
366  <!ELEMENT ADDRESS - - (%htext;|P)+>  <!ELEMENT ADDRESS - - (%htext;|%block)+>
367    
368  <!ELEMENT PRE - - (#PCDATA|%inline|A|P)+>  <!ELEMENT PRE - - (#PCDATA|%pre-inline|A)+>
369  <!ATTLIST PRE  <!ATTLIST PRE
370          WIDTH NUMBER #implied          WIDTH NUMBER #implied
371          >          >
372    
373  <!-- Mnemonic character entities. -->  <!-- Mnemonic character entities. -->
 <!ENTITY AElig "&#198;"  -- capital AE diphthong (ligature) -->  
 <!ENTITY Aacute "&#193;" -- capital A, acute accent -->  
 <!ENTITY Acirc "&#194;"  -- capital A, circumflex accent -->  
 <!ENTITY Agrave "&#192;" -- capital A, grave accent -->  
 <!ENTITY Aring "&#197;"  -- capital A, ring -->  
 <!ENTITY Atilde "&#195;" -- capital A, tilde -->  
 <!ENTITY Auml "&#196;"   -- capital A, dieresis or umlaut mark -->  
 <!ENTITY Ccedil "&#199;" -- capital C, cedilla -->  
 <!ENTITY ETH "&#208;"    -- capital Eth, Icelandic -->  
 <!ENTITY Eacute "&#201;" -- capital E, acute accent -->  
 <!ENTITY Ecirc "&#202;"  -- capital E, circumflex accent -->  
 <!ENTITY Egrave "&#200;" -- capital E, grave accent -->  
 <!ENTITY Euml "&#203;"   -- capital E, dieresis or umlaut mark -->  
 <!ENTITY Iacute "&#205;" -- capital I, acute accent -->  
 <!ENTITY Icirc "&#206;"  -- capital I, circumflex accent -->  
 <!ENTITY Igrave "&#204;" -- capital I, grave accent -->  
 <!ENTITY Iuml "&#207;"   -- capital I, dieresis or umlaut mark -->  
 <!ENTITY Ntilde "&#209;" -- capital N, tilde -->  
 <!ENTITY Oacute "&#211;" -- capital O, acute accent -->  
 <!ENTITY Ocirc "&#212;"  -- capital O, circumflex accent -->  
 <!ENTITY Ograve "&#210;" -- capital O, grave accent -->  
 <!ENTITY Oslash "&#216;" -- capital O, slash -->  
 <!ENTITY Otilde "&#213;" -- capital O, tilde -->  
 <!ENTITY Ouml "&#214;"   -- capital O, dieresis or umlaut mark -->  
 <!ENTITY THORN "&#222;"  -- capital THORN, Icelandic -->  
 <!ENTITY Uacute "&#218;" -- capital U, acute accent -->  
 <!ENTITY Ucirc "&#219;"  -- capital U, circumflex accent -->  
 <!ENTITY Ugrave "&#217;" -- capital U, grave accent -->  
 <!ENTITY Uuml "&#220;"   -- capital U, dieresis or umlaut mark -->  
 <!ENTITY Yacute "&#221;" -- capital Y, acute accent -->  
 <!ENTITY aacute "&#225;" -- small a, acute accent -->  
 <!ENTITY acirc "&#226;"  -- small a, circumflex accent -->  
 <!ENTITY aelig "&#230;"  -- small ae diphthong (ligature) -->  
 <!ENTITY agrave "&#224;" -- small a, grave accent -->  
 <!ENTITY amp "&#38;"     -- ampersand -->  
 <!ENTITY aring "&#229;"  -- small a, ring -->  
 <!ENTITY atilde "&#227;" -- small a, tilde -->  
 <!ENTITY auml "&#228;"   -- small a, dieresis or umlaut mark -->  
 <!ENTITY ccedil "&#231;" -- small c, cedilla -->  
 <!ENTITY eacute "&#233;" -- small e, acute accent -->  
 <!ENTITY ecirc "&#234;"  -- small e, circumflex accent -->  
 <!ENTITY egrave "&#232;" -- small e, grave accent -->  
 <!ENTITY eth "&#240;"    -- small eth, Icelandic -->  
 <!ENTITY euml "&#235;"   -- small e, dieresis or umlaut mark -->  
 <!ENTITY gt "&#62;"      -- greater than -->  
 <!ENTITY iacute "&#237;" -- small i, acute accent -->  
 <!ENTITY icirc "&#238;"  -- small i, circumflex accent -->  
 <!ENTITY igrave "&#236;" -- small i, grave accent -->  
 <!ENTITY iuml "&#239;"   -- small i, dieresis or umlaut mark -->  
 <!ENTITY lt "&#60;"      -- less than -->  
 <!ENTITY nbsp "&#32;"    --  should be NON_BREAKING space -->  
 <!ENTITY ntilde "&#241;" -- small n, tilde -->  
 <!ENTITY oacute "&#243;" -- small o, acute accent -->  
 <!ENTITY ocirc "&#244;"  -- small o, circumflex accent -->  
 <!ENTITY ograve "&#242;" -- small o, grave accent -->  
 <!ENTITY oslash "&#248;" -- small o, slash -->  
 <!ENTITY otilde "&#245;" -- small o, tilde -->  
 <!ENTITY ouml "&#246;"   -- small o, dieresis or umlaut mark -->  
 <!ENTITY szlig "&#223;"  -- small sharp s, German (sz ligature) -->  
 <!ENTITY thorn "&#254;"  -- small thorn, Icelandic -->  
 <!ENTITY uacute "&#250;" -- small u, acute accent -->  
 <!ENTITY ucirc "&#251;"  -- small u, circumflex accent -->  
 <!ENTITY ugrave "&#249;" -- small u, grave accent -->  
 <!ENTITY uuml "&#252;"   -- small u, dieresis or umlaut mark -->  
 <!ENTITY yacute "&#253;" -- small y, acute accent -->  
 <!ENTITY yuml "&#255;"   -- small y, dieresis or umlaut mark -->  
374    
375  <!-- deprecated elements -->  <!ENTITY % ISOlat1 PUBLIC
376      "ISO 8879:1986//ENTITIES Added Latin 1//EN">
377  <!ELEMENT (%literal) - -  CDATA>  %ISOlat1;
378    
379    <!ENTITY #DEFAULT SDATA "&#38;unkown;" --display the markup-->
380    <!ENTITY amp CDATA "&#38;"     -- ampersand -->
381    <!ENTITY gt CDATA "&#62;"      -- greater than -->
382    <!ENTITY lt CDATA "&#60;"      -- less than -->
383    <!ENTITY quot CDATA "&#34;"    -- double quote -->
384    
385    <!-- Processing Entities -->
386    
387    <!ENTITY nbsp "<? nonbreaking-space>">
388    <!-- @# should add entites for processing instructions
389            for line break, centering, etc. -->
390    
391    
392    <!-- Forms  -->
393    <![ %HTML.forms [
394    
395    <!ENTITY % HTTP-Method "(GET | POST)">
396    <!ELEMENT FORM - - (%body-content)* -(FORM) +(INPUT|SELECT|TEXTAREA)>
397    <!ATTLIST FORM
398            ACTION %URI #REQUIRED
399            METHOD %HTTP-Method #IMPLIED -- @# MAILTO? --
400            ENCTYPE %Content-Type; #IMPLIED
401            >
402    
403    <!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX |
404                            RADIO | SUBMIT | RESET |
405                            IMAGE | HIDDEN )">
406    <!ELEMENT INPUT - O EMPTY>
407    <!ATTLIST INPUT
408            TYPE %InputType #IMPLIED -- @# defaults to TEXT?? --
409            NAME CDATA #IMPLIED -- required for all but submit and reset --
410            VALUE CDATA #IMPLIED
411            SRC %URI #IMPLIED -- for image inputs --
412            CHECKED (CHECKED) #IMPLIED
413            SIZE CDATA #IMPLIED -- @# should be NUMBERS: delimit with space, not comma --
414            MAXLENGTH NUMBER #IMPLIED
415            ALIGN (top|middle|bottom|left|center|right) #IMPLIED --@#supported?--
416            >
417    
418    <!ELEMENT SELECT - - (OPTION+)>
419    <!ATTLIST SELECT
420            NAME CDATA #REQUIRED
421            SIZE NUMBER #IMPLIED
422            MULTIPLE (MULTIPLE) #IMPLIED
423            >
424    
425    <!ELEMENT OPTION - O (#PCDATA)>
426    <!ATTLIST OPTION
427            SELECTED (SELECTED) #IMPLIED
428            VALUE CDATA #IMPLIED
429            >
430    
431    <!ELEMENT TEXTAREA - - (#PCDATA)>
432    <!ATTLIST TEXTAREA
433            NAME CDATA #REQUIRED
434            ROWS NUMBER #REQUIRED -- @#implied? --
435            COLS NUMBER #REQUIRED
436            >
437    ]]>
438    
439    <!-- Obsolete Elements  -->
440    
441    <![ %HTML.litCDATA [ <!ENTITY % lit-content "CDATA"> ]]>
442    <!ENTITY % lit-content "RCDATA">
443    <!ELEMENT (%literal) - -  %lit-content>
444    
445    <![ %HTML.PLAINTEXT [
446  <!ELEMENT PLAINTEXT - O EMPTY>  <!ELEMENT PLAINTEXT - O EMPTY>
447    ]]>
 <!-- Local Variables: -->  
 <!-- mode: sgml -->  
 <!-- compile-command: "sgmls -s -p " -->  
 <!-- end: -->  
 ]>  
   
   
   
   
   
   
   
   
   
   
   
   
     

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.13

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24