/[pub]/test/html.dtd
Suika

Diff of /test/html.dtd

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

revision 1.4 by connolly, Wed Feb 3 21:30:13 1993 UTC revision 1.8 by connolly, Sat Apr 9 01:02:10 1994 UTC
# Line 1  Line 1 
1  <!--  <!--    html.dtd
  $Id$  
 -->  
   
 <!--    Regarding clause 6.1, SGML Document:  
2    
3          [1] SGML document = SGML document entity,          Document Type Definition for the HyperText Markup Language
4              (SGML subdocument entity |          as used by the World Wide Web application (HTML DTD).
             SGML text entity | non-SGML data entity)*  
5    
6          The role of SGML document entity is filled by this DTD,          $Id$
         followed by the conventional HTML data stream.  
7  -->  -->
8    
9    <!-- Feature Test Entities -->
10    
11    <!-- To use these, write your document like:
12            <!DOCTYPE HTML [
13            <!ENTITY % HTML.Optional "INCLUDE">
14            <!ENTITY % html PUBLIC "-//connolly hal.com//DTD WWW HTML 1.8//EN">
15            %html;
16            ]>
17            <TITLE>Here's my doc</TITLE>
18            <p>It uses lots of optional features
19    
20     In practice, if you're using sgmls to validate your docs,
21     you can stick the <!DOCTYPE [...]> in a separate file and
22     validate with:
23            sgmls -s doctype.sgml foo.html
24     -->
25    
26    <!ENTITY % HTML.Minimal  "IGNORE">
27    <!ENTITY % HTML.Obsolete "IGNORE">
28    
29    <![ %HTML.Minimal [
30            <!ENTITY % HTML.linkRelationships "IGNORE">
31            <!ENTITY % HTML.linkMethods "IGNORE">
32            <!ENTITY % HTML.linkRedundantInfo "IGNORE">
33            <!ENTITY % HTML.forms "IGNORE">
34            <!-- @@ nested lists -->
35            <!-- @@ phrases -->
36            ]]>
37            
38    <![ %HTML.Obsolete [
39            <!ENTITY % HTML.PLAINTEXT "INCLUDE">
40            <!ENTITY % HTML.titleCDATA "INCLUDE">
41            <!ENTITY % HTML.litCDATA "INCLUDE">
42            <!ENTITY % HTML.NEXTID "INCLUDE">
43            <!ENTITY % HTML.font-phrase "INCLUDE">
44            <!ENTITY % HTML.anchorNameCDATA "INCLUDE">
45            <!ENTITY % HTML.pSeparator "INCLUDE">
46            ]]>
47    
48    <!ENTITY % HTML.pSeparator "IGNORE"
49            -- use P element as paragraph separator, rather that container.
50            This means not all paragraphs need to start with a <P> tag.
51            -->
52    
53    <!ENTITY % HTML.linkRelationships "INCLUDE"
54            -- Adding markup to links to show the relationship between
55            ends of a link
56            see http://info.cern.ch/hypertext/WWW/MarkUp/Relationships.html
57            -->
58    
59    <!ENTITY % HTML.linkMethods "INCLUDE"
60            -- Adding markup to links to show the methods supported
61            by the referent object
62            see http://info.cern.ch/hypertext/WWW/MarkUp/Elements/A.html
63            -->
64    
65    <!ENTITY % HTML.linkRedundantInfo "INCLUDE"
66            -- Adding markup to links to give redundant information
67            like URN, content type, title...
68            -->
69    
70    <!ENTITY % HTML.anchorNameCDATA "IGNORE"
71            -- Anchor names should be distinct. SGML parser can validate
72            this if the NAME attribute of the A element is declared as ID.
73            But that restricts the syntax of an anchor name to an SGML name,
74            i.e. a letter followed by letters, numbers, periods and dashes,
75            up to NAMELEN (34) characters long.
76            -->
77    
78    <!ENTITY % HTML.PLAINTEXT "IGNORE"
79            -- Support for the <PLAINTEXT> tag as a sign of the
80            end of th HTML data stream and the beginning of a stream
81            of text/plain data
82            -->
83    
84    <!ENTITY % HTML.titleCDATA "IGNORE"
85            -- Is the TITLE element #PCDATA, RCDATA, or CDATA content?
86            On Mosaic, it's #PCDATA, but in the linemode browser,
87            it's more like CDATA, but not quite.
88            -->
89    
90    <!ENTITY % HTML.NEXTID "IGNORE"
91            -- Used by the NeXT implementation to keep track of the
92            next anchor id to use
93            -->
94    
95    <!ENTITY % HTML.font-phrase "IGNORE"
96            -- allow B, I, TT, U outside PRE,
97            CITE, VAR, etc. inside PRE
98            -->
99    
100    <!ENTITY % HTML.litCDATA "IGNORE"
101            -- treat XMP, LISTING as CDATA, as per linemodeWWW
102            -->
103    
104    <!ENTITY % HTML.forms "INCLUDE"
105            -- Support for forms as per
106    http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html
107            -->
108    
109  <!-- DTD definitions -->  <!-- DTD definitions -->
110    
111  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >  <!ENTITY % heading "H1|H2|H3|H4|H5|H6" >
112  <!ENTITY % list "UL|OL|DIR|MENU">  <!ENTITY % list " UL | OL | DIR | MENU ">
113  <!ENTITY % literal "XMP|LISTING">  <!ENTITY % literal " XMP | LISTING ">
   
 <!ENTITY % headelement  
          "TITLE | NEXTID | ISINDEX" >  
114    
115  <!ENTITY % bodyelement  <!ENTITY % URI "CDATA"
116           "P | %heading |          -- The term URI means a CDATA attribute
117           %list | DL | HEADERS | ADDRESS | PRE | BLOCKQUOTE             whose value is a Uniform Resource Identifier,
118          | %literal">             as defined by
119            "Universal Resource Identifiers" by Tim Berners-Lee
120  <!ENTITY % oldstyle "%headelement | %bodyelement | #PCDATA">          aka http://info.cern.ch/hypertext/WWW/Addressing/URL/URI_Overview.html
121  <!ENTITY % URL "CDATA"  
122          -- The term URL means a CDATA attribute          Note that CDATA attributes are limited by the LITLEN
123             whose value is a Universal Resource Locator,          capacity (1024 in the current version of html.decl),
124             as defined in ftp://info.cern.ch/pub/www/doc/url3.txt          so that URIs in HTML have a bounded length.
125          -->          -->
126    
127  <!ENTITY % linkattributes  <!ENTITY % Content-Type "CDATA"
128          "NAME NMTOKEN #IMPLIED          -- meaning a MIME content type, as per RFC1341 or any of its updates.
129          HREF %URL; #IMPLIED          -->
130          TYPE NAME #IMPLIED -- type of relashionship to referent data:  
131    <![ %HTML.anchorNameCDATA [ <!ENTITY % anchor-name "CDATA"> ]]>
132    <!ENTITY % anchor-name "ID">
133    
134    <![ %HTML.linkRelationships [ <!ENTITY % linkRelAttrs "
135            REL CDATA #IMPLIED -- forward relationship type --
136            REV CDATA #IMPLIED -- reversed relationship type
137                                  to referent data:
138    
139                                  PARENT CHILD, SIBLING, NEXT, TOP,                                  PARENT CHILD, SIBLING, NEXT, TOP,
140                                   DEFINITION, UPDATE, ORIGINAL etc. --                                  DEFINITION, UPDATE, ORIGINAL etc. --
141          URN CDATA #IMPLIED -- universal resource number. unique doc id --          "> ]]>
142    <!ENTITY % linkRelAttrs "">
143    
144    <![ %HTML.linkRedundantInfo [ <!ENTITY % linkRedundantAttrs "
145            URN CDATA #IMPLIED -- universal resource number --
146    
147          TITLE CDATA #IMPLIED -- advisory only --          TITLE CDATA #IMPLIED -- advisory only --
148          METHODS NAMES #IMPLIED -- supported methods of the object:          "> ]]>
149    <!ENTITY % linkRedundantAttrs "">
150    
151    <![ %HTML.linkMethods [ <!ENTITY % linkMethodAttrs "
152            METHODS NAMES #IMPLIED -- supported public methods of the object:
153                                          TEXTSEARCH, GET, HEAD, ... --                                          TEXTSEARCH, GET, HEAD, ... --
154            "> ]]>
155    <!ENTITY % linkMethodAttrs "">
156    
157    <!ENTITY % linkattributes
158            "NAME %anchor-name #IMPLIED
159            HREF %URI;  #IMPLIED
160            %linkRelAttrs;
161            %linkRedundantAttrs;
162            %linkMethodAttrs;
163          ">          ">
164    
 <!-- Document Element -->  
165    
166  <!ELEMENT HTML O O  ((HEAD | BODY | %oldstyle)*, PLAINTEXT?)>  <!-- Document Element -->
167    
 <!ELEMENT HEAD - -  (TITLE? & ISINDEX? & NEXTID? & LINK*)>  
168    
169  <!ELEMENT TITLE - -  RCDATA  <![ %HTML.PLAINTEXT [ <!ENTITY % html-content "(HEAD, BODY), PLAINTEXT?"> ]]>
170    <!ENTITY % html-content "HEAD, BODY">
171    <!ELEMENT HTML O O  (%html-content)>
172    
173    <![ %HTML.NEXTID [  <!ENTITY % head-content "TITLE? & ISINDEX? & LINK* & BASE?
174                            & NEXTID?"> ]]>
175    <!ENTITY % head-content "TITLE & ISINDEX? & LINK* & BASE?">
176    <!ELEMENT HEAD O O  (%head-content)>
177    
178    <![ %HTML.titleCDATA [ <!ENTITY % title-content "CDATA"> ]]>
179    <!ENTITY % title-content "(#PCDATA)">
180    <!ELEMENT TITLE - -  %title-content
181            -- The TITLE element is not considered part of the flow of text.            -- The TITLE element is not considered part of the flow of text.
182               It should be displayed, for example as the page header or               It should be displayed, for example as the page header or
183               window title.               window title.
# Line 61  Line 187 
187            -- WWW clients should offer the option to perform a search on            -- WWW clients should offer the option to perform a search on
188               documents containing ISINDEX.               documents containing ISINDEX.
189            -->            -->
190    
191  <!ELEMENT NEXTID - O EMPTY>  <!ELEMENT NEXTID - O EMPTY>
192  <!ATTLIST NEXTID N NUMBER #REQUIRED  <!ATTLIST NEXTID N %anchor-name #REQUIRED
193            -- The number should be the highest number that appears in            -- The number should be a name suitable for use
194               any NAME attribute in the document.               for the ID of a new element. When used, the value
195                 has its numeric part incremented. EG Z67 becomes Z68
196            -->            -->
   
197  <!ELEMENT LINK - O EMPTY>  <!ELEMENT LINK - O EMPTY>
198  <!ATTLIST LINK  <!ATTLIST LINK
199          %linkattributes>          %linkattributes>
200                    
201  <!ENTITY % inline "EM | TT | STRONG | B | I | U |  <!ELEMENT BASE - O EMPTY    -- Reference context for URIs -->
202                          CODE | SAMP | KBD | KEY | VAR | DFN | CITE "  <!ATTLIST BASE
203    
204            HREF %URI; #IMPLIED
205    
206          >          >
207    
208  <!ELEMENT (%inline;) - - (#PCDATA)>  <!ENTITY % font "TT | B | I | U ">
209    <!ENTITY % phrase "EM | STRONG | CODE | SAMP | KBD | KEY | VAR | DFN | CITE">
210    
211    <![ %HTML.font-phrase [
212            <!ENTITY % obsolete-font "| %font">
213            <!ENTITY % obsolete-phrase "| %phrase">
214            ]]>
215    <!ENTITY % obsolete-font "">
216    <!ENTITY % obsolete-phrase "">
217    <![ %HTML.pSeparator [
218            <!ENTITY % obsolete-p "| P">
219            ]]>
220    <!ENTITY % obsolete-p "">
221    
222    <!ENTITY % inline "%phrase %obsolete-font">
223    <!ENTITY % pre-inline "%font %obsolete-phrase %obsolete-p">
224    
225    <!ENTITY % text "#PCDATA | IMG | %inline | BR %obsolete-p">
226    
227  <!ENTITY % hypertext "#PCDATA | %inline; | A">  <!ENTITY % htext "A | %text"    -- Plus links, no structure -->
228    
229  <!ELEMENT BODY - -  (%bodyelement|%hypertext;)*>  <![ %HTML.font-phrase [ <!ENTITY % font-content "(%htext)+"> ]]>
230    <!ENTITY % font-content "#PCDATA">
231    <!ELEMENT (%font;) - - (%font-content;)>
232    
233  <!ELEMENT A     - -  (#PCDATA)>  <!ELEMENT (%phrase;) - - (%htext)+>
234    
235    <!ENTITY % pre "PRE | XMP | LISTING">
236    
237    <![ %HTML.forms [ <!ENTITY % block-form "| FORM"> ]]>
238    <!ENTITY % block-form "">
239    
240    <![ %HTML.pSeparator [
241            <!ENTITY % obsolete-htext "| %htext">
242            <!ENTITY % block-p "">
243            ]]>
244    <!ENTITY % obsolete-htext "| A">
245    <!ENTITY % block-p "| P ">
246    
247    <!ENTITY % block "HR | %list | DL
248                    | %pre | BLOCKQUOTE | ADDRESS
249                    %block-form %block-p">
250    
251    
252    <!ENTITY % body-content "%heading | %block %obsolete-htext">
253    <!ELEMENT BODY O O  (%body-content)*>
254    
255    
256    <!ELEMENT A     - -  (%heading|%block|%text)+ -(A)
257            -- @# Technically, this allows silliness like:
258                    <H2><A>xyz<H1>h1</H1></A></H2>
259            The right way to do anchors outside of %htext is more like:
260                    <as id=z1><H2>lkjlkj</h2><ae start=z1>
261            -->
262  <!ATTLIST A  <!ATTLIST A
263          %linkattributes;          %linkattributes;
264          >          >
265    
266  <!ELEMENT P     - O EMPTY -- separates paragraphs -->  <!ELEMENT IMG    - O EMPTY --  Embedded image -->
267    <!ATTLIST IMG
268            SRC %URI;  #IMPLIED     -- URI of document to embed --
269            ALT CDATA #IMPLIED
270            ALIGN (top|middle|bottom) #IMPLIED
271            ISMAP (ISMAP) #IMPLIED
272            >
273    
274    
275  <!ELEMENT (%heading)    - -  (%hypertext;)+>  <![ %HTML.pSeparator [ <!ENTITY % p-content "EMPTY"> ]]>
276    <!ENTITY % p-content "(%htext)+">
277    <!ELEMENT P     - O %p-content>
278    <!ELEMENT HR    - O EMPTY -- horizontal rule -->
279    <!ELEMENT BR    - O EMPTY -- @# BR -> &br; -->
280    
281  <!ELEMENT DL    - -  (DT | DD | P | %hypertext;)*>  <!ELEMENT ( %heading )  - -  (%htext;)+>
282  <!--    Content should match ((DT,(%hypertext;)+)+,(DD,(%hypertext;)+))  
283          But mixed content is messy.  <!ELEMENT DL    - -  (DT*, DD?)+>
   -->  
284  <!ATTLIST DL  <!ATTLIST DL
285          STYLE NAME #IMPLIED -- COMPACT, etc.--          STYLE (COMPACT) #IMPLIED>
286          >  
287    <!ELEMENT DT    - O (%htext)+>
288  <!ELEMENT DT    - O EMPTY>  <!ELEMENT DD    - O (%htext|%block)+>
 <!ELEMENT DD    - O EMPTY>  
   
 <!ELEMENT (UL|OL) - -  (%hypertext;|LI|P)+>  
 <!ELEMENT (DIR|MENU) - -  (%hypertext;|LI)+>  
 <!--    Content should match ((LI,(%hypertext;)+)+)  
         But mixed content is messy.  
   -->  
289    
290  <!ELEMENT LI    - O EMPTY>  <!ELEMENT (%list) - -  (LI)+>
291    
292  <!ELEMENT BLOCKQUOTE - - (%hypertext;|P)+  <!ELEMENT LI    - O (%htext|%block)+>
293    
294    <!ELEMENT BLOCKQUOTE - - ((%htext)+, ADDRESS?)+ -- @# Hmm... --
295          -- for quoting some other source -->          -- for quoting some other source -->
 <!ATTLIST BLOCKQUOTE  
         SOURCE CDATA #IMPLIED -- URL of source --  
         >  
296    
297  <!ELEMENT ADDRESS - - (%hypertext;|P)+>  <!ELEMENT ADDRESS - - (%htext;)+>
298    
299  <!ELEMENT PRE - - (#PCDATA | A | B | I | U | P)+>  <!ELEMENT PRE - - (#PCDATA|%pre-inline|A)+>
300  <!ATTLIST PRE  <!ATTLIST PRE
301          WIDTH NUMBER #implied          WIDTH NUMBER #implied
302          >          >
303    
   
304  <!-- 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 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 -->  
   
 <!-- deprecated elements -->  
305    
306  <!ELEMENT (%literal) - -  CDATA>  <!ENTITY % ISOlat1 PUBLIC
307      "ISO 8879:1986//ENTITIES Added Latin 1//EN">
308    %ISOlat1;
309    
310    <!ENTITY amp "&#38;"     -- ampersand -->
311    <!ENTITY gt "&#62;"      -- greater than -->
312    <!ENTITY lt "&#60;"      -- less than -->
313    <!ENTITY nbsp "<? nonbreaking-space>">
314    <!-- @# should add entites for processing instructions
315            for line break, centering, etc. -->
316    
317    
318    <![ %HTML.litCDATA [ <!ENTITY % lit-content "CDATA"> ]]>
319    <!ENTITY % lit-content "RCDATA">
320    <!ELEMENT (%literal) - -  %lit-content>
321    
322    <![ %HTML.PLAINTEXT [
323  <!ELEMENT PLAINTEXT - O EMPTY>  <!ELEMENT PLAINTEXT - O EMPTY>
324    ]]>
325    
326    
327    <!-- Forms  -->
328    <![ %HTML.forms [
329    
330    <!ENTITY % HTTP-Method "(GET | POST)">
331    <!ELEMENT FORM - - (%body-content) -(FORM) +(INPUT|SELECT|TEXTAREA)>
332    <!ATTLIST FORM
333            ACTION %URI #REQUIRED
334            METHOD %HTTP-Method #IMPLIED -- @# MAILTO? --
335            ENCTYPE %Content-Type; #IMPLIED
336            >
337    
338    <!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX |
339                            RADIO | SUBMIT | RESET |
340                            IMAGE | HIDDEN )">
341    <!ELEMENT INPUT - O EMPTY>
342    <!ATTLIST INPUT
343            TYPE %InputType #IMPLIED -- @# defaults to TEXT?? --
344            NAME CDATA #IMPLIED -- required for all but submit and reset --
345            VALUE CDATA #IMPLIED
346            SRC %URI #IMPLIED -- for image inputs --
347            STATE (CHECKED) #IMPLIED
348            SIZE CDATA #IMPLIED -- @# should be NUMBERS: delimit with space, not comma --
349            MAXLENGTH NUMBER #IMPLIED
350            ALIGN (top|middle|bottom|left|center|right) #IMPLIED --@#supported?--
351            >
352    
353    <!ELEMENT SELECT - - (OPTION+)>
354    <!ATTLIST SELECT
355            NAME CDATA #REQUIRED
356            SIZE NUMBER #IMPLIED
357            SELECTIONS (MULTIPLE) #IMPLIED
358            >
359    
360    <!ELEMENT OPTION - O (#PCDATA)>
361    <!ATTLIST OPTION
362            STATE (SELECTED) #IMPLIED
363            VALUE CDATA #IMPLIED
364            >
365    
366    <!ELEMENT TEXTAREA - - (#PCDATA)>
367    <!ATTLIST TEXTAREA
368            NAME CDATA #REQUIRED
369            ROWS NUMBER #REQUIRED -- @#implied? --
370            COLS NUMBER #REQUIRED
371            >
372    ]]>
373    
 <!-- Local Variables: -->  
 <!-- mode: sgml -->  
 <!-- compile-command: "sgmls -s -p " -->  
 <!-- end: -->  

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.8

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24