about summary refs log blame commit diff stats
path: root/WWW/Library/Implementation/HTMLDTD.h
blob: a176e59be346e3186521fbf2c2fac0d0614d634d (plain) (tree)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890

























































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                             
/*                                               The HTML DTD -- software interface in libwww
                              HTML DTD - SOFTWARE INTERFACE
                                             
   SGML purists should excuse the use of the term "DTD" in this file to represent
   DTD-related information which is not exactly a DTD itself.
   
   The C modular structure doesn't work very well here, as the dtd is partly in the .h and
   partly in the .c which are not very independent.  Tant pis.
   
 */
#ifndef HTMLDTD_H
#define HTMLDTD_H

#ifndef HTUTILS_H
#include "HTUtils.h"
#endif /* HTUTILS_H */
#include "SGML.h"

/*

Element Numbers

 */

/*

   Must Match all tables by element!
   These include tables in HTMLDTD.c and code in HTML.c.
   
 */
typedef enum _HTMLElement {
        HTML_A,
        HTML_ABBREV,
        HTML_ACRONYM,
        HTML_ADDRESS,
	HTML_APPLET,
	HTML_AREA,
        HTML_AU,
        HTML_AUTHOR,
        HTML_B,
	HTML_BANNER,
	HTML_BASE,
	HTML_BASEFONT,
        HTML_BDO,
	HTML_BGSOUND,
        HTML_BIG,
	HTML_BLINK,
	HTML_BLOCKQUOTE,
	HTML_BODY,
	HTML_BODYTEXT,
	HTML_BQ,
	HTML_BR,
        HTML_CAPTION,
	HTML_CENTER,
	HTML_CITE,
	HTML_CODE,
	HTML_COL,
	HTML_COLGROUP,
	HTML_COMMENT,
	HTML_CREDIT,
        HTML_DD,
        HTML_DEL,
	HTML_DFN,
	HTML_DIR,
	HTML_DIV,
        HTML_DL,
	HTML_DLC,
	HTML_DT,
        HTML_EM,
	HTML_EMBED,
	HTML_FIELDSET,
	HTML_FIG,
	HTML_FN,
	HTML_FONT,
	HTML_FORM,
	HTML_FRAME,
	HTML_FRAMESET,
        HTML_H1,
	HTML_H2,
	HTML_H3,
	HTML_H4,
	HTML_H5,
	HTML_H6,
	HTML_HEAD,
	HTML_HR,
	HTML_HTML,
        HTML_I,
	HTML_IMG,
	HTML_INPUT,
        HTML_INS,
	HTML_ISINDEX,
        HTML_KBD,
	HTML_LABEL,
	HTML_LH,
	HTML_LI,
	HTML_LINK,
	HTML_LISTING,
        HTML_MAP,
	HTML_MARQUEE,
	HTML_MATH,
	HTML_MENU,
	HTML_META,
	HTML_NEXTID,
	HTML_NOFRAMES,
	HTML_NOTE,
        HTML_OBJECT,
        HTML_OL,
	HTML_OPTION,
	HTML_OVERLAY,
	HTML_P,
	HTML_PARAM,
	HTML_PLAINTEXT,
	HTML_PRE,
	HTML_Q,
        HTML_S,
        HTML_SAMP,
	HTML_SCRIPT,
	HTML_SELECT,
        HTML_SMALL,
	HTML_SPAN,
	HTML_SPOT,
	HTML_STRIKE,
	HTML_STRONG,
	HTML_STYLE,
        HTML_SUB,
        HTML_SUP,
	HTML_TAB,
	HTML_TABLE,
	HTML_TBODY,
	HTML_TD,
	HTML_TEXTAREA,
	HTML_TEXTFLOW,
	HTML_TFOOT,
	HTML_TH,
	HTML_THEAD,
	HTML_TITLE,
	HTML_TR,
	HTML_TT,
        HTML_U,
	HTML_UL,
        HTML_VAR,
	HTML_XMP } HTMLElement;

#define HTML_ELEMENTS 111

/*

Attribute numbers

 */

/*

   Identifier is HTML_<element>_<attribute>.
   These must match the tables in HTML.c!
   
 */
#define HTML_A_ACCESSKEY        0
#define HTML_A_CLASS            1
#define HTML_A_CLEAR            2
#define HTML_A_COORDS           3
#define HTML_A_DIR              4
#define HTML_A_HREF             5
#define HTML_A_ID               6
#define HTML_A_ISMAP            7
#define HTML_A_LANG             8
#define HTML_A_MD               9
#define HTML_A_NAME            10
#define HTML_A_NOTAB           11
#define HTML_A_ONCLICK         12
#define HTML_A_ONMOUSEOUT      13
#define HTML_A_ONMOUSEOVER     14
#define HTML_A_REL             15
#define HTML_A_REV             16
#define HTML_A_SHAPE           17
#define HTML_A_STYLE           18
#define HTML_A_TABINDEX        19
#define HTML_A_TARGET          20
#define HTML_A_TITLE           21
#define HTML_A_TYPE            22
#define HTML_A_URN             23
#define HTML_A_ATTRIBUTES      24

#define HTML_ADDRESS_CLASS      0
#define HTML_ADDRESS_CLEAR      1
#define HTML_ADDRESS_DIR        2
#define HTML_ADDRESS_ID         3
#define HTML_ADDRESS_LANG       4
#define HTML_ADDRESS_NOWRAP     5
#define HTML_ADDRESS_STYLE      6
#define HTML_ADDRESS_ATTRIBUTES 7

#define	HTML_APPLET_ALIGN       0
#define	HTML_APPLET_ALT         1
#define	HTML_APPLET_CLASS       2
#define	HTML_APPLET_CLEAR       3
#define	HTML_APPLET_CODE        4
#define	HTML_APPLET_CODEBASE    5
#define	HTML_APPLET_DIR         6
#define	HTML_APPLET_DOWNLOAD    7
#define	HTML_APPLET_HEIGHT      8
#define	HTML_APPLET_HSPACE      9
#define	HTML_APPLET_ID         10
#define	HTML_APPLET_LANG       11
#define	HTML_APPLET_NAME       12
#define	HTML_APPLET_STYLE      13
#define	HTML_APPLET_TITLE      14
#define	HTML_APPLET_VSPACE     15
#define	HTML_APPLET_WIDTH      16
#define	HTML_APPLET_ATTRIBUTES 17

#define	HTML_AREA_ALT           0
#define	HTML_AREA_CLASS         1
#define	HTML_AREA_CLEAR         2
#define	HTML_AREA_COORDS        3
#define	HTML_AREA_DIR           4
#define	HTML_AREA_HREF          5
#define	HTML_AREA_ID            6
#define	HTML_AREA_LANG          7
#define	HTML_AREA_NOHREF        8
#define	HTML_AREA_NONOTAB       9
#define	HTML_AREA_ONCLICK      10
#define	HTML_AREA_ONMOUSEOUT   11
#define	HTML_AREA_ONMOUSEOVER  12
#define	HTML_AREA_SHAPE        13
#define	HTML_AREA_STYLE        14
#define	HTML_AREA_TABINDEX     15
#define	HTML_AREA_TARGET       16
#define	HTML_AREA_TITLE        17
#define	HTML_AREA_ATTRIBUTES   18

#define HTML_BASE_HREF          0
#define	HTML_BASE_TARGET        1
#define HTML_BASE_ATTRIBUTES    2

#define HTML_BGSOUND_CLASS      0
#define HTML_BGSOUND_CLEAR      1
#define HTML_BGSOUND_DIR        2
#define HTML_BGSOUND_ID         3
#define HTML_BGSOUND_LANG       4
#define HTML_BGSOUND_LOOP       5
#define HTML_BGSOUND_SRC        6
#define HTML_BGSOUND_STYLE      7
#define HTML_BGSOUND_ATTRIBUTES 8

#define HTML_BQ_CLASS           0
#define HTML_BQ_CLEAR           1
#define HTML_BQ_DIR             2
#define HTML_BQ_ID              3
#define HTML_BQ_LANG            4
#define HTML_BQ_NOWRAP          5
#define HTML_BQ_STYLE           6
#define HTML_BQ_ATTRIBUTES      7

#define HTML_BODYTEXT_CLASS     1
#define HTML_BODYTEXT_CLEAR     2
#define HTML_BODYTEXT_DATA      3
#define HTML_BODYTEXT_DIR       4
#define HTML_BODYTEXT_ID        5
#define HTML_BODYTEXT_LANG      6
#define HTML_BODYTEXT_NAME      7
#define HTML_BODYTEXT_OBJECT    8
#define HTML_BODYTEXT_REF       9
#define HTML_BODYTEXT_STYLE    10
#define HTML_BODYTEXT_TYPE     11
#define HTML_BODYTEXT_VALUE    12
#define HTML_BODYTEXT_VALUETYPE  13
#define HTML_BODYTEXT_ATTRIBUTES 14

#define HTML_BODY_ALINK         0
#define HTML_BODY_BACKGROUND    1
#define HTML_BODY_BGCOLOR       2
#define HTML_BODY_CLASS         3
#define HTML_BODY_CLEAR         4
#define HTML_BODY_DIR           5
#define HTML_BODY_ID            6
#define HTML_BODY_LANG          7
#define HTML_BODY_LINK          8
#define HTML_BODY_ONLOAD        9
#define HTML_BODY_ONUNLOAD     10
#define HTML_BODY_STYLE        11
#define HTML_BODY_TEXT         12
#define HTML_BODY_VLINK        13
#define HTML_BODY_ATTRIBUTES   14

#define HTML_CAPTION_ACCESSKEY  0
#define HTML_CAPTION_ALIGN      1
#define HTML_CAPTION_CLASS      2
#define HTML_CAPTION_CLEAR      3
#define HTML_CAPTION_DIR        4
#define HTML_CAPTION_ID         5
#define HTML_CAPTION_LANG       6
#define HTML_CAPTION_STYLE      7
#define HTML_CAPTION_ATTRIBUTES 8

#define HTML_COL_ALIGN          0
#define HTML_COL_CHAR           1
#define HTML_COL_CHAROFF        2
#define HTML_COL_CLASS          3
#define HTML_COL_CLEAR          4
#define HTML_COL_DIR            5
#define HTML_COL_ID             6
#define HTML_COL_LANG           7
#define HTML_COL_SPAN           8
#define HTML_COL_STYLE          9
#define HTML_COL_VALIGN        10
#define HTML_COL_WIDTH         11
#define HTML_COL_ATTRIBUTES    12

#define HTML_CREDIT_CLASS       0
#define HTML_CREDIT_CLEAR       1
#define HTML_CREDIT_DIR         2
#define HTML_CREDIT_ID          3
#define HTML_CREDIT_LANG        4
#define HTML_CREDIT_STYLE       5
#define HTML_CREDIT_ATTRIBUTES  6

#define HTML_DIV_ALIGN          0
#define HTML_DIV_CLASS          1
#define HTML_DIV_CLEAR          2
#define HTML_DIV_DIR            3
#define HTML_DIV_ID             4
#define HTML_DIV_LANG           5
#define HTML_DIV_STYLE          6
#define HTML_DIV_ATTRIBUTES     7

#define HTML_DL_CLASS           0
#define HTML_DL_CLEAR           1
#define HTML_DL_COMPACT         2
#define HTML_DL_DIR             3
#define HTML_DL_ID              4
#define HTML_DL_LANG            5
#define HTML_DL_STYLE           6
#define HTML_DL_ATTRIBUTES      7

#define HTML_EMBED_ALIGN        0
#define HTML_EMBED_ALT          1
#define HTML_EMBED_BORDER       2
#define HTML_EMBED_CLASS        3
#define HTML_EMBED_CLEAR        4
#define HTML_EMBED_DIR          5
#define HTML_EMBED_HEIGHT       6
#define HTML_EMBED_ID           7
#define HTML_EMBED_IMAGEMAP     8
#define HTML_EMBED_ISMAP        9
#define HTML_EMBED_LANG        10
#define HTML_EMBED_MD          11
#define HTML_EMBED_NAME        12
#define HTML_EMBED_NOFLOW      13
#define HTML_EMBED_PARAMS      14
#define HTML_EMBED_SRC         15
#define HTML_EMBED_STYLE       16
#define HTML_EMBED_UNITS       17
#define HTML_EMBED_USEMAP      18
#define HTML_EMBED_WIDTH       19
#define HTML_EMBED_ATTRIBUTES  20

#define HTML_FIELDSET_CLASS     0
#define HTML_FIELDSET_CLEAR     1
#define HTML_FIELDSET_DIR       2
#define HTML_FIELDSET_ID        3
#define HTML_FIELDSET_LANG      4
#define HTML_FIELDSET_STYLE     5
#define HTML_FIELDSET_TITLE     6
#define HTML_FIELDSET_ATTRIBUTES 7

#define HTML_FIG_ALIGN          0
#define HTML_FIG_BORDER         1
#define HTML_FIG_CLASS          2
#define HTML_FIG_CLEAR          3
#define HTML_FIG_DIR            4
#define HTML_FIG_HEIGHT         5
#define HTML_FIG_ID             6
#define HTML_FIG_IMAGEMAP       7
#define HTML_FIG_ISOBJECT       8
#define HTML_FIG_LANG           9
#define HTML_FIG_MD            10
#define HTML_FIG_NOFLOW        11
#define HTML_FIG_SRC           12
#define HTML_FIG_STYLE         13
#define HTML_FIG_UNITS         14
#define HTML_FIG_WIDTH         15
#define HTML_FIG_ATTRIBUTES    16

#define HTML_FN_CLASS           0
#define HTML_FN_CLEAR           1
#define HTML_FN_DIR             2
#define HTML_FN_ID              3
#define HTML_FN_LANG            4
#define HTML_FN_STYLE           5
#define HTML_FN_ATTRIBUTES      6

#define HTML_FONT_CLASS         0
#define HTML_FONT_CLEAR         1
#define HTML_FONT_COLOR         2
#define HTML_FONT_DIR           3
#define HTML_FONT_END           4
#define HTML_FONT_FACE          5
#define HTML_FONT_ID            6
#define HTML_FONT_LANG          7
#define HTML_FONT_SIZE          8
#define HTML_FONT_STYLE         9
#define HTML_FONT_ATTRIBUTES   10

#define HTML_FORM_ACTION        0
#define HTML_FORM_CLASS         1
#define HTML_FORM_CLEAR         2
#define HTML_FORM_DIR           3
#define HTML_FORM_ENCTYPE       4
#define HTML_FORM_ID            5
#define HTML_FORM_LANG          6
#define HTML_FORM_METHOD        7
#define HTML_FORM_ONSUBMIT      8
#define HTML_FORM_SCRIPT        9
#define HTML_FORM_STYLE        10
#define HTML_FORM_SUBJECT      11
#define	HTML_FORM_TARGET       12
#define HTML_FORM_TITLE        13
#define HTML_FORM_ATTRIBUTES   14

#define HTML_FRAME_MARGINHEIGHT 0
#define HTML_FRAME_MARGINWIDTH  1
#define HTML_FRAME_NAME         2
#define HTML_FRAME_NORESIZE     3
#define HTML_FRAME_SCROLLING    4
#define HTML_FRAME_SRC          5
#define HTML_FRAME_ATTRIBUTES   6

#define HTML_FRAMESET_COLS      0
#define HTML_FRAMESET_ROWS      1
#define HTML_FRAMESET_ATTRIBUTES 2

#define HTML_GEN_CLASS          0
#define HTML_GEN_CLEAR          1
#define HTML_GEN_DIR            2
#define HTML_GEN_ID             3
#define HTML_GEN_LANG           4
#define HTML_GEN_STYLE          5
#define HTML_GEN_ATTRIBUTES     6

#define HTML_H_ALIGN            0
#define HTML_H_CLASS            1
#define HTML_H_CLEAR            2
#define HTML_H_DINGBAT          3
#define HTML_H_DIR              4
#define HTML_H_ID               5
#define HTML_H_LANG             6
#define HTML_H_MD               7
#define HTML_H_NOWRAP           8
#define HTML_H_SEQNUM           9
#define HTML_H_SKIP            10
#define HTML_H_SRC             11
#define HTML_H_STYLE           12
#define HTML_H_ATTRIBUTES      13

#define HTML_HR_ALIGN           0
#define HTML_HR_CLASS           1
#define HTML_HR_CLEAR           2
#define HTML_HR_DIR             3
#define HTML_HR_ID              4
#define HTML_HR_MD              5
#define HTML_HR_NOSHADE         6
#define HTML_HR_SIZE            7
#define HTML_HR_SRC             8
#define HTML_HR_STYLE           9
#define HTML_HR_WIDTH          10
#define HTML_HR_ATTRIBUTES     11

#define HTML_IMG_ALIGN          0
#define HTML_IMG_ALT            1
#define HTML_IMG_BORDER         2
#define HTML_IMG_CLASS          3
#define HTML_IMG_CLEAR          4
#define HTML_IMG_DIR            5
#define HTML_IMG_HEIGHT         6
#define HTML_IMG_ID             7
#define HTML_IMG_ISMAP          8
#define HTML_IMG_ISOBJECT       9
#define HTML_IMG_LANG          10
#define HTML_IMG_MD            11
#define HTML_IMG_SRC           12
#define HTML_IMG_STYLE         13
#define HTML_IMG_TITLE         14
#define HTML_IMG_UNITS         15
#define HTML_IMG_USEMAP        16
#define HTML_IMG_WIDTH         17
#define HTML_IMG_ATTRIBUTES    18

#define HTML_INPUT_ACCEPT       0
#define HTML_INPUT_ALIGN        1
#define HTML_INPUT_CHECKED      2
#define HTML_INPUT_CLASS        3
#define HTML_INPUT_CLEAR        4
#define HTML_INPUT_DIR          5
#define HTML_INPUT_DISABLED     6
#define HTML_INPUT_ERROR        7
#define HTML_INPUT_HEIGHT       8
#define HTML_INPUT_ID           9
#define HTML_INPUT_LANG        10
#define HTML_INPUT_MAX         11
#define HTML_INPUT_MAXLENGTH   12
#define HTML_INPUT_MD          13
#define HTML_INPUT_MIN         14
#define HTML_INPUT_NAME        15
#define HTML_INPUT_NOTAB       16
#define HTML_INPUT_ONBLUR      17
#define HTML_INPUT_ONCHANGE    18
#define HTML_INPUT_ONCLICK     19
#define HTML_INPUT_ONFOCUS     20
#define HTML_INPUT_ONSELECT    21
#define HTML_INPUT_SIZE        22
#define HTML_INPUT_SRC         23
#define HTML_INPUT_STYLE       24
#define HTML_INPUT_TABINDEX    25
#define HTML_INPUT_TITLE       26
#define HTML_INPUT_TYPE        27
#define HTML_INPUT_VALUE       28
#define HTML_INPUT_WIDTH       29
#define HTML_INPUT_ATTRIBUTES  30

#define HTML_ISINDEX_ACTION     0  /* Treat as synonym for HREF. - FM */
#define HTML_ISINDEX_DIR        1
#define HTML_ISINDEX_HREF       2  /* HTML 3.0 "action". - FM */
#define HTML_ISINDEX_LANG       3
#define HTML_ISINDEX_PROMPT     4  /* HTML 3.0 "prompt". - FM */
#define HTML_ISINDEX_ATTRIBUTES 5

#define HTML_LINK_CLASS         0
#define HTML_LINK_HREF          1
#define HTML_LINK_ID            2
#define HTML_LINK_REL           3
#define HTML_LINK_REV           4
#define HTML_LINK_STYLE         5
#define	HTML_LINK_TARGET        6
#define HTML_LINK_TITLE         7
#define HTML_LINK_TYPE          8
#define HTML_LINK_ATTRIBUTES    9

#define HTML_LABEL_ACCESSKEY    0
#define HTML_LABEL_CLASS        1
#define HTML_LABEL_CLEAR        2
#define HTML_LABEL_DIR          3
#define HTML_LABEL_FOR          4
#define HTML_LABEL_ID           5
#define HTML_LABEL_LANG         6
#define HTML_LABEL_ONCLICK      7
#define HTML_LABEL_STYLE        8
#define HTML_LABEL_TITLE        9
#define HTML_LABEL_ATTRIBUTES  10

#define HTML_LI_CLASS           0
#define HTML_LI_CLEAR           1
#define HTML_LI_DINGBAT         2
#define HTML_LI_DIR             3
#define HTML_LI_ID              4
#define HTML_LI_LANG            5
#define HTML_LI_MD              6
#define HTML_LI_SRC             7
#define HTML_LI_SKIP            8
#define HTML_LI_STYLE           9
#define HTML_LI_TYPE           10
#define HTML_LI_VALUE          11
#define HTML_LI_ATTRIBUTES     12

#define HTML_MAP_CLASS          0
#define HTML_MAP_CLEAR          1
#define HTML_MAP_DIR            2
#define HTML_MAP_ID             3
#define HTML_MAP_LANG           4
#define HTML_MAP_NAME           5
#define HTML_MAP_STYLE          6
#define HTML_MAP_TITLE          7
#define HTML_MAP_ATTRIBUTES     8

#define HTML_MATH_BOX           0
#define HTML_MATH_CLASS         1
#define HTML_MATH_CLEAR         2
#define HTML_MATH_DIR           3
#define HTML_MATH_ID            4
#define HTML_MATH_LANG          5
#define HTML_MATH_STYLE         6
#define HTML_MATH_ATTRIBUTES    7

#define HTML_META_CONTENT       0
#define HTML_META_HTTP_EQUIV    1  /* For parsing in HTML.c - FM */
#define HTML_META_NAME          2
#define HTML_META_ATTRIBUTES    3

#define NEXTID_N 		0

#define HTML_NOTE_CLASS         0
#define HTML_NOTE_CLEAR         1
#define HTML_NOTE_DIR           2
#define HTML_NOTE_ID            3
#define HTML_NOTE_LANG          4
#define HTML_NOTE_MD            5
#define HTML_NOTE_ROLE          6 /* Old name for CLASS - FM */
#define HTML_NOTE_SRC           7
#define HTML_NOTE_STYLE         8
#define HTML_NOTE_ATTRIBUTES    9

#define HTML_OBJECT_ALIGN       0
#define HTML_OBJECT_BORDER      1
#define HTML_OBJECT_CLASS       2
#define HTML_OBJECT_CLASSID     3
#define HTML_OBJECT_CODEBASE    4
#define HTML_OBJECT_CODETYPE    5
#define HTML_OBJECT_DATA        6
#define HTML_OBJECT_DECLARE     7
#define HTML_OBJECT_DIR         8
#define HTML_OBJECT_HEIGHT      9
#define HTML_OBJECT_HSPACE     10
#define HTML_OBJECT_ID         11
#define HTML_OBJECT_ISMAP      12
#define HTML_OBJECT_LANG       13
#define HTML_OBJECT_NAME       14
#define HTML_OBJECT_NOTAB      15
#define HTML_OBJECT_SHAPES     16
#define HTML_OBJECT_STANDBY    17
#define HTML_OBJECT_STYLE      18
#define HTML_OBJECT_TABINDEX   19
#define HTML_OBJECT_TITLE      20
#define HTML_OBJECT_TYPE       21
#define HTML_OBJECT_USEMAP     22
#define HTML_OBJECT_VSPACE     23
#define HTML_OBJECT_WIDTH      24
#define HTML_OBJECT_ATTRIBUTES 25

#define HTML_OL_CLASS           0
#define HTML_OL_CLEAR           1
#define HTML_OL_COMPACT         2
#define HTML_OL_CONTINUE        3
#define HTML_OL_DIR             4
#define HTML_OL_ID              5
#define HTML_OL_LANG            6
#define HTML_OL_SEQNUM          7
#define HTML_OL_START           8
#define HTML_OL_STYLE           9
#define HTML_OL_TYPE           10
#define HTML_OL_ATTRIBUTES     11

#define HTML_OPTION_CLASS       0
#define HTML_OPTION_CLEAR       1
#define HTML_OPTION_DIR         2
#define HTML_OPTION_DISABLED    3
#define HTML_OPTION_ERROR       4
#define HTML_OPTION_ID          5
#define HTML_OPTION_LANG        6
#define HTML_OPTION_SELECTED    7
#define HTML_OPTION_SHAPE       8
#define HTML_OPTION_STYLE       9
#define HTML_OPTION_VALUE      10
#define HTML_OPTION_ATTRIBUTES 11

#define HTML_OVERLAY_CLASS      0
#define HTML_OVERLAY_HEIGHT     1
#define HTML_OVERLAY_ID         2
#define HTML_OVERLAY_IMAGEMAP   3
#define HTML_OVERLAY_MD         4
#define HTML_OVERLAY_SRC        5
#define HTML_OVERLAY_STYLE      6
#define HTML_OVERLAY_UNITS      7
#define HTML_OVERLAY_WIDTH      8
#define HTML_OVERLAY_X          9
#define HTML_OVERLAY_Y         10
#define HTML_OVERLAY_ATTRIBUTES 11

#define HTML_P_ALIGN            0
#define HTML_P_CLASS            1
#define HTML_P_CLEAR            2
#define HTML_P_DIR              3
#define HTML_P_ID               4
#define HTML_P_LANG             5
#define HTML_P_STYLE            6
#define HTML_P_NOWRAP           7
#define HTML_P_ATTRIBUTES       8

#define HTML_PARAM_ACCEPT       0
#define HTML_PARAM_ACCEPT_CHARSET  1
#define HTML_PARAM_ACCEPT_ENCODING 2
#define HTML_PARAM_CLASS        3
#define HTML_PARAM_CLEAR        4
#define HTML_PARAM_DATA         5
#define HTML_PARAM_DIR          6
#define HTML_PARAM_ID           7
#define HTML_PARAM_LANG         8
#define HTML_PARAM_NAME         9
#define HTML_PARAM_OBJECT      10
#define HTML_PARAM_REF         11
#define HTML_PARAM_STYLE       12
#define HTML_PARAM_TYPE        13
#define HTML_PARAM_VALUE       14
#define HTML_PARAM_VALUEREF    15  /* Use VALUETYPE (DATA|REF|OBJECT). - FM */
#define HTML_PARAM_VALUETYPE   16
#define HTML_PARAM_ATTRIBUTES  17

#define HTML_SCRIPT_CLASS       0
#define HTML_SCRIPT_CLEAR       1
#define HTML_SCRIPT_DIR         2
#define HTML_SCRIPT_EVENT       3
#define HTML_SCRIPT_FOR         4
#define HTML_SCRIPT_ID          5
#define HTML_SCRIPT_LANG        6
#define HTML_SCRIPT_LANGUAGE    7
#define HTML_SCRIPT_NAME        8
#define HTML_SCRIPT_SCRIPTENGINE 9
#define HTML_SCRIPT_SRC        10
#define HTML_SCRIPT_STYLE      11
#define HTML_SCRIPT_TYPE       12
#define HTML_SCRIPT_ATTRIBUTES 13

#define HTML_SELECT_ALIGN       0
#define HTML_SELECT_CLASS       1
#define HTML_SELECT_CLEAR       2
#define HTML_SELECT_DIR         3
#define HTML_SELECT_DISABLED    4
#define HTML_SELECT_ERROR       5
#define HTML_SELECT_HEIGHT      6
#define HTML_SELECT_ID          7
#define HTML_SELECT_LANG        8
#define HTML_SELECT_MD          9
#define HTML_SELECT_MULTIPLE   10
#define HTML_SELECT_NAME       11
#define HTML_SELECT_NOTAB      12
#define HTML_SELECT_ONBLUR     13
#define HTML_SELECT_ONCHANGE   14
#define HTML_SELECT_ONFOCUS    15
#define HTML_SELECT_SIZE       16
#define HTML_SELECT_STYLE      17
#define HTML_SELECT_TABINDEX   18
#define HTML_SELECT_TITLE      19
#define HTML_SELECT_UNITS      20
#define HTML_SELECT_WIDTH      21
#define HTML_SELECT_ATTRIBUTES 22

#define HTML_STYLE_DIR          0
#define HTML_STYLE_LANG         1
#define HTML_STYLE_NOTATION     2
#define HTML_STYLE_TITLE        3
#define HTML_STYLE_ATTRIBUTES   4

#define HTML_TAB_ALIGN          0
#define HTML_TAB_CLASS          1
#define HTML_TAB_CLEAR          2
#define HTML_TAB_DIR            3
#define HTML_TAB_DP             4
#define HTML_TAB_ID             5
#define HTML_TAB_INDENT         6
#define HTML_TAB_LANG           7
#define HTML_TAB_STYLE          8
#define HTML_TAB_TO             9
#define HTML_TAB_ATTRIBUTES    10

#define HTML_TABLE_ALIGN        0
#define HTML_TABLE_BORDER       1
#define HTML_TABLE_CELLPADDING  2
#define HTML_TABLE_CELLSPACING  3
#define HTML_TABLE_CLASS        4
#define HTML_TABLE_CLEAR        5
#define HTML_TABLE_COLS         6
#define HTML_TABLE_COLSPEC      7
#define HTML_TABLE_DIR          8
#define HTML_TABLE_DP           9
#define HTML_TABLE_FRAME       10
#define HTML_TABLE_ID          11
#define HTML_TABLE_LANG        12
#define HTML_TABLE_NOFLOW      13
#define HTML_TABLE_NOWRAP      14
#define HTML_TABLE_RULES       15
#define HTML_TABLE_STYLE       16
#define HTML_TABLE_UNITS       17
#define HTML_TABLE_WIDTH       18
#define HTML_TABLE_ATTRIBUTES  19

#define HTML_TD_ALIGN           0
#define HTML_TD_AXES            1
#define HTML_TD_AXIS            2
#define HTML_TD_CHAR            3
#define HTML_TD_CHAROFF         4
#define HTML_TD_CLASS           5
#define HTML_TD_CLEAR           6
#define HTML_TD_COLSPAN         7
#define HTML_TD_DIR             8
#define HTML_TD_DP              9
#define HTML_TD_ID             10
#define HTML_TD_LANG           11
#define HTML_TD_NOWRAP         12
#define HTML_TD_ROWSPAN        13
#define HTML_TD_STYLE          14
#define HTML_TD_VALIGN         15
#define HTML_TD_ATTRIBUTES     16

#define HTML_TEXTAREA_ALIGN     0
#define HTML_TEXTAREA_CLASS     1
#define HTML_TEXTAREA_CLEAR     2
#define HTML_TEXTAREA_COLS      3
#define HTML_TEXTAREA_DIR       4
#define HTML_TEXTAREA_DISABLED  5
#define HTML_TEXTAREA_ERROR     6
#define HTML_TEXTAREA_ID        7
#define HTML_TEXTAREA_LANG      8
#define HTML_TEXTAREA_NAME      9
#define HTML_TEXTAREA_NOTAB    10
#define HTML_TEXTAREA_ONBLUR   11
#define HTML_TEXTAREA_ONCHANGE 12
#define HTML_TEXTAREA_ONFOCUS  13
#define HTML_TEXTAREA_ONSELECT 14
#define HTML_TEXTAREA_ROWS     15
#define HTML_TEXTAREA_STYLE    16
#define HTML_TEXTAREA_TABINDEX 17
#define HTML_TEXTAREA_TITLE    18
#define HTML_TEXTAREA_ATTRIBUTES 19

#define HTML_TR_ALIGN           0
#define HTML_TR_CHAR            1
#define HTML_TR_CHAROFF         2
#define HTML_TR_CLASS           3
#define HTML_TR_CLEAR           4
#define HTML_TR_DIR             5
#define HTML_TR_DP              6
#define HTML_TR_ID              7
#define HTML_TR_LANG            8
#define HTML_TR_NOWRAP          9
#define HTML_TR_STYLE          10
#define HTML_TR_VALIGN         11
#define HTML_TR_ATTRIBUTES     12

#define HTML_UL_CLASS           0
#define HTML_UL_CLEAR           1
#define HTML_UL_COMPACT         2
#define HTML_UL_DINGBAT         3
#define HTML_UL_DIR             4
#define HTML_UL_ID              5
#define HTML_UL_LANG            6
#define HTML_UL_MD              7
#define HTML_UL_PLAIN           8
#define HTML_UL_SRC             9
#define HTML_UL_STYLE          10
#define HTML_UL_TYPE           11
#define HTML_UL_WRAP           12
#define HTML_UL_ATTRIBUTES     13

extern CONST SGML_dtd HTML_dtd;

/*

Start anchor element

   It is kinda convenient to have a particular routine for starting an anchor
   element, as everything else for HTML is simple anyway.
   
  ON ENTRY
  
   targetstream points to a structured stream object.
   
   name and href point to attribute strings or are NULL if the attribute is
   to be omitted.
   
 */
extern void HTStartAnchor PARAMS((
                HTStructured * targetstream,
                CONST char *    name,
                CONST char *    href));

/*

Start IsIndex element - FM

   It is kinda convenient to have a particular routine for starting an IsIndex
   element with the prompt and/or href (action) attributes specified.
   
  ON ENTRY
  
   targetstream points to a structured stream object.
   
   prompt and href point to attribute strings or are NULL if the attribute is
   to be omitted.
   
 */
extern void HTStartIsIndex PARAMS((
                HTStructured * targetstream,
                CONST char *    prompt,
                CONST char *    href));


#endif /* HTMLDTD_H */

/*

   End of module definition  */