Annotation of Amaya/amaya/HTML.S, revision 1.197

1.139     quint       1:                { I. Vatton      November 1994-2002  }
1.68      cvs         2: 
1.1       cvs         3: STRUCTURE HTML;
                      4: 
                      5: DEFPRES HTMLP;
1.44      cvs         6: 
1.1       cvs         7: ATTR
1.59      cvs         8:                        { coreattrs }
1.63      cvs         9:    ID = Text;                  { id }
                     10:    Class = Text;               { class }
                     11:    PseudoClass = Text;
                     12:    Style\240 = Text;           { style }
                     13:    Title = Text;               { title }
1.59      cvs        14:                        { i18n }
1.137     quint      15:    dir = ltr_, rtl_;           { dir }
1.59      cvs        16:                        { events }
1.63      cvs        17:    onclick = Text;             { onclick }
                     18:    ondblclick = Text;          { ondblclick }
                     19:    onmousedown = Text;         { onmousedown }
                     20:    onmouseup = Text;           { onmouseup }
                     21:    onmouseover = Text;         { onmouseover }
                     22:    onmousemove = Text;         { onmousemove }
                     23:    onmouseout = Text;          { onmouseout }
                     24:    onkeypress = Text;          { onkeypress }
                     25:    onkeydown = Text;           { onkeydown }
                     26:    onkeyup = Text;             { onkeyup }
1.59      cvs        27: 
1.63      cvs        28:    Invalid_attribute = Text;
1.127     cvs        29:    Unknown_attribute = Text;
1.63      cvs        30:    Ghost_restruct = Text;
1.114     cvs        31:    Highlight = Yes_;    { to show the HTML element corresponding to the
                     32:                          current selection in the source view }
1.100     cvs        33:    IntEntity = Yes_;   { do not translate & into & in output file }
                     34:    EntityName = Text;   { the content of the element is the name of an entity }
1.110     cvs        35:    xml_space = xml_space_default, xml_space_preserve; { xml:space }
1.167     gully      36:    NoImages = Yes_;
                     37:    NoObjects = Yes_;
1.1       cvs        38: 
                     39: CONST
1.59      cvs        40: 
1.1       cvs        41:    C_Empty = ' ';
                     42:    C_Foot = ' ';
                     43:    C_Head = ' ';
1.64      cvs        44:    C_BR   = '\12';
1.1       cvs        45: 
                     46: STRUCT
1.59      cvs        47: 
1.63      cvs        48:   HTML                                                         { HTML }
1.191     vatton     49:      (ATTR ShowAreas = Yes_;
1.143     cvs        50:           PrintURL = Yes_; PI = Text;
1.101     cvs        51:           Namespaces = Text; RealLang = Yes_; Charset = Text) =
1.17      cvs        52:        BEGIN
1.1       cvs        53:        HEAD;
1.109     cvs        54:       ? BODY;  { only one of BODY, document type }
1.72      cvs        55:       ? FRAMESET;
1.164     cvs        56:        END + (Invalid_element, Unknown_namespace, XHTML_Unknown_namespace, Comment\240, XMLPI, CDATA);
1.136     cvs        57:        
1.189     quint      58:   DOCTYPE = LIST OF (DOCTYPE_line = TEXT);
                     59:        
1.163     vatton     60:   Invalid_element = TEXT;
1.113     cvs        61: 
1.127     cvs        62:   Unknown_namespace = TEXT;
                     63: 
1.164     cvs        64:   XHTML_Unknown_namespace = TEXT;
                     65: 
1.186     vatton     66:   Comment\240 = LIST OF (Comment_line = TEXT) - (Comment\240);
1.1       cvs        67: 
1.161     cvs        68:   XMLPI (ATTR is_css = Text) = LIST OF (PI_line = TEXT);
1.140     cvs        69:        
                     70:   CDATA = LIST OF (CDATA_line = TEXT);
1.136     cvs        71: 
1.63      cvs        72:   HEAD                                                         { HEAD }
                     73:      (ATTR profile = Text) =
                     74:        AGGREGATE
1.180     quint      75:        Document_URL = TEXT - (STYLE_, SCRIPT_, META, LINK);
                     76:        TITLE = TEXT - (STYLE_, SCRIPT_, META, LINK);           { TITLE }
1.63      cvs        77:       ? ISINDEX (ATTR Prompt = Text) = CONSTANT C_Empty;       { ISINDEX }
                     78:                    { prompt }
                     79:       ? BASE;                                                  { BASE }
1.180     quint      80:        END + (Object, STYLE_, SCRIPT_, META, LINK);
1.63      cvs        81: 
1.64      cvs        82:   STYLE_                                                       { STYLE }
1.197   ! quint      83:      (ATTR !Notation = Text; media = Text) =
        !            84:         {  type             media }
1.185     vatton     85:         TEXT - (STYLE_, SCRIPT_, META, LINK);
1.64      cvs        86: 
1.138     vatton     87:   SCRIPT_                                                      { SCRIPT }
1.197   ! quint      88:      (ATTR charset = Text; !content_type = Text;
1.63      cvs        89:         { charset          type }
1.160     cvs        90:           script_language = Text; script_src = Text;
                     91:         { language                src }
1.63      cvs        92:           defer = Yes_; event = Text; for_ = Text) =
                     93:         { defer         event         for }
1.185     vatton     94:        TEXT - (STYLE_, SCRIPT_, META, LINK) with content_type ?= 'text/javascript';
1.59      cvs        95: 
                     96:   META                                                         { META }
1.63      cvs        97:      (ATTR http_equiv = Text;
                     98:         { http-equiv }
1.197   ! quint      99:           meta_name = Text; !meta_content = Text;
        !           100:          { name               content }
1.63      cvs       101:           scheme = Text) =
                    102:         { scheme }
                    103:        CONSTANT C_Empty;
1.1       cvs       104: 
1.63      cvs       105:   LINK                                                         { LINK }
                    106:      (ATTR charset; HREF_ = Text; hreflang = Text;
                    107:         { charset  href          hreflang }
                    108:           Link_type = Text; REL = Text; REV = Text;
                    109:         { type              rel         rev }
                    110:           media; target_ = Text) =
                    111:         { media  target }
                    112:        CONSTANT C_Empty;
                    113: 
                    114:   BASE                                                         { BASE }
                    115:      (ATTR !HREF_; target_) =
                    116:          { href   target }
                    117:        CONSTANT C_Empty;
1.1       cvs       118: 
1.189     quint     119:   BODY                                                         { BODY }
                    120:      (ATTR onload = Text; onunload = Text;
                    121:         { onload         onunload }
                    122:           background_ = Text; BackgroundColor = Text;
                    123:         { background          bgcolor }
                    124:           TextColor = Text; LinkColor = Text;
                    125:          { text              link }
                    126:           VisitedLinkColor = Text; ActiveLinkColor = Text) =
                    127:          { vlink                    alink }
                    128:        LIST OF (Element) + (INS, DEL);
                    129: 
1.59      cvs       130:   Element = CASE OF                                            { block }
                    131:        Paragraph;                                              { P }
1.20      cvs       132:        Pseudo_paragraph;
1.59      cvs       133:        Heading;                                                { heading }
                    134:        List_;                                                  { list + DL }
                    135:        Preformatted;                                           { PRE preformatted }
                    136:        Division;                                               { DIV }
                    137:        Center;                                                 { CENTER }
1.184     vatton    138:        SCRIPT_;                                                { SCRIPT }
                    139:        NOSCRIPT = LIST OF (Element) - (SCRIPT_);               { NOSCRIPT }
1.63      cvs       140:        Block_Quote;                                            { BLOCKQUOTE }
1.59      cvs       141:        Form;                                                   { FORM }
                    142:        ISINDEX;                                                { ISINDEX }
1.63      cvs       143:        Horizontal_Rule;                                        { HR }
1.193     quint     144:        Table_;                                                 { TABLE }
1.166     quint     145:        FIELDSET;                                               { FIELDSET }
1.179     quint     146:        Address;                                                { ADDRESS }
1.59      cvs       147:        PICTURE                                                 { IMG }
1.63      cvs       148:            (ATTR SRC = Text; ALT = Text; longdesc = Text;
                    149:                { src         alt         longdesc }
1.129     vatton    150:                  Height_ = Text; Width__ = Text;
1.162     quint     151:                { height          width }
1.63      cvs       152:                  IntWidthPercent = Integer; IntWidthPxl = Integer;
1.129     vatton    153:                  IntHeightPercent = Integer; IntHeightPxl = Integer;
1.94      cvs       154:                  USEMAP = Text; ISMAP = Yes_;
1.63      cvs       155:                { usemap         ismap }
1.94      cvs       156:                 IsInput = Yes_;    NAME = Text;
                    157:                { input type=IMAGE  name }
1.63      cvs       158:                  Alignment = Top_, Middle_, Bottom_, Left_, Right_;
                    159:                { align       top   middle   bottom   left   right }
                    160:                  Img_border = Integer;
                    161:                { border }
                    162:                  hspace = Integer; vspace = Integer);
                    163:                { hspace            vspace }
1.59      cvs       164:        Object;                                                 { OBJECT }
1.60      cvs       165:        Applet;                                                 { APPLET }
1.108     cvs       166:        MathML;                                                 { MATH }
1.126     vatton    167:         SVG;                                                   { SVG }
1.125     vatton    168:        map; MAP;                                               { MAP }
1.111     kahan     169:        XLink;                                                  { Annotations }
1.183     quint     170:        External_Object                                         { IMG type=svg}
1.123     cvs       171:            (ATTR SRC; ALT; longdesc;
                    172:                { src  alt  longdesc }
                    173:                  Height_; Width__;
                    174:                { height   width }
                    175:                  IntWidthPercent; IntWidthPxl;
1.129     vatton    176:                  IntHeightPercent; IntHeightPxl;
1.123     cvs       177:                  USEMAP; ISMAP;
                    178:                { usemap  ismap }
                    179:                 IsInput;    NAME;
                    180:                { input type=IMAGE  name }
                    181:                  Alignment;
                    182:                { align   top   middle   bottom   left   right }
                    183:                  Img_border;
                    184:                { border }
                    185:                  hspace; vspace) =
                    186:                { hspace  vspace }
1.183     quint     187:                 BEGIN
1.181     cvs       188:                 External_Object_Content;
1.183     quint     189:                 END;
1.141     quint     190:        Embed_                                          { EMBED }
1.128     cvs       191:            (ATTR SRC;
                    192:                  Alignment;
                    193:                { align   top   bottom   left   right }
                    194:                  Height_; Width__;
                    195:                { height   width }
                    196:                  EmbedHidden = Yes_, No_;
1.154     quint     197:                { hidden        yes   no }
1.148     cvs       198:                  EmbedName = Text;
1.154     quint     199:                { name }
1.148     cvs       200:                  hspace; vspace;
1.128     cvs       201:                { hspace  vspace }
1.148     cvs       202:                  Embed_type = Text;
1.154     quint     203:                { type }
1.175     quint     204:                  pluginspage = Text;
                    205:                  pluginurl = Text; 
1.148     cvs       206:                ) =     
1.145     quint     207:                BEGIN
                    208:                Embed_Content;
                    209:                END;
1.1       cvs       210:        END;
                    211: 
1.52      cvs       212:        HTMLfragment = LIST OF (Element);
1.181     cvs       213:        External_Object_Content = NATURE;
1.145     quint     214:        Embed_Content = NATURE;
1.52      cvs       215: 
1.63      cvs       216:   Block_Quote                                                  { BLOCKQUOTE }
                    217:      (ATTR cite = Text;
                    218:         { cite }
                    219:           InternalLink = Reference(Any); ExternalLink = Yes_) =
                    220:        LIST OF (Element);
                    221: 
                    222:   Horizontal_Rule                                              { HR }
                    223:      (ATTR Align = left_, center_, right_;
                    224:         { align   left   center   right }
                    225:           NoShade = NoShade_; Size_ = Integer; Width__;
                    226:         { noshade             size             width }
                    227:           IntWidthPercent; IntWidthPxl) =
                    228:        CONSTANT C_Empty;
                    229: 
1.67      cvs       230:   Basic_Set = LIST OF (Basic_Elem);
                    231: 
1.179     quint     232:   { Paragraph must be the first element defined as a Basic_Set, to make
                    233:     sure that the editor will create a Paragraph when the user wants to
                    234:     create a Basic_Elem }
1.59      cvs       235:   Paragraph                                                    { P }
1.63      cvs       236:      (ATTR TextAlign = left_, center_, right_, justify_) =
                    237:         { align       left   center   right   justify }
                    238:        Basic_Set;
                    239: 
1.179     quint     240:   Address = Basic_Set;
                    241: 
1.59      cvs       242:   Pseudo_paragraph = Basic_Set;
                    243: 
                    244:   Heading = CASE OF                                            { heading }
                    245:        H1 (ATTR TextAlign) = Basic_Set;                        { H1 }
                    246:               { align }
                    247:        H2 (ATTR TextAlign) = Basic_Set;                        { H2 }
                    248:        H3 (ATTR TextAlign) = Basic_Set;                        { H3 }
                    249:        H4 (ATTR TextAlign) = Basic_Set;                        { H4 }
                    250:        H5 (ATTR TextAlign) = Basic_Set;                        { H5 }
                    251:        H6 (ATTR TextAlign) = Basic_Set;                        { H6 }
1.1       cvs       252:        END;
                    253: 
1.63      cvs       254:   Preformatted                                                 { PRE }
                    255:      (ATTR Width__; IntWidthPercent; IntWidthPxl) =
                    256:         { width }
                    257:        Basic_Set
1.59      cvs       258:             - (PICTURE, Object, Applet,
                    259:                Big_text, Small_text, Subscript, Superscript,
1.181     cvs       260:                Font_, BaseFont, External_Object);
1.59      cvs       261: 
1.63      cvs       262:   Anchor                                                       { A }
1.94      cvs       263:      (ATTR charset; Link_type; NAME;
1.63      cvs       264:         { charset  type       name }
                    265:           HREF_; hreflang; target_;
                    266:         { href   hreflang  target}
                    267:           REL; REV; accesskey = Text;
                    268:         { rel  rev  accesskey }
                    269:           shape = rectangle, circle, polygon, default_;
                    270:         { shape   rect       cirecle poly     default }
                    271:           coords = Text; tabindex = Integer;
                    272:         { coords         tabindex }
                    273:           onfocus = Text; onblur = Text;
1.76      cvs       274:         { onfocus         onblur }
1.89      cvs       275:           InternalLink; ExternalLink;
1.112     kahan     276:         { InternalLink  ExternalLink }) =
1.63      cvs       277:        Basic_Set;
1.1       cvs       278: 
1.63      cvs       279:   Basic_Elem = CASE OF                                         { special }
1.1       cvs       280:         TEXT;
1.63      cvs       281:        Font;                                                   { fontstyle }
                    282:        Phrase;                                                 { phrase }
1.166     quint     283:        Form_Element;                                           { formctrl }
1.61      cvs       284:        Anchor;                                                 { A }
                    285:        PICTURE;                                                { IMG }
                    286:        Applet;                                                 { APPLET }
                    287:        Font_;                                                  { FONT }
                    288:        BaseFont;                                               { BASEFONT }
1.63      cvs       289:        BR;                                                     { BR }
1.138     vatton    290:        SCRIPT_;                                                { SCRIPT }
1.63      cvs       291:        Quotation;                                              { Q }
1.61      cvs       292:        Subscript = Basic_Set;                                  { SUB }
                    293:        Superscript = Basic_Set;                                { SUP }
                    294:        Span = Basic_Set;                                       { SPAN }
1.196     quint     295:        BDO (ATTR !dir) = Basic_Set;                            { BDO }
1.77      cvs       296:        Object;                                                 { OBJECT }
1.141     quint     297:        Embed_;                                                 { EMBED }
1.61      cvs       298:        IFRAME;                                                 { IFRAME }
1.121     cvs       299:        ruby;                                                   { ruby }
1.108     cvs       300:        MathML;                                                 { MATH }
1.111     kahan     301:        XLink;                                                  { Annotations }
1.181     cvs       302:        External_Object;                                        { External Object }
1.59      cvs       303:        END;
                    304: 
1.60      cvs       305:   BaseFont                                                     { BASEFONT }
1.197   ! quint     306:      (ATTR !BaseFontSize = Integer; BaseFontColor = Text;
        !           307:         {  size                    color }
1.63      cvs       308:           BaseFontFace = Text) =
                    309:          { face }
                    310:        CONSTANT C_Empty;
                    311: 
                    312:   BR                                                           { BR }
1.159     quint     313:      (ATTR Clear_ = Left_, Right_, All_, None_) =
                    314:         { clear    left   right   all   none }
1.63      cvs       315:        CONSTANT C_BR;
                    316: 
                    317:   Quotation                                                    { Q }
                    318:      (ATTR cite; InternalLink; ExternalLink) =
                    319:         { cite }
                    320:        Basic_Set;
1.59      cvs       321: 
1.60      cvs       322:   Font = CASE OF               { fontstyle }
                    323:        Teletype_text = Basic_Set;      { TT }
1.59      cvs       324:        Italic_text = Basic_Set;        { I }
                    325:        Bold_text = Basic_Set;          { B }
                    326:        Underlined_text = Basic_Set;    { U }
1.60      cvs       327:        Struck_text = Basic_Set;        { S or STRIKE }
1.59      cvs       328:        Big_text = Basic_Set;           { BIG }
                    329:        Small_text = Basic_Set;         { SMALL }
                    330:        END;
                    331: 
1.60      cvs       332:   Phrase = CASE OF             { phrase }
1.59      cvs       333:        Emphasis = Basic_Set;           { EM }
                    334:        Strong = Basic_Set;             { STRONG }
                    335:        Def = Basic_Set;                { DFN }
                    336:        Code = Basic_Set;               { CODE }
                    337:        Sample = Basic_Set;             { SAMP }
                    338:        Keyboard = Basic_Set;           { KBD }
1.152     quint     339:        Variable_ = Basic_Set;          { VAR }
1.59      cvs       340:        Cite = Basic_Set;               { CITE }
1.60      cvs       341:        ABBR = Basic_Set;               { ABBR }
                    342:         ACRONYM = Basic_Set;           { ACRONYM }
1.59      cvs       343:        END;
                    344: 
1.63      cvs       345:   Font_                                                                { FONT }
                    346:      (ATTR Font_size = Text; color = Text; face = Text;
                    347:         { size              color            face }
                    348:           IntSizeIncr = Integer; IntSizeDecr = Integer;
                    349:           IntSizeRel = Integer) =
                    350:        Basic_Set;
                    351: 
                    352:   Applet                                                       { APPLET }
                    353:      (ATTR codebase = Text; archive = Text; code = Text;
                    354:         { codebase         archive         code }
                    355:           object = Text; alt = Text; applet_name = Text;
                    356:         { object         alt         name }
1.197   ! quint     357:           !Width__; IntWidthPercent; IntWidthPxl;
        !           358:         {  width }
        !           359:            !Height_; IntHeightPercent; IntHeightPxl;
        !           360:         {  height }
1.63      cvs       361:           Alignment; hspace; vspace) =
                    362:         { align      hspace  vspace }
1.1       cvs       363:        LIST OF (Applet_Content = CASE OF
1.59      cvs       364:                                  Parameter;                    { PARAM }
1.1       cvs       365:                                  Basic_Set;
                    366:                                  END);
1.63      cvs       367:   Parameter                                                    { PARAM }
1.197   ! quint     368:      (ATTR !Param_name = Text; Param_value = Text;
1.63      cvs       369:         { name               value }
                    370:           valuetype = data_, ref, object_;
                    371:         { valuetype   data   ref  object }
                    372:           Param_type = Text) =
                    373:         { type }
1.59      cvs       374:        CONSTANT C_Empty;
                    375: 
                    376:   Object                                                       { OBJECT }
1.145     quint     377:      (ATTR declare = declare_; classid = Text; codebase;
                    378:         { declare            classid         codebase }
1.63      cvs       379:           data = Text; Object_type = Text;
                    380:         { data         type }
                    381:           codetype = Text; archive; standby = Text;
                    382:          { codetype         archive  standby }
1.157     quint     383:           Height_; Width__;
1.129     vatton    384:           IntWidthPercent; IntWidthPxl; 
                    385:            IntHeightPercent; IntHeightPxl;
1.63      cvs       386:         {  height    width }
                    387:           USEMAP; NAME; tabindex; Alignment; Img_border;
                    388:         { usemap  name  tabindex  align      border }
                    389:           hspace; vspace) =
                    390:          { hspace  vspace }
1.10      cvs       391:        BEGIN
1.13      cvs       392:        PICTURE;
1.145     quint     393:        Object_Content = LIST OF (ElemOrParam = CASE OF
                    394:                                    Element; Parameter; END);   { PARAM }
1.157     quint     395:        END;
1.61      cvs       396: 
1.63      cvs       397:   INS                                                          { INS }
1.72      cvs       398:      (ATTR cite; datetime = Text; InternalLink; ExternalLink) =
1.63      cvs       399:         { cite  datetime }
                    400:        Basic_Set;
                    401: 
                    402:   DEL                                                          { DEL }
1.72      cvs       403:      (ATTR cite; datetime; InternalLink; ExternalLink) =
1.63      cvs       404:         { cite  datetime }
                    405:        Basic_Set;
1.1       cvs       406: 
1.59      cvs       407:   Block = CASE OF                                              { block }
                    408:        Paragraph;                                              { P }
1.20      cvs       409:        Pseudo_paragraph;
1.59      cvs       410:        Heading;                                                { heading }
                    411:        List_;                                                  { list + DL }
                    412:        Block_Quote;                                            { BLOCKQUOTE }
                    413:        Preformatted;                                           { PRE }
                    414:        Division;                                               { DIV }
1.63      cvs       415:        Center;                                                 { CENTER }
1.1       cvs       416:        Form;
1.73      cvs       417:        Horizontal_Rule;                                        { HR }
1.193     quint     418:        Table_;                                                 { TABLE }
1.73      cvs       419:        Address;                                                { ADDRESS }
1.1       cvs       420:        END;
                    421: 
1.63      cvs       422:   Division                                                     { DIV }
                    423:      (ATTR TextAlign) =
                    424:         { align }
                    425:        LIST OF (Element);
                    426: 
                    427:   Center =                                                     { CENTER }
                    428:        LIST OF (Element);
1.1       cvs       429: 
1.59      cvs       430:   List_ = CASE OF                                              { list }
1.63      cvs       431:        Unnumbered_List;                                        { UL }
                    432:        Numbered_List;                                          { OL }
                    433:        Directory;                                              { DIR }
                    434:        Menu;                                                   { MENU }
                    435:        Definition_List;                                        { DL }
                    436:        END;
                    437: 
                    438:   Unnumbered_List                                              { UL }
1.193     quint     439:      (ATTR BulletStyle = disc_, circle_, square_;
                    440:         { type          disc   circle   square }
1.63      cvs       441:           COMPACT = Yes_) =
                    442:         { compact }
                    443:        LIST OF (List_Item);
                    444: 
                    445:   Numbered_List                                                        { OL }
                    446:      (ATTR NumberStyle = Arabic_, LowerAlpha, UpperAlpha,
                    447:         { type          1        a           A }
1.193     quint     448:           LowerRoman_, UpperRoman_;
                    449:         { i            I }
1.63      cvs       450:           Start = Integer; COMPACT) =
                    451:         { start            compact }
1.193     quint     452:        LIST OF (List_Item);
1.63      cvs       453: 
                    454:   Directory                                                    { DIR }
                    455:      (ATTR COMPACT) =
                    456:         { compact }
                    457:        LIST OF (List_Item);
                    458: 
                    459:   Menu                                                         { MENU }
                    460:      (ATTR COMPACT) =
                    461:         { compact }
                    462:        LIST OF (List_Item);
                    463: 
                    464:   List_Item                                                    { LI }
1.193     quint     465:      (ATTR ItemStyle = disc_, circle_, square_, Arabic_,
                    466:         { type        disc   circle   square   1 }
                    467:           LowerAlpha, UpperAlpha, LowerRoman_, UpperRoman_;
                    468:         { a           A           i            I }
1.63      cvs       469:           ItemValue = Integer) =
                    470:         { value }
1.1       cvs       471:        LIST OF (Block);
                    472: 
1.189     quint     473:   Definition_List                                              { DL }
                    474:      (ATTR COMPACT) =
                    475:         { compact }
                    476:        LIST OF (Definition_Item);
                    477: 
1.59      cvs       478:   Definition_Item = BEGIN
                    479:        Term_List = LIST OF (Term = Basic_Set);                 { DT }
1.132     cvs       480:       ? Definitions = LIST OF (Definition = LIST OF (Block));  { DD }
1.1       cvs       481:        END;
                    482: 
1.63      cvs       483:   Form                                                         { FORM }
                    484:      (ATTR !Script_URL = Text; METHOD = Get_, Post_;
                    485:         {  action             method }
                    486:           ENCTYPE = Text; onsubmit = Text; onreset = Text;
                    487:         { enctype         onsubmit         onreset }
                    488:           target_; accept_charset = Text) =
                    489:         { target   accept-charset }
1.166     quint     490:        LIST OF (Element) + (Input) - (Form);
1.1       cvs       491: 
                    492:   Form_Element = CASE OF
1.166     quint     493:        Input;                                                  { INPUT }
1.59      cvs       494:        Option_Menu;                                            { SELECT }
1.63      cvs       495:        Text_Area;                                              { TEXTAREA }
1.166     quint     496:        LABEL;                                                  { LABEL }
                    497:        BUTTON_;                                                { BUTTON }
1.1       cvs       498:        END;
                    499: 
1.63      cvs       500:   Option_Menu                                                  { SELECT }
                    501:      (ATTR !NAME; MenuSize = Integer; Multiple = Yes_;
                    502:         {  name  size                multiple }
                    503:            disabled = Yes_; tabindex; onfocus; onblur;
                    504:          { disabled         tabindex  onfocus  onblur}
                    505:            onchange = Text) =
                    506:          { onchange }
1.91      cvs       507:        LIST OF (Option_item = CASE OF Option; OptGroup; END) - (Input);
1.63      cvs       508: 
                    509:   Option                                                       { OPTION }
1.182     quint     510:      (ATTR Selected = Yes_; DefaultSelected = Yes_; ShowMe = Yes_;
1.63      cvs       511:         { selected }
                    512:           disabled; label = Text; !Value_ = Text) =
                    513:          { disabled  label          value }
1.1       cvs       514:        TEXT;
1.76      cvs       515: 
                    516:   OptGroup                                                     { OPTGROUP }
1.78      cvs       517:      (ATTR disabled; !label) =
                    518:         { disabled   label }
1.76      cvs       519:        LIST OF (Option);
1.1       cvs       520: 
1.63      cvs       521:   Text_Area                                                    { TEXTAREA }
1.197   ! quint     522:      (ATTR NAME; !Rows = Integer; !Columns = Integer;
        !           523:         { name   rows             cols }
1.63      cvs       524:           disabled; readonly = Yes_; tabindex; accesskey;
                    525:         { disabled  readonly         tabindex  accesskey  }
                    526:           onfocus; onblur; onselect = Text; onchange;
                    527:         { onfocus  onblur  onselect         onchange }
                    528:           Default_Value = Text) =
1.177     quint     529:        Input_Text - (Input) with Rows ?= 4, Columns ?= 20;
1.63      cvs       530: 
1.79      cvs       531:   FIELDSET =                                                   { FIELDSET }
                    532:        BEGIN
                    533:        LEGEND;
                    534:        Basic_Set;
                    535:        END;
                    536: 
                    537:   LEGEND                                                       { LEGEND }
                    538:      (ATTR accesskey; LAlign = Top_, Bottom_, Left_, Right_) =
                    539:         { accesskey  align    top   bottom   left   right }
                    540:        Basic_Set;
                    541: 
1.62      cvs       542:   Input = CASE OF                                      { formctrl }
1.63      cvs       543:        Text_Input                                      { INPUT / TEXT }
                    544:           (ATTR !NAME; Value_; disabled; readonly;
                    545:                { name  value   disabled  readonly }
                    546:                  Area_Size = Integer; MaxLength = Integer;
                    547:                { size                 maxlength }
1.162     quint     548:                  IntAreaSize = Integer;
1.63      cvs       549:                  tabindex; accesskey;
                    550:                { tabindex  accesskey }
1.66      cvs       551:                  onfocus; onblur; onselect; onchange;
1.63      cvs       552:                { onfocus  onblur  onselect  onchange }
1.66      cvs       553:                  Default_Value) =
1.177     quint     554:                Input_Text - (Input);
1.63      cvs       555:        Password_Input                                  { INPUT / PASSWORD }
1.66      cvs       556:           (ATTR !NAME; Value_; disabled; readonly;
                    557:                { name  value   disabled  readonly }
1.162     quint     558:                  Area_Size; IntAreaSize; MaxLength;
                    559:                { size                    maxlength }
1.66      cvs       560:                  tabindex; accesskey;
                    561:                { tabindex  accesskey }
                    562:                  onfocus; onblur; onselect; onchange;
                    563:                { onfocus  onblur  onselect  onchange }
                    564:                  Default_Value) =
1.177     quint     565:                Input_Text  - (Input);
1.68      cvs       566:        File_Input                                      { INPUT / FILE }
                    567:           (ATTR !NAME; Value_; disabled; readonly;
                    568:                { name  value   disabled  readonly }
1.162     quint     569:                  Area_Size; IntAreaSize; MaxLength;
                    570:                { size                    maxlength }
1.68      cvs       571:                  tabindex; accesskey;
                    572:                { tabindex  accesskey }
                    573:                  onfocus; onblur; accept = Text;
                    574:                { onfocus  onblur }
                    575:                  Default_Value) =
1.177     quint     576:                Input_Text - (Input);
1.59      cvs       577:        Checkbox_Input                                  { INPUT / CHECKBOX }
1.63      cvs       578:           (ATTR !NAME; Value_; Checked = Yes_, No_;
1.66      cvs       579:                { name  value   checked }
1.63      cvs       580:                  disabled; readonly;
                    581:                { disabled  readonly }
                    582:                  tabindex; accesskey; onfocus; onblur;
                    583:                { tabindex  accesskey  onfocus  onblur }
                    584:                  DefaultChecked = Yes_, No_) =
1.1       cvs       585:                CONSTANT C_Empty with Checked ?= No_;
1.59      cvs       586:        Radio_Input                                     { INPUT / RADIO }
1.63      cvs       587:           (ATTR !NAME; !Value_; Checked; disabled;
                    588:                { name  value    checked   disabled }
                    589:                  readonly; tabindex; accesskey;
                    590:                { readonly  tabindex  accesskey }
                    591:                  onfocus; onblur;
                    592:                { onfocus  onblur }
                    593:                  DefaultChecked) =
                    594:                CONSTANT C_Empty with Checked ?= No_,
                    595:                                      NAME ?= 'radio';
                    596:        Submit_Input                                    { INPUT / SUBMIT }
                    597:           (ATTR  NAME; Value_; disabled; readonly;
                    598:                { name  value   disabled; readonly }
                    599:                  tabindex; accesskey;
                    600:                { tabindex  accesskey }
                    601:                  onfocus; onblur) =
                    602:                { onfocus  onblur }
                    603:                BEGIN
1.99      cvs       604:                CONSTANT C_Empty;
1.63      cvs       605:                END with Value_ ?= 'Submit';
                    606:        Reset_Input                                     { INPUT / RESET }
                    607:           (ATTR  NAME; Value_; disabled; readonly;
                    608:                { name  value   disabled  readonly }
                    609:                  tabindex; accesskey;
                    610:                { tabindex  accesskey }
                    611:                  onfocus; onblur) =
                    612:                { onfocus  onblur }
                    613:                BEGIN
1.99      cvs       614:                CONSTANT C_Empty;
1.68      cvs       615:                END  - (Input) with NAME ?= 'Reset',
                    616:                                    Value_ ?= 'Reset';
                    617:         Button_Input                                   { INPUT / BUTTON }
1.66      cvs       618:           (ATTR !NAME; Value_; disabled; readonly;
                    619:                { name  value   disabled  readonly }
1.63      cvs       620:                  tabindex; accesskey;
                    621:                { tabindex  accesskey }
1.68      cvs       622:                  onfocus; onblur) =
1.63      cvs       623:                { onfocus  onblur }
1.68      cvs       624:                BEGIN
1.99      cvs       625:                CONSTANT C_Empty;
1.68      cvs       626:                END;
1.79      cvs       627: 
1.189     quint     628:        Hidden_Input                                    { INPUT / HIDDEN }
                    629:           (ATTR !NAME; Value_; disabled;
                    630:                { name  value   disabled }
                    631:                  tabindex; accesskey;
                    632:                { tabindex  accesskey }
                    633:                  onfocus; onblur) =
                    634:                { onfocus  onblur }
                    635:                CONSTANT C_Empty;
                    636: 
1.120     cvs       637:         BUTTON_                                                { BUTTON }
1.68      cvs       638:           (ATTR !NAME; Value_;
                    639:                { name  value }
                    640:                  Button_type = button, submit, reset;
                    641:                { type          button  submit  reset }
                    642:                  disabled; tabindex; accesskey;
                    643:                { disabled  tabindex  accesskey }
                    644:                  onfocus; onblur) =
                    645:                { onfocus  onblur }
1.79      cvs       646:                Basic_Set - (Anchor, Input, Form, FIELDSET, IFRAME);
1.68      cvs       647:         LABEL                                          { LABEL }
                    648:           (ATTR  Associated_control = TEXT;
                    649:                { for }
                    650:                  accesskey; onfocus; onblur) =
                    651:                { accesskey  onfocus  onblur }
1.71      cvs       652:                Basic_Set;
1.59      cvs       653:        Option_Menu;                                    { SELECT }
                    654:        Text_Area;                                      { TEXTAREA }
1.8       cvs       655:        END;
1.1       cvs       656: 
1.177     quint     657:   Input_Text = BEGIN
1.1       cvs       658:        Inserted_Text = TEXT;
                    659:        END;
                    660: 
1.197   ! quint     661:   Table_                                                       { TABLE }
1.63      cvs       662:      (ATTR summary = Text; Width__; Border = Integer;
                    663:         { summary         width    border }
                    664:           frame = void, above, below, hsides, lhs, rhs,
                    665:         { frame   void  above  below  hsides  lhs  rhs  }
                    666:                   vsides, box, border;
                    667:         {         vsides  box  border }
1.97      cvs       668:           rules_ = none_, groups, rows, cols, all;
                    669:         { rules    none   groups  rows  cols  all }
1.63      cvs       670:           cellspacing = Integer; cellpadding = Integer;
                    671:         { cellspacing            cellpadding }
                    672:           Align; BackgroundColor;
                    673:         { align  bgcolor }
                    674:           datapagesize = Text; IntWidthPxl; IntWidthPercent) =
                    675:         { datapagesize }
1.1       cvs       676:        BEGIN
1.84      cvs       677:        CAPTION;                                                { CAPTION }
1.115     cvs       678:       ? Cols = LIST OF (Col_elem = CASE OF
1.85      cvs       679:                                COL;                            { COL }
                    680:                                COLGROUP;                       { COLGROUP }
                    681:                                END);
1.1       cvs       682:        Table_head = LIST OF (Column_head);
1.63      cvs       683:       ? thead;                                                 { THEAD }
                    684:        Table_body = LIST OF (tbody);
                    685:       ? tfoot;                                                 { TFOOT }
1.1       cvs       686:        Table_foot = CONSTANT C_Foot;
1.49      cvs       687:        END;
1.63      cvs       688: 
                    689:   CAPTION                                                      { CAPTION }
                    690:      (ATTR Position = Position_top, Position_bottom,
                    691:         { align      top           bottom }
                    692:           Position_left, Position_right) =
                    693:         { left           right }
                    694:        Basic_Set;
                    695: 
1.189     quint     696:   COLGROUP                                                     { COLGROUP }
                    697:     (ATTR Cell_align = Cell_left, Cell_center, Cell_right,
                    698:        { align        left       center       right }
                    699:                       Cell_justify, Cell_char;
                    700:        {              justify       char }
                    701:          Cell_valign = Cell_top, Cell_middle, Cell_bottom, Cell_baseline;
                    702:        { valign        top       middle       bottom       baseline }
                    703:          Width__; span_ = Integer)
                    704:        { width    span }
                    705:         = LIST OF (COL);
                    706: 
                    707:   COL                                                          { COL }
                    708:     (ATTR Cell_align; Cell_valign; Width__; span_)
                    709:        { align       valign       width    span }
                    710:         = CONSTANT C_Empty;
                    711: 
1.44      cvs       712:   Column_head (ATTR IntWidthPercent; IntWidthPxl) =
                    713:        CONSTANT C_Head;
1.63      cvs       714: 
                    715:   thead                                                                { THEAD }
1.189     quint     716:      (ATTR Cell_align; char = Text; charoff = Text; 
                    717:           Row_valign = Row_top, Row_middle, Row_bottom, Row_baseline) =
                    718:         { valign       top      middle      bottom      baseline }
1.63      cvs       719:        LIST OF (Table_row);
                    720: 
                    721:   tbody                                                                 { TBODY }
                    722:      (ATTR Cell_align; char; charoff; Row_valign) =
                    723:        LIST OF (Table_row);
                    724: 
                    725:   tfoot                                                                { TFOOT }
                    726:      (ATTR Cell_align; char; charoff; Row_valign) =
                    727:        LIST OF (Table_row);
                    728: 
1.189     quint     729:   Table_row                                                    { TR }
                    730:      (ATTR Cell_align; char; charoff; Row_valign;
                    731:         { align       char  charoff  valign }
                    732:           BackgroundColor; IntHeightPxl) =
                    733:         { bgcolor          Special attribute to control row span }
                    734:        LIST OF (Table_cell);
                    735: 
1.1       cvs       736:   Table_cell = CASE OF
1.63      cvs       737:        Data_cell;                                              { TD }
                    738:        Heading_cell;                                           { TH }
                    739:        END;
                    740: 
                    741:   Data_cell                                                    { TD }
                    742:      (ATTR Ref_column = REFERENCE(Column_head);
                    743:            ColExt = REFERENCE(Column_head);
                    744:            RowExt = REFERENCE(Table_row);
                    745:           abbr = Text; axis = Text; headers = Text; scope = Text;
                    746:         { abbr         axis         headers         scope }
                    747:            rowspan_ = INTEGER; colspan_ = INTEGER;
                    748:         { rowspan             colspan }
1.189     quint     749:            Cell_align; char; charoff; Cell_valign;
                    750:         { align       char  charoff  valign }
1.63      cvs       751:            No_wrap = no_wrap; BackgroundColor;
                    752:         { nowrap             bgcolor }
1.129     vatton    753:           Width__; IntWidthPxl; IntWidthPercent;
                    754:           Height_;  IntHeightPercent; IntHeightPxl;) =
1.63      cvs       755:         { width    height }
                    756:        LIST OF (Element);
                    757: 
                    758:   Heading_cell                                                 { TH }
                    759:      (ATTR Ref_column; ColExt; RowExt;
                    760:           abbr; axis; headers; scope;
                    761:         { abbr  axis  headers  scope }
                    762:           rowspan_; colspan_;
                    763:         { rowspan   colspan }
                    764:           Cell_align; char; charoff; Cell_valign;
                    765:         { align       char  charoff  valign }
                    766:           No_wrap; BackgroundColor;
                    767:         { nowrap   bgcolor }
1.129     vatton    768:           Width__; IntWidthPxl; IntWidthPercent;
                    769:           Height_;  IntHeightPercent; IntHeightPxl) =
1.63      cvs       770:         { width    height }
                    771:        LIST OF (Element);
                    772: 
                    773:   MAP                                                          { MAP }
1.197   ! quint     774:      (ATTR !NAME; Ref_IMG = REFERENCE(Any)) =
1.125     vatton    775:         { name linked to an image}
1.145     quint     776:        LIST OF (ElemOrArea = CASE OF Element; AREA; END);
1.125     vatton    777: 
                    778:   map                                                          { MAP }
1.197   ! quint     779:      (ATTR !NAME) =
1.63      cvs       780:         { name }
1.176     vatton    781:        LIST OF (Element);
1.63      cvs       782: 
                    783:   AREA                                                         { AREA }
1.197   ! quint     784:      (ATTR shape; coords; HREF_; target_; nohref = Yes_; !ALT;
        !           785:         { shape  coords  href   target   nohref          alt }
1.63      cvs       786:           tabindex; accesskey; onfocus; onblur;
                    787:         { tabindex  accesskey  onfocus  onblur }
                    788:           x_coord = Integer; y_coord = Integer; IntWidthPxl;
1.130     vatton    789:            IntHeightPxl; AreaRef_IMG = REFERENCE(Any)) =
1.63      cvs       790:        GRAPHICS with x_coord ?= 0, y_coord ?= 0,
1.130     vatton    791:                      IntWidthPxl ?= 25, IntHeightPxl ?= 10;
1.1       cvs       792: 
1.72      cvs       793:   FRAMESET                                                     { FRAMESET }
                    794:      (ATTR RowHeight = Text; ColWidth = Text;
                    795:         { rows              cols }
                    796:           onload; onunload) =
                    797:         { onload  onunload }
1.59      cvs       798:        AGGREGATE
1.72      cvs       799:        Frames = LIST [1 .. *] OF (FrameElem = CASE OF
                    800:                                        FRAME;
                    801:                                        FRAMESET;
                    802:                                        END - (NOFRAMES));
                    803:       ? NOFRAMES = BODY + (INS, DEL);                          { NOFRAMES }
1.59      cvs       804:        END;
                    805: 
1.72      cvs       806:   FRAME                                                                { FRAME }
1.188     quint     807:      (ATTR longdesc; NAME; FrameSrc = Text;
                    808:         { longdesc  name  src }
1.72      cvs       809:           frameborder = Border1, Border0;
                    810:         { frameborder   1        0 }
                    811:           marginwidth = Integer; marginheight = Integer;
                    812:         { marginwidth            marginheight }
1.98      cvs       813:           no_resize = Yes_; scrolling = Yes_, No_, auto_) =
1.72      cvs       814:         { noresize          scrolling   yes   no   auto }
1.63      cvs       815:        CONSTANT C_Empty;
1.59      cvs       816: 
1.63      cvs       817:   IFRAME                                                       { IFRAME }
1.188     quint     818:      (ATTR longdesc; NAME; FrameSrc; frameborder;
                    819:         { longdesc  name  src       frameborder }
1.72      cvs       820:           marginwidth; marginheight; scrolling;
                    821:         { marginwidth  marginheight  scrolling }
                    822:           Alignment; Width__; Height_) =
                    823:         { align      width    height }
1.181     cvs       824:        BEGIN
                    825:        Iframe_Src_Content= NATURE;
1.188     quint     826:        Iframe_Content = LIST OF (Element);                     { flow }
1.181     cvs       827:        END;
1.59      cvs       828: 
1.121     cvs       829:   ruby =                                                        { ruby }
                    830:         CASE OF
                    831:        simple_ruby;
                    832:        complex_ruby;
                    833:        END;
                    834: 
1.124     cvs       835:   simple_ruby =                                                 { ruby }
1.121     cvs       836:        BEGIN
1.122     cvs       837:        rb = Basic_Set - (simple_ruby, complex_ruby);
1.145     quint     838:        RtOrRtWithPar = CASE OF
1.124     cvs       839:              rt (ATTR rbspan = Integer) =
                    840:                  Basic_Set - (simple_ruby, complex_ruby);
1.145     quint     841:              RtWithPar = BEGIN
1.121     cvs       842:                  rp = TEXT;
                    843:                  rt;
                    844:                  rp;
                    845:                  END;
                    846:              END;
                    847:        END;
                    848: 
1.124     cvs       849:   complex_ruby =                                               { ruby }
1.121     cvs       850:        BEGIN
                    851:        rbc = LIST OF (rb);
                    852:        rtc1 = LIST OF (rt);
                    853:       ? rtc2 = LIST OF (rt);
                    854:        END;    
                    855:        
1.72      cvs       856:   { AnyLink is an alias for all elements with an attribute
                    857:     of type URI.  Only elements to be shown in the Links view
                    858:     are taken into account }
                    859:   AnyLink = CASE OF
                    860:        Anchor;         { HREF_ }
                    861:        Block_Quote;    { cite }
                    862:        Quotation;      { cite }
                    863:        INS;            { cite }
                    864:        DEL;            { cite }
                    865:        END;
                    866: 
1.1       cvs       867: EXCEPT
1.25      cvs       868:        HTML:           NoMove, NoResize;
1.156     quint     869:        BODY:           NoCut, CssBackground, NoMove, NoResize,
1.170     quint     870:                        SetWindowBackground, NoBreakByReturn;
1.1       cvs       871:        HEAD:           NoCut;
                    872:        TITLE:          NoCut;
1.142     quint     873:        Document_URL:   Hidden, NoSpellCheck, NoCut;
1.153     quint     874:        C_Empty:        Hidden, NoSpellCheck, NoSelect;
1.118     cvs       875:        C_BR:           SelectParent;
1.72      cvs       876:        Frames:         Hidden;
1.74      cvs       877:        FRAMESET:       NoCreate;       { prevent a Return at the end of the
                    878:                                          document from creating a FRAMESET }
1.68      cvs       879:        Inserted_Text:  Hidden, NoCut;
                    880:        Basic_Set:      Hidden;
1.132     cvs       881:        Definition_Item:Hidden;
1.68      cvs       882:        Term_List:      Hidden;
1.132     cvs       883:        Definitions:    Hidden;
1.195     vatton    884:         XMLPI:         ReturnCreateNL, NoSpellCheck, NoReplicate;
1.155     cvs       885:        Comment\240:    ReturnCreateNL, NoReplicate;
1.192     vatton    886:        Comment_line:   Hidden;
                    887:        PI_line:        Hidden;
1.195     vatton    888:        DOCTYPE:        NoCut, NoSpellCheck;
1.192     vatton    889:        DOCTYPE_line:   Hidden, NoCut;
1.140     cvs       890:         CDATA_line:     Hidden;
1.1       cvs       891:        GRAPHICS:       NoMove, NoResize;
1.41      cvs       892:        TEXT:           NoMove, NoResize;
1.26      cvs       893:        PICTURE:        MoveResize;
1.63      cvs       894:        Invalid_element:NoCreate;
1.127     cvs       895:        Unknown_namespace:NoCreate;
1.164     cvs       896:        XHTML_Unknown_namespace:NoCreate;
1.178     quint     897:         BR:            IsBreak;
1.63      cvs       898:        Pseudo_paragraph: ParagraphBreak, Hidden;
1.117     kahan     899:        Basic_Elem:     Hidden;
1.1       cvs       900:        Paragraph:      ParagraphBreak;
                    901:        H1:             ParagraphBreak;
                    902:        H2:             ParagraphBreak;
                    903:        H3:             ParagraphBreak;
                    904:        H4:             ParagraphBreak;
                    905:        H5:             ParagraphBreak;
                    906:        H6:             ParagraphBreak;
                    907:        Address:        ParagraphBreak;
                    908:        Term:           ParagraphBreak;
                    909:        MAP:            IsDraw;
1.158     quint     910:        AREA:           MoveResize, ClickableSurface, HighlightChildren;
1.70      cvs       911:        Password_Input: Shadow;
1.146     vatton    912:        Preformatted:   ReturnCreateNL, NoReplicate;
                    913:        STYLE_:         ReturnCreateNL, NoReplicate;
                    914:        SCRIPT_:        ReturnCreateNL, NoReplicate;
                    915:        Text_Area:      ReturnCreateNL, NoReplicate;
1.170     quint     916:        HTMLfragment:   NoMove, NoResize, Hidden, NoBreakByReturn;
1.147     vatton    917:        Division:       NoMove, NoResize;
1.169     vatton    918:        Form:           NoReplicate;
1.1       cvs       919: 
1.29      cvs       920:        ExternalLink:   Invisible;
1.15      cvs       921:        InternalLink:   Invisible;
1.44      cvs       922:        IntWidthPercent:NewPercentWidth, Invisible;
                    923:        IntWidthPxl:    NewWidth, Invisible;
1.129     vatton    924:        IntHeightPercent: Invisible;
                    925:        IntHeightPxl:   NewHeight, Invisible;
1.162     quint     926:         IntAreaSize:   Invisible;
1.1       cvs       927:        IntSizeIncr:    Invisible;
                    928:        IntSizeDecr:    Invisible;
                    929:        IntSizeRel:     Invisible;
1.93      cvs       930:        IsInput:        Invisible;
1.1       cvs       931:        x_coord:        Invisible, NewHPos;
                    932:        y_coord:        Invisible, NewVPos;
                    933:        Ref_IMG:        Invisible;
                    934:        AreaRef_IMG:    Invisible;
                    935:        Invalid_attribute: Invisible;
1.127     cvs       936:        Unknown_attribute: Invisible;
1.90      cvs       937:        Highlight:      Invisible;
1.87      cvs       938:        PseudoClass:    Invisible, CssPseudoClass;
1.1       cvs       939:        Default_Value:  Invisible;
1.63      cvs       940:        DefaultSelected:Invisible;
1.182     quint     941:        ShowMe:         Invisible;
1.1       cvs       942:        DefaultChecked: Invisible;
1.22      cvs       943:        ShowAreas:      Invisible;
1.83      cvs       944:        PrintURL:       Invisible;
1.151     vatton    945:        NoImages:       Invisible;
1.167     gully     946:        NoObjects:      Invisible;
1.65      cvs       947:        Namespaces:     Invisible;
1.92      cvs       948:        RealLang:       Invisible;
1.101     cvs       949:        Charset:        Invisible;
1.143     cvs       950:        PI:             Invisible;
1.50      cvs       951:        shape:          Invisible;
1.170     quint     952:        Data_cell:      IsCell, NoMove, NoResize, NoBreakByReturn;
                    953:        Heading_cell:   IsCell, NoMove, NoResize, NoBreakByReturn;
1.190     vatton    954:        Table_cell:     IsCell, NoMove, NoResize, NoBreakByReturn;
1.193     quint     955:        Table_:         IsTable, PageBreak, NoReplicate, NoBreakByReturn;
1.174     quint     956:        Column_head:    IsColHead, NoCut, Hidden, NoBreakByReturn;
                    957:        Table_head:     NoCut, Hidden, NoSelect, NoBreakByReturn;
1.75      cvs       958:        C_Head:         Hidden, NoSelect;
                    959:        Table_foot:     NoCut, Hidden, NoSelect, PageBreakRepBefore;
                    960:        C_Foot:         Hidden, NoSelect;
1.187     quint     961:        Cols:           Hidden, NoSelect, NoCreate;
1.173     quint     962:        Table_body:     PageBreakAllowed, Hidden, NoBreakByReturn;
1.174     quint     963:         thead:         NoBreakByReturn; 
1.172     quint     964:         tbody:         NoBreakByReturn;
1.174     quint     965:         tfoot:         NoBreakByReturn;
1.171     quint     966:        Table_row:      IsRow, PageBreakPlace, NoBreakByReturn;
1.170     quint     967:        IFRAME:         NoBreakByReturn;
1.181     cvs       968:        Iframe_Content: Hidden, NoCreate, NoCut, NoBreakByReturn;
                    969:        Iframe_Src_Content: Hidden;
1.189     quint     970:         rbc:           Hidden;
                    971:         rtc1:          Hidden;
                    972:         rtc2:          Hidden;
1.1       cvs       973:        ColExt:         Invisible;
1.2       cvs       974:        RowExt:         Invisible;
1.44      cvs       975:        Ref_column:     ColRef, Invisible;
                    976:        colspan_:       ColSpan;
                    977:        rowspan_:       RowSpan;
1.1       cvs       978:        Ghost_restruct: Invisible;
1.100     cvs       979:         IntEntity:     Invisible;
                    980:         EntityName:    Invisible;
1.82      cvs       981:        onclick:        EventAttr;
                    982:        ondblclick:     EventAttr;
                    983:        onmousedown:    EventAttr;
                    984:        onmouseup:      EventAttr;
                    985:        onmouseover:    EventAttr;
                    986:        onmousemove:    EventAttr;
                    987:        onmouseout:     EventAttr;
                    988:        onkeypress:     EventAttr;
                    989:        onkeydown:      EventAttr;
                    990:        onkeyup:        EventAttr;
1.134     cvs       991:        onload:         EventAttr;
                    992:        onunload:       EventAttr;
                    993:        onfocus:        EventAttr;
                    994:        onblur:         EventAttr;
                    995:        onsubmit:       EventAttr;
                    996:        onreset:        EventAttr;
                    997:        onchange:       EventAttr;
                    998:        onselect:       EventAttr;
1.87      cvs       999:        ID :            CssId;
                   1000:        Class:          CssClass;
1.181     cvs      1001:        External_Object_Content: Hidden;
1.145     quint    1002:        Embed_Content:  Hidden, NoSelect;
1.181     cvs      1003:        Object_Content: Hidden, NoCreate, NoCut, NoBreakByReturn;
1.189     quint    1004:        Applet_Content: Hidden, NoCreate, NoCut, NoBreakByReturn;
1.194     quint    1005:        is_css:         Invisible;
                   1006:         Start:         StartCounter;
                   1007:         ItemValue:     SetCounter;
1.168     vatton   1008:        xml_space:      SpacePreserve;
1.1       cvs      1009: END

Webmaster