Annotation of Amaya/amaya/HTMLnames.h, revision 1.26

1.9       cvs         1: /* Mapping table of XHTML elements */
1.2       cvs         2: #include "HTML.h"
1.1       cvs         3: static ElemMapping    XHTMLElemMappingTable[] =
                      4: {
                      5:    /* This table MUST be in alphabetical order */
1.11      cvs         6:  
1.24      cvs         7:    {"DOCTYPE", SPACE, HTML_EL_DOCTYPE, L_OtherValue, FALSE},
                      8:    {"DOCTYPE_line", SPACE, HTML_EL_DOCTYPE_line, L_OtherValue, FALSE},
1.16      cvs         9:    {"XMLPI", SPACE, HTML_EL_XMLPI, L_OtherValue, FALSE},
                     10:    {"XMLPI_line", SPACE, HTML_EL_PI_line, L_OtherValue, FALSE},
                     11:    {"XMLcomment", SPACE, HTML_EL_Comment_, L_OtherValue, FALSE},
                     12:    {"XMLcomment_line", SPACE, HTML_EL_Comment_line, L_OtherValue, FALSE},
1.25      cvs        13:    {"a", SPACE, HTML_EL_Anchor, L_BasicValue, TRUE},
1.16      cvs        14:    {"abbr", SPACE, HTML_EL_ABBR, L_BasicValue, TRUE},
                     15:    {"acronym", SPACE, HTML_EL_ACRONYM, L_BasicValue, TRUE},
                     16:    {"address", SPACE, HTML_EL_Address, L_BasicValue, FALSE},
                     17:    {"applet", SPACE, HTML_EL_Applet, L_TransitionalValue, FALSE},
                     18:    {"area", 'E', HTML_EL_AREA, L_StrictValue, FALSE},
                     19:    {"b", SPACE, HTML_EL_Bold_text, L_StrictValue, TRUE},
                     20:    {"base", 'E', HTML_EL_BASE, L_BasicValue, FALSE},
                     21:    {"basefont", 'E', HTML_EL_BaseFont, L_TransitionalValue, FALSE},
                     22:    {"bdo", SPACE, HTML_EL_BDO, L_StrictValue, TRUE},
                     23:    {"big", SPACE, HTML_EL_Big_text, L_StrictValue, TRUE},
                     24:    {"blockquote", SPACE, HTML_EL_Block_Quote, L_BasicValue, FALSE},
                     25:    {"body", SPACE, HTML_EL_BODY, L_BasicValue, FALSE},
                     26:    {"br", 'E', HTML_EL_BR, L_BasicValue, TRUE},
                     27:    {"button", SPACE, HTML_EL_BUTTON_, L_StrictValue, TRUE},
                     28:    {"c", SPACE, HTML_EL_TEXT_UNIT, L_OtherValue, TRUE}, /* used by the trans.c */
                     29:    {"caption", SPACE, HTML_EL_CAPTION, L_BasicValue, FALSE},
                     30:    {"center", SPACE, HTML_EL_Center, L_TransitionalValue, FALSE},
                     31:    {"cite", SPACE, HTML_EL_Cite, L_BasicValue, TRUE},
                     32:    {"code", SPACE, HTML_EL_Code, L_BasicValue, TRUE},
                     33:    {"colgroup", SPACE, HTML_EL_COLGROUP, L_StrictValue, FALSE},
                     34:    {"col", SPACE, HTML_EL_COL, L_StrictValue, FALSE},
                     35:    {"dd", SPACE, HTML_EL_Definition, L_BasicValue, FALSE},
                     36:    {"del", SPACE, HTML_EL_DEL, L_StrictValue, TRUE},
                     37:    {"dfn", SPACE, HTML_EL_Def, L_BasicValue, TRUE},
                     38:    {"dir", SPACE, HTML_EL_Directory, L_StrictValue, FALSE},
                     39:    {"div", SPACE, HTML_EL_Division, L_BasicValue, FALSE},
                     40:    {"dl", SPACE, HTML_EL_Definition_List, L_BasicValue, FALSE},
                     41:    {"dt", SPACE, HTML_EL_Term, L_BasicValue, FALSE},
                     42:    {"em", SPACE, HTML_EL_Emphasis, L_BasicValue, TRUE},
1.21      cvs        43:    {"embed",  'E', HTML_EL_Embed, L_TransitionalValue, TRUE},
1.16      cvs        44:    {"fieldset", SPACE, HTML_EL_FIELDSET, L_StrictValue, FALSE},
                     45:    {"font", SPACE, HTML_EL_Font_, L_TransitionalValue, TRUE},
                     46:    {"form", SPACE, HTML_EL_Form, L_BasicValue, FALSE},
                     47:    {"frame", 'E', HTML_EL_FRAME, L_TransitionalValue, FALSE},
                     48:    {"frameset", SPACE, HTML_EL_FRAMESET, L_TransitionalValue, FALSE},
                     49:    {"h1", SPACE, HTML_EL_H1, L_BasicValue, FALSE},
                     50:    {"h2", SPACE, HTML_EL_H2, L_BasicValue, FALSE},
                     51:    {"h3", SPACE, HTML_EL_H3, L_BasicValue, FALSE},
                     52:    {"h4", SPACE, HTML_EL_H4, L_BasicValue, FALSE},
                     53:    {"h5", SPACE, HTML_EL_H5, L_BasicValue, FALSE},
                     54:    {"h6", SPACE, HTML_EL_H6, L_BasicValue, FALSE},
                     55:    {"head", SPACE, HTML_EL_HEAD, L_BasicValue, FALSE},
                     56:    {"hr", 'E', HTML_EL_Horizontal_Rule, L_StrictValue, FALSE},
                     57:    {"html", SPACE, HTML_EL_HTML, L_BasicValue, FALSE},
                     58:    {"i", SPACE, HTML_EL_Italic_text, L_StrictValue, TRUE},
                     59:    {"iframe", SPACE, HTML_EL_IFRAME, L_TransitionalValue, FALSE},
                     60:    {"image", 'E', HTML_EL_PICTURE_UNIT, L_StrictValue, TRUE},
                     61:    {"img", 'E', HTML_EL_PICTURE_UNIT, L_BasicValue, TRUE},
                     62:    {"input", 'E', HTML_EL_Input, L_BasicValue, TRUE},
                     63:    {"input", 'E', HTML_EL_Text_Input, L_BasicValue, TRUE},
                     64:    {"input", 'E', HTML_EL_Password_Input, L_BasicValue, TRUE},
                     65:    {"input", 'E', HTML_EL_File_Input, L_BasicValue, TRUE},
                     66:    {"input", 'E', HTML_EL_Checkbox_Input, L_BasicValue, FALSE},
                     67:    {"input", 'E', HTML_EL_Radio_Input, L_BasicValue, FALSE},
                     68:    {"input", 'E', HTML_EL_Submit_Input, L_BasicValue, FALSE},
                     69:    {"input", 'E', HTML_EL_Reset_Input, L_BasicValue, FALSE},
                     70:    {"input", 'E', HTML_EL_Button_Input, L_BasicValue, TRUE},
                     71:    {"input", 'E', HTML_EL_Hidden_Input, L_BasicValue, FALSE},
                     72:    {"ins", SPACE, HTML_EL_INS, L_StrictValue, TRUE},
                     73:    {"isindex", 'E', HTML_EL_ISINDEX, L_TransitionalValue, FALSE},
                     74:    {"kbd", SPACE, HTML_EL_Keyboard, L_BasicValue, TRUE},
                     75:    {"label", SPACE, HTML_EL_LABEL, L_BasicValue, TRUE},
                     76:    {"legend", SPACE, HTML_EL_LEGEND, L_StrictValue, FALSE},
                     77:    {"li", SPACE, HTML_EL_List_Item, L_BasicValue, FALSE},
                     78:    {"link", 'E', HTML_EL_LINK, L_BasicValue, FALSE},
                     79:    {"listing", SPACE, HTML_EL_Preformatted, L_TransitionalValue, FALSE}, /*converted to PRE */
1.18      vatton     80:    {"map", SPACE, HTML_EL_map, L_StrictValue, FALSE},
1.16      cvs        81:    {"map", SPACE, HTML_EL_MAP, L_StrictValue, FALSE},
                     82:    {"menu", SPACE, HTML_EL_Menu, L_TransitionalValue, FALSE},
                     83:    {"meta", 'E', HTML_EL_META, L_BasicValue, FALSE},
                     84:    {"noframes", SPACE, HTML_EL_NOFRAMES, L_TransitionalValue, FALSE},
                     85:    {"noscript", SPACE, HTML_EL_NOSCRIPT, L_StrictValue, FALSE},
                     86:    {"object", SPACE, HTML_EL_Object, L_BasicValue, FALSE},
                     87:    {"ol", SPACE, HTML_EL_Numbered_List, L_BasicValue, FALSE},
                     88:    {"optgroup", SPACE, HTML_EL_OptGroup, L_StrictValue, TRUE},
                     89:    {"option", SPACE, HTML_EL_Option, L_BasicValue, TRUE},
                     90:    {"p", SPACE, HTML_EL_Paragraph, L_BasicValue, FALSE},
                     91:    {"p*", SPACE, HTML_EL_Pseudo_paragraph, L_BasicValue, FALSE}, /* pseudo-paragraph */
                     92:    {"param", 'E', HTML_EL_Parameter, L_BasicValue, FALSE},
                     93:    {"plaintext", SPACE, HTML_EL_Preformatted, L_TransitionalValue, FALSE},/* converted to PRE */
                     94:    {"pre", SPACE, HTML_EL_Preformatted, L_BasicValue, FALSE},
                     95:    {"q", SPACE, HTML_EL_Quotation, L_BasicValue, TRUE},
                     96:    {"rb", SPACE, HTML_EL_rb, L_RubyValue, TRUE},
                     97:    {"rbc", SPACE, HTML_EL_rbc, L_RubyValue, FALSE},
                     98:    {"rp", SPACE, HTML_EL_rp, L_RubyValue, FALSE},
                     99:    {"rt", SPACE, HTML_EL_rt, L_RubyValue, TRUE},
                    100:    {"rtc", SPACE, HTML_EL_rtc1, L_RubyValue, FALSE},
                    101:    {"rtc", SPACE, HTML_EL_rtc2, L_RubyValue, FALSE},
                    102:    {"ruby", SPACE, HTML_EL_simple_ruby, L_RubyValue, TRUE},
                    103:    {"s", SPACE, HTML_EL_Struck_text, L_StrictValue, TRUE},
                    104:    {"samp", SPACE, HTML_EL_Sample, L_BasicValue, TRUE},
1.26    ! vatton    105:    {"script", SPACE, HTML_EL_SCRIPT_, L_StrictValue, FALSE},
1.16      cvs       106:    {"select", SPACE, HTML_EL_Option_Menu, L_BasicValue, TRUE},
                    107:    {"small", SPACE, HTML_EL_Small_text, L_StrictValue, TRUE},
                    108:    {"span", SPACE, HTML_EL_Span, L_BasicValue, TRUE},
                    109:    {"strike", SPACE, HTML_EL_Struck_text, L_TransitionalValue, TRUE},
                    110:    {"strong", SPACE, HTML_EL_Strong, L_BasicValue, TRUE},
                    111:    {"style", SPACE, HTML_EL_STYLE_, L_StrictValue, FALSE},
                    112:    {"sub", SPACE, HTML_EL_Subscript, L_StrictValue, TRUE},
                    113:    {"sup", SPACE, HTML_EL_Superscript, L_StrictValue, TRUE},
                    114:    {"symb", SPACE, HTML_EL_SYMBOL_UNIT, L_OtherValue, TRUE},
                    115:    {"table", SPACE, HTML_EL_Table, L_BasicValue, FALSE},
                    116:    {"tbody", SPACE, HTML_EL_tbody, L_BasicValue, FALSE},
                    117:    {"td", SPACE, HTML_EL_Data_cell, L_BasicValue, FALSE},
                    118:    {"textarea", SPACE, HTML_EL_Text_Area, L_BasicValue, TRUE},
                    119:    {"tfoot", SPACE, HTML_EL_tfoot, L_StrictValue, FALSE},
                    120:    {"th", SPACE, HTML_EL_Heading_cell, L_BasicValue, FALSE},
                    121:    {"thead", SPACE, HTML_EL_thead, L_StrictValue, FALSE},
                    122:    {"title", SPACE, HTML_EL_TITLE, L_BasicValue, FALSE},
                    123:    {"tr", SPACE, HTML_EL_Table_row, L_BasicValue, FALSE},
                    124:    {"tt", SPACE, HTML_EL_Teletype_text, L_StrictValue, TRUE},
                    125:    {"u", SPACE, HTML_EL_Underlined_text, L_StrictValue, TRUE},
                    126:    {"ul", SPACE, HTML_EL_Unnumbered_List, L_BasicValue, FALSE},
                    127:    {"var", SPACE, HTML_EL_Variable, L_BasicValue, TRUE},
                    128:    {"xmp", SPACE, HTML_EL_Preformatted, L_TransitionalValue, FALSE},  /* converted to PRE */
                    129:    {"", SPACE, 0, L_BasicValue, FALSE}   /* Last entry. Mandatory */
1.1       cvs       130: };
                    131: 
1.9       cvs       132: /* Mapping table of Xhtml attributes */
1.1       cvs       133: AttributeMapping XHTMLAttributeMappingTable[] =
                    134: {
                    135:    /* The first entry MUST be unknown_attr */
                    136:    /* The rest of this table MUST be in alphabetical order */
1.16      cvs       137:    {"unknown_attr", "", 'A', HTML_ATTR_Invalid_attribute, L_TransitionalValue},
1.1       cvs       138: 
1.16      cvs       139:    {"abbr", "", 'A', HTML_ATTR_abbr, L_BasicValue},
                    140:    {"accept", "", 'A', HTML_ATTR_accept, L_BasicValue},
                    141:    {"accept-charset", "form", 'A', HTML_ATTR_accept_charset, L_BasicValue},
                    142:    {"accesskey", "", 'A', HTML_ATTR_accesskey, L_BasicValue},
                    143:    {"action", "", 'A', HTML_ATTR_Script_URL, L_BasicValue},
                    144:    {"align", "applet", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    145:    {"align", "caption", 'A', HTML_ATTR_Position, L_StrictValue},
                    146:    {"align", "col", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    147:    {"align", "colgroup", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    148:    {"align", "div", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
1.20      cvs       149:    {"align", "embed", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
1.16      cvs       150:    {"align", "h1", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    151:    {"align", "h2", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    152:    {"align", "h3", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    153:    {"align", "h4", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    154:    {"align", "h5", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    155:    {"align", "h6", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    156:    {"align", "hr", 'A', HTML_ATTR_Align, L_TransitionalValue},
                    157:    {"align", "iframe", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    158:    {"align", "image", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    159:    {"align", "img", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    160:    {"align", "input", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    161:    {"align", "legend", 'A', HTML_ATTR_LAlign, L_TransitionalValue},
                    162:    {"align", "object", 'A', HTML_ATTR_Alignment, L_TransitionalValue},
                    163:    {"align", "p", 'A', HTML_ATTR_TextAlign, L_TransitionalValue},
                    164:    {"align", "table", 'A', HTML_ATTR_Align, L_TransitionalValue},
                    165:    {"align", "tbody", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    166:    {"align", "td", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    167:    {"align", "tfoot", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    168:    {"align", "th", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    169:    {"align", "thead", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    170:    {"align", "tr", 'A', HTML_ATTR_Cell_align, L_StrictValue},
                    171:    {"alink", "body", 'A', HTML_ATTR_ActiveLinkColor, L_TransitionalValue},
                    172:    {"alt", "", 'A', HTML_ATTR_ALT, L_BasicValue},
                    173:    {"archive", "", 'A', HTML_ATTR_archive, L_BasicValue},
                    174:    {"axis", "", 'A', HTML_ATTR_axis, L_BasicValue},
                    175: 
                    176:    {"background", "", 'A', HTML_ATTR_background_, L_TransitionalValue},
1.20      cvs       177:    {"bgcolor", "", 'A', HTML_ATTR_BackgroundColor, L_StrictValue},
                    178:    {"border", "embed", 'A', HTML_ATTR_Img_border, L_TransitionalValue},
1.16      cvs       179:    {"border", "image", 'A', HTML_ATTR_Img_border, L_TransitionalValue},
                    180:    {"border", "img", 'A', HTML_ATTR_Img_border, L_TransitionalValue},
                    181:    {"border", "object", 'A', HTML_ATTR_Img_border, L_TransitionalValue},
                    182:    {"border", "table", 'A', HTML_ATTR_Border, L_StrictValue},
                    183: 
                    184:    {"cellspacing", "", 'A', HTML_ATTR_cellspacing, L_StrictValue},
                    185:    {"cellpadding", "", 'A', HTML_ATTR_cellpadding, L_StrictValue},
                    186:    {"char", "", 'A', HTML_ATTR_char, L_StrictValue},
                    187:    {"charoff", "", 'A', HTML_ATTR_charoff, L_TransitionalValue},
                    188:    {"charset", "", 'A', HTML_ATTR_charset, L_BasicValue},
                    189:    {"checked", "", 'A', HTML_ATTR_Checked, L_BasicValue},
                    190:    {"cite", "", 'A', HTML_ATTR_cite, L_BasicValue},
                    191:    {"class", "", 'A', HTML_ATTR_Class, L_BasicValue},
                    192:    {"classid", "", 'A', HTML_ATTR_classid, L_BasicValue},
                    193:    {"clear", "br", 'A', HTML_ATTR_Clear, L_TransitionalValue},
                    194:    {"code", "", 'A', HTML_ATTR_code, L_BasicValue},
                    195:    {"codebase", "", 'A', HTML_ATTR_codebase, L_BasicValue},
                    196:    {"codetype", "", 'A', HTML_ATTR_codetype, L_BasicValue},
                    197:    {"color", "basefont", 'A', HTML_ATTR_BaseFontColor, L_TransitionalValue},
                    198:    {"color", "", 'A', HTML_ATTR_color, L_TransitionalValue},
                    199:    {"cols", "frameset", 'A', HTML_ATTR_ColWidth, L_TransitionalValue},
                    200:    {"cols", "textarea", 'A', HTML_ATTR_Columns, L_BasicValue},
                    201:    {"colspan", "", 'A', HTML_ATTR_colspan_, L_BasicValue},
                    202:    {"compact", "", 'A', HTML_ATTR_COMPACT, L_TransitionalValue},
                    203:    {"content", "", 'A', HTML_ATTR_meta_content, L_BasicValue},
                    204:    {"coords", "", 'A', HTML_ATTR_coords, L_BasicValue},
                    205: 
                    206:    {"data", "", 'A', HTML_ATTR_data, L_BasicValue},
                    207:    {"datapagesize", "table", 'A', HTML_ATTR_datapagesize, L_BasicValue},
                    208:    {"datetime", "", 'A', HTML_ATTR_datetime, L_BasicValue},
                    209:    {"declare", "object", 'A', HTML_ATTR_declare, L_BasicValue},
                    210:    {"defer", "script", 'A', HTML_ATTR_defer, L_BasicValue},
                    211:    {"dir", "", 'A', HTML_ATTR_dir, L_BasicValue},
                    212:    {"disabled", "", 'A', HTML_ATTR_disabled, L_BasicValue},
                    213: 
1.17      cvs       214:    {"enctype", "form", 'A', HTML_ATTR_ENCTYPE, L_BasicValue},
1.16      cvs       215:    {"enctype", "", 'A', HTML_ATTR_ENCTYPE, L_StrictValue},
                    216:    {"event", "script", 'A', HTML_ATTR_event, L_StrictValue},
                    217: 
                    218:    {"face", "basefont", 'A', HTML_ATTR_BaseFontFace, L_TransitionalValue},
                    219:    {"face", "font", 'A', HTML_ATTR_face, L_TransitionalValue},
                    220:    {"for", "label", 'A', HTML_ATTR_Associated_control, L_BasicValue},
                    221:    {"for", "script", 'A', HTML_ATTR_for_, L_StrictValue},
                    222:    {"frame", "table", 'A', HTML_ATTR_frame, L_StrictValue},
                    223:    {"frameborder", "", 'A', HTML_ATTR_frameborder, L_TransitionalValue},
                    224: 
                    225:    {"headers", "", 'A', HTML_ATTR_headers, L_BasicValue},
                    226:    {"height", "img", 'A', HTML_ATTR_Height_, L_BasicValue},
                    227:    {"height", "object", 'A', HTML_ATTR_Height_, L_BasicValue},
                    228:    {"height", "", 'A', HTML_ATTR_Height_, L_TransitionalValue},
1.21      cvs       229:    {"hidden", "embed", 'A', HTML_ATTR_EmbedHidden, L_TransitionalValue},
1.16      cvs       230:    {"href", "", 'A', HTML_ATTR_HREF_, L_BasicValue},
                    231:    {"hreflang", "", 'A', HTML_ATTR_hreflang, L_BasicValue},
                    232:    {"hspace", "", 'A', HTML_ATTR_hspace, L_TransitionalValue},
                    233:    {"http-equiv", "", 'A', HTML_ATTR_http_equiv, L_BasicValue},
                    234: 
                    235:    {"id", "", 'A', HTML_ATTR_ID, L_BasicValue},
                    236:    {"ismap", "", 'A', HTML_ATTR_ISMAP, L_StrictValue},
                    237: 
                    238:    {"label", "", 'A', HTML_ATTR_label, L_BasicValue},
1.19      cvs       239:    {"lang", "", 'A', HTML_ATTR_Language, L_BasicValue},
1.16      cvs       240:    {"language", "script", 'A', HTML_ATTR_script_language, L_BasicValue},
                    241:    {"link", "body", 'A', HTML_ATTR_LinkColor, L_BasicValue},
                    242:    {"longdesc", "", 'A', HTML_ATTR_longdesc, L_BasicValue},
                    243: 
                    244:    {"marginheight", "", 'A', HTML_ATTR_marginheight, L_TransitionalValue},
                    245:    {"marginwidth", "", 'A', HTML_ATTR_marginwidth, L_TransitionalValue},
                    246:    {"maxlength", "", 'A', HTML_ATTR_MaxLength, L_BasicValue},
                    247:    {"media", "", 'A', HTML_ATTR_media, L_BasicValue},
                    248:    {"method", "", 'A', HTML_ATTR_METHOD, L_BasicValue},
                    249:    {"multiple", "", 'A', HTML_ATTR_Multiple, L_BasicValue},
                    250: 
                    251:    {"name", "applet", 'A', HTML_ATTR_applet_name, L_TransitionalValue},
1.21      cvs       252:    {"name", "embed", 'A', HTML_ATTR_EmbedName, L_TransitionalValue},
1.16      cvs       253:    {"name", "frame", 'A', HTML_ATTR_FrameName, L_TransitionalValue},
                    254:    {"name", "iframe", 'A', HTML_ATTR_FrameName, L_TransitionalValue},
                    255:    {"name", "meta", 'A', HTML_ATTR_meta_name, L_BasicValue},
                    256:    {"name", "param", 'A', HTML_ATTR_Param_name, L_BasicValue},
                    257:    {"name", "", 'A', HTML_ATTR_NAME, L_BasicValue},
                    258:    {"nohref", "", 'A', HTML_ATTR_nohref, L_BasicValue},
                    259:    {"noresize", "", 'A', HTML_ATTR_no_resize, L_BasicValue},
                    260:    {"noshade", "", 'A', HTML_ATTR_NoShade, L_BasicValue},
                    261:    {"nowrap", "", 'A', HTML_ATTR_No_wrap, L_TransitionalValue},
                    262: 
                    263:    {"object", "applet", 'A', HTML_ATTR_object, L_TransitionalValue},
                    264:    {"onblur", "", 'A', HTML_ATTR_onblur, L_StrictValue},
                    265:    {"onchange", "", 'A', HTML_ATTR_onchange, L_StrictValue},
                    266:    {"onclick", "", 'A', HTML_ATTR_onclick, L_StrictValue},
                    267:    {"ondblclick", "", 'A', HTML_ATTR_ondblclick, L_StrictValue},
                    268:    {"onfocus", "", 'A', HTML_ATTR_onfocus, L_StrictValue},
                    269:    {"onkeydown", "", 'A', HTML_ATTR_onkeydown, L_StrictValue},
                    270:    {"onkeypress", "", 'A', HTML_ATTR_onkeypress, L_StrictValue},
                    271:    {"onkeyup", "", 'A', HTML_ATTR_onkeyup, L_StrictValue},
                    272:    {"onload", "", 'A', HTML_ATTR_onload, L_StrictValue},
                    273:    {"onmousedown", "", 'A', HTML_ATTR_onmousedown, L_StrictValue},
                    274:    {"onmousemove", "", 'A', HTML_ATTR_onmousemove, L_StrictValue},
                    275:    {"onmouseout", "", 'A', HTML_ATTR_onmouseout, L_StrictValue},
                    276:    {"onmouseover", "", 'A', HTML_ATTR_onmouseover, L_StrictValue},
                    277:    {"onmouseup", "", 'A', HTML_ATTR_onmouseup, L_StrictValue},
                    278:    {"onreset", "form", 'A', HTML_ATTR_onreset, L_StrictValue},
                    279:    {"onselect", "", 'A', HTML_ATTR_onselect, L_StrictValue},
                    280:    {"onsubmit", "form", 'A', HTML_ATTR_onsubmit, L_StrictValue},
                    281:    {"onunload", "", 'A', HTML_ATTR_onunload, L_StrictValue},
                    282: 
                    283:    {"profile", "head", 'A', HTML_ATTR_profile, L_BasicValue},
                    284:    {"prompt", "", 'A', HTML_ATTR_Prompt, L_StrictValue},
                    285: 
                    286:    {"rbspan", "rt", 'A', HTML_ATTR_rbspan, L_RubyValue},
                    287:    {"readonly", "", 'A', HTML_ATTR_readonly, L_BasicValue},
                    288:    {"rel", "", 'A', HTML_ATTR_REL, L_BasicValue},
                    289:    {"rev", "", 'A', HTML_ATTR_REV, L_BasicValue},
                    290:    {"rows", "frameset", 'A', HTML_ATTR_RowHeight, L_TransitionalValue},
                    291:    {"rows", "textarea", 'A', HTML_ATTR_Rows, L_BasicValue},
                    292:    {"rowspan", "", 'A', HTML_ATTR_rowspan_, L_BasicValue},
                    293:    {"rules", "table", 'A', HTML_ATTR_rules_, L_StrictValue},
                    294: 
                    295:    {"scheme", "meta", 'A', HTML_ATTR_scheme, L_BasicValue},
                    296:    {"scope", "", 'A', HTML_ATTR_scope, L_BasicValue},
                    297:    {"scrolling", "", 'A', HTML_ATTR_scrolling, L_TransitionalValue},
                    298:    {"selected", "", 'A', HTML_ATTR_Selected, L_BasicValue},
                    299:    {"shape", "", 'A', HTML_ATTR_shape, L_StrictValue},
                    300:    {"size", "basefont", 'A', HTML_ATTR_BaseFontSize, L_TransitionalValue},
                    301:    {"size", "font", 'A', HTML_ATTR_Font_size, L_TransitionalValue},
                    302:    {"size", "hr", 'A', HTML_ATTR_Size_, L_TransitionalValue},
                    303:    {"size", "input", 'A', HTML_ATTR_Area_Size, L_BasicValue},
                    304:    {"size", "select", 'A', HTML_ATTR_MenuSize, L_BasicValue},
                    305:    {"span", "col", 'A', HTML_ATTR_span_, L_StrictValue},
                    306:    {"span", "colgroup", 'A', HTML_ATTR_span_, L_StrictValue},
1.21      cvs       307:    {"src", "embed", 'A', HTML_ATTR_SRC, L_TransitionalValue},
1.16      cvs       308:    {"src", "frame", 'A', HTML_ATTR_FrameSrc, L_TransitionalValue},
                    309:    {"src", "iframe", 'A', HTML_ATTR_FrameSrc, L_TransitionalValue},
                    310:    {"src", "script", 'A', HTML_ATTR_script_src, L_StrictValue},
                    311:    {"src", "", 'A', HTML_ATTR_SRC, L_BasicValue},
                    312:    {"standby", "", 'A', HTML_ATTR_standby, L_BasicValue},
                    313:    {"start", "", 'A', HTML_ATTR_Start, L_BasicValue},
                    314:    {"style", "", 'A', HTML_ATTR_Style_, L_BasicValue},
                    315:    {"summary", "table", 'A', HTML_ATTR_summary, L_BasicValue},
                    316: 
                    317:    {"tabindex", "", 'A', HTML_ATTR_tabindex, L_BasicValue},
                    318:    {"target", "", 'A', HTML_ATTR_target_, L_BasicValue},
                    319:    {"text", "", 'A', HTML_ATTR_TextColor, L_BasicValue},
                    320:    {"title", "", 'A', HTML_ATTR_Title, L_BasicValue},
                    321:    {"type", "button", 'A', HTML_ATTR_Button_type, L_StrictValue},
                    322:    {"type", "li", 'A', HTML_ATTR_ItemStyle, L_BasicValue},
                    323:    {"type", "link", 'A', HTML_ATTR_Link_type, L_BasicValue},
                    324:    {"type", "a", 'A', HTML_ATTR_Link_type, L_BasicValue},
                    325:    {"type", "object", 'A', HTML_ATTR_Object_type, L_BasicValue},
                    326:    {"type", "ol", 'A', HTML_ATTR_NumberStyle, L_BasicValue},
                    327:    {"type", "param", 'A', HTML_ATTR_Param_type, L_BasicValue},
                    328:    {"type", "script", 'A', HTML_ATTR_content_type, L_StrictValue},
                    329:    {"type", "style", 'A', HTML_ATTR_Notation, L_StrictValue},
                    330:    {"type", "ul", 'A', HTML_ATTR_BulletStyle, L_BasicValue},
                    331:    {"type", "", SPACE, DummyAttribute, L_BasicValue},
                    332: 
                    333:    {"usemap", "", 'A', HTML_ATTR_USEMAP, L_BasicValue},
                    334: 
                    335:    {"valign", "tbody", 'A', HTML_ATTR_Row_valign, L_StrictValue},
                    336:    {"valign", "td", 'A', HTML_ATTR_Cell_valign, L_StrictValue},
                    337:    {"valign", "tfoot", 'A', HTML_ATTR_Row_valign, L_StrictValue},
                    338:    {"valign", "th", 'A', HTML_ATTR_Cell_valign, L_StrictValue},
                    339:    {"valign", "thead", 'A', HTML_ATTR_Row_valign, L_StrictValue},
                    340:    {"valign", "tr", 'A', HTML_ATTR_Row_valign, L_StrictValue},
                    341:    {"value", "li", 'A', HTML_ATTR_ItemValue, L_BasicValue},
                    342:    {"value", "param", 'A', HTML_ATTR_Param_value, L_BasicValue},
                    343:    {"value", "", 'A', HTML_ATTR_Value_, L_BasicValue},
                    344:    {"valuetype", "param", 'A', HTML_ATTR_valuetype, L_BasicValue},
                    345:    {"version", "", 'A', 0, L_BasicValue},
                    346:    {"vlink", "body", 'A', HTML_ATTR_VisitedLinkColor, L_TransitionalValue},
                    347:    {"vspace", "", 'A', HTML_ATTR_vspace, L_TransitionalValue},
                    348: 
                    349:    {"width", "applet", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    350:    {"width", "col", 'A', HTML_ATTR_Width__, L_StrictValue},
                    351:    {"width", "colgroup", 'A', HTML_ATTR_Width__, L_StrictValue},
1.20      cvs       352:    {"width", "embed", 'A', HTML_ATTR_Width__, L_TransitionalValue},
1.16      cvs       353:    {"width", "hr", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    354:    {"width", "iframe", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    355:    {"width", "image", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    356:    {"width", "img", 'A', HTML_ATTR_Width__, L_BasicValue},
                    357:    {"width", "object", 'A', HTML_ATTR_Width__, L_BasicValue},
                    358:    {"width", "pre", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    359:    {"width", "table", 'A', HTML_ATTR_Width__, L_StrictValue},
                    360:    {"width", "td", 'A', HTML_ATTR_Width__, L_TransitionalValue},
                    361:    {"width", "th", 'A', HTML_ATTR_Width__, L_TransitionalValue},
1.1       cvs       362: 
1.16      cvs       363:    {"xml:space", "", 'A', HTML_ATTR_xml_space, L_BasicValue},
1.6       cvs       364: 
1.16      cvs       365:    {"zzghost", "", 'A', HTML_ATTR_Ghost_restruct, L_BasicValue},
                    366:    {"", "", EOS, 0, L_OtherValue}              /* Last entry. Mandatory */
1.1       cvs       367: };
                    368: 
1.9       cvs       369: /* Mapping table of Xhtml entities */
                    370: XmlEntity XhtmlEntityTable[] =
                    371: {
                    372: /* This table MUST be in alphabetical order */
1.11      cvs       373: {"AElig", 198},   /* latin capital letter AE = */ 
1.10      cvs       374:                         /* latin capital ligature AE, U+00C6 ISOlat1 */
1.11      cvs       375: {"Aacute", 193},  /* latin capital letter A with acute, U+00C1 ISOlat1 */
                    376: {"Acirc", 194},   /* latin capital letter A with circumflex, U+00C2 ISOlat1 */
                    377: {"Agrave", 192},  /* latin capital letter A with grave = */
1.10      cvs       378:                         /* latin capital letter A grave, U+00C0 ISOlat1 */
1.11      cvs       379: {"Alpha", 913},   /* greek capital letter alpha, U+0391 */
                    380: {"Aring", 197},   /* latin capital letter A with ring above = */ 
1.10      cvs       381:                         /* latin capital letter A ring, U+00C5 ISOlat1 */
1.11      cvs       382: {"Atilde", 195},  /* latin capital letter A with tilde, U+00C3 ISOlat1 */
                    383: {"Auml", 196},    /* latin capital letter A with diaeresis, U+00C4 ISOlat1 */
                    384: {"Beta", 914},    /* greek capital letter beta, U+0392 */
                    385: {"Ccedil", 199},  /* latin capital letter C with cedilla, U+00C7 ISOlat1 */
                    386: {"Chi", 935},     /* greek capital letter chi, U+03A7 */
                    387: {"Dagger", 8225}, /* double dagger, U+2021 ISOpub */
                    388: {"Delta", 916},   /* greek capital letter delta, U+0394 ISOgrk3 */
                    389: {"ETH", 208},  /* latin capital letter ETH, U+00D0 ISOlat1 */
                    390: {"Eacute", 201},  /* latin capital letter E with acute, U+00C9 ISOlat1 */
                    391: {"Ecirc", 202},   /* latin capital letter E with circumflex, U+00CA ISOlat1 */
                    392: {"Egrave", 200},  /* latin capital letter E with grave, U+00C8 ISOlat1 */
                    393: {"Epsilon", 917}, /* greek capital letter epsilon, U+0395 */
                    394: {"Eta", 919},     /* greek capital letter eta, U+0397 */
                    395: {"Euml", 203},    /* latin capital letter E with diaeresis, U+00CB ISOlat1 */
                    396: {"Gamma", 915},   /* greek capital letter gamma, U+0393 ISOgrk3 */
                    397: {"Iacute", 205},  /* latin capital letter I with acute, U+00CD ISOlat1 */
                    398: {"Icirc", 206},   /* latin capital letter I with circumflex, U+00CE ISOlat1 */
                    399: {"Igrave", 204},  /* latin capital letter I with grave, U+00CC ISOlat1 */
                    400: {"Iota", 921},    /* greek capital letter iota, U+0399 */
                    401: {"Iuml", 207},    /* latin capital letter I with diaeresis, U+00CF ISOlat1 */
                    402: {"Kappa", 922},   /* greek capital letter kappa, U+039A */
                    403: {"Lambda", 923},  /* greek capital letter lambda, U+039B ISOgrk3 */
                    404: {"Mu", 924},      /* greek capital letter mu, U+039C */
                    405: {"Ntilde", 209},  /* latin capital letter N with tilde, U+00D1 ISOlat1 */
                    406: {"Nu", 925},      /* greek capital letter nu, U+039D */
                    407: {"OElig", 338},   /* latin capital ligature OE, U+0152 ISOlat2 */
                    408: {"Oacute", 211},  /* latin capital letter O with acute, U+00D3 ISOlat1 */
                    409: {"Ocirc", 212},   /* latin capital letter O with circumflex, U+00D4 ISOlat1 */
                    410: {"Ograve", 210},  /* latin capital letter O with grave, U+00D2 ISOlat1 */
                    411: {"Omega", 937},   /* greek capital letter omega, U+03A9 ISOgrk3 */
                    412: {"Omicron", 927}, /* greek capital letter omicron, U+039F */
                    413: {"Oslash", 216},  /* latin capital letter O with stroke = */ 
1.10      cvs       414:                         /* latin capital letter O slash, U+00D8 ISOlat1 */
1.11      cvs       415: {"Otilde", 213},  /* latin capital letter O with tilde, U+00D5 ISOlat1 */
                    416: {"Ouml", 214},    /* latin capital letter O with diaeresis, U+00D6 ISOlat1 */
                    417: {"Phi", 934},     /* greek capital letter phi, U+03A6 ISOgrk3 */
                    418: {"Pi", 928},      /* greek capital letter pi, U+03A0 ISOgrk3 */
                    419: {"Prime", 8243},  /* double prime = seconds = inches, U+2033 ISOtech */
                    420: {"Psi", 936},     /* greek capital letter psi, U+03A8 ISOgrk3 */
                    421: {"Rho", 929},     /* greek capital letter rho, U+03A1 */
                    422: {"Scaron", 352},  /* latin capital letter S with caron, U+0160 ISOlat2 */
                    423: {"Sigma", 931},   /* greek capital letter sigma, U+03A3 ISOgrk3 */
                    424: {"THORN", 222},   /* latin capital letter THORN, U+00DE ISOlat1 */
                    425: {"Tau", 932},     /* greek capital letter tau, U+03A4 */
                    426: {"Theta", 920},   /* greek capital letter theta, U+0398 ISOgrk3 */
                    427: {"Uacute", 218},  /* latin capital letter U with acute, U+00DA ISOlat1 */
                    428: {"Ucirc", 219},   /* latin capital letter U with circumflex, U+00DB ISOlat1 */
                    429: {"Ugrave", 217},  /* latin capital letter U with grave, U+00D9 ISOlat1 */
                    430: {"Upsilon", 933}, /* greek capital letter upsilon, U+03A5 ISOgrk3 */
                    431: {"Uuml", 220},    /* latin capital letter U with diaeresis, U+00DC ISOlat1 */
                    432: {"Xi", 926},      /* greek capital letter xi, U+039E ISOgrk3 */
                    433: {"Yacute", 221},  /* latin capital letter Y with acute, U+00DD ISOlat1 */
                    434: {"Yuml", 376},    /* latin capital letter Y with diaeresis, U+0178 ISOlat2 */
                    435: {"Zeta", 918},    /* greek capital letter zeta, U+0396 */
                    436: {"aacute", 225},  /* latin small letter a with acute, U+00E1 ISOlat1 */
                    437: {"acirc", 226},   /* latin small letter a with circumflex, U+00E2 ISOlat1 */
                    438: {"acute", 180},   /* acute accent = spacing acute, U+00B4 ISOdia */
                    439: {"aelig", 230},   /* latin small letter ae = */
1.10      cvs       440:                         /* latin small ligature ae, U+00E6 ISOlat1 */
1.11      cvs       441: {"agrave", 224},  /* latin small letter a with grave = */
1.10      cvs       442:                         /* latin small letter a grave, U+00E0 ISOlat1 */
1.11      cvs       443: {"alefsym", 8501},/* alef symbol = first transfinite cardinal, U+2135 NEW */
                    444: {"alpha", 945},   /* greek small letter alpha, U+03B1 ISOgrk3 */
                    445: {"amp", 38},      /* ampersand, U+0026 ISOnum */
                    446: {"and", 8743},    /* logical and = wedge, U+2227 ISOtech */
                    447: {"ang", 8736},    /* angle, U+2220 ISOamso */
                    448: {"aring", 229},   /* latin small letter a with ring above = */
1.10      cvs       449:                         /* latin small letter a ring, U+00E5 ISOlat1 */
1.11      cvs       450: {"asymp", 8776},  /* almost equal to = asymptotic to, U+2248 ISOamsr */
                    451: {"atilde", 227},  /* latin small letter a with tilde, U+00E3 ISOlat1 */
                    452: {"auml", 228},    /* latin small letter a with diaeresis, U+00E4 ISOlat1 */
                    453: {"bdquo", 8222},       /* double low-9 quotation mark, U+201E NEW */
                    454: {"beta", 946},    /* greek small letter beta, U+03B2 ISOgrk3 */
                    455: {"brvbar", 166},  /* broken bar = broken vertical bar, U+00A6 ISOnum */
                    456: {"bull", 8226},   /* bullet = black small circle, U+2022 ISOpub */
                    457: {"cap", 8745},    /* intersection = cap, U+2229 ISOtech */
                    458: {"ccedil", 231},  /* latin small letter c with cedilla, U+00E7 ISOlat1 */
                    459: {"cedil", 184},   /* cedilla = spacing cedilla, U+00B8 ISOdia */
                    460: {"cent", 162},    /* cent sign, U+00A2 ISOnum */
                    461: {"chi", 967},     /* greek small letter chi, U+03C7 ISOgrk3 */
                    462: {"circ", 710},    /* modifier letter circumflex accent, U+02C6 ISOpub */
                    463: {"clubs", 9827},  /* black club suit = shamrock, U+2663 ISOpub */
                    464: {"cong", 8773},   /* approximately equal to, U+2245 ISOtech */
                    465: {"copy", 169},    /* copyright sign, U+00A9 ISOnum */
                    466: {"crarr", 8629},  /* downwards arrow with corner leftwards = */
1.10      cvs       467:                         /* carriage return, U+21B5 NEW */
1.11      cvs       468: {"cup", 8746},    /* union cup, U+222A ISOtech */
                    469: {"curren", 164},  /* currency sign, U+00A4 ISOnum */
                    470: {"dArr", 8659},   /* downwards double arrow, U+21D3 ISOamsa */
                    471: {"dagger", 8224}, /* dagger, U+2020 ISOpub */
                    472: {"darr", 8595},   /* downwards arrow, U+2193 ISOnum */
                    473: {"deg", 176},     /* degree sign, U+00B0 ISOnum */
                    474: {"delta", 948},   /* greek small letter delta, U+03B4 ISOgrk3 */
                    475: {"diams", 9830},  /* black diamond suit, U+2666 ISOpub */
                    476: {"divide", 247},  /* division sign, U+00F7 ISOnum */
                    477: {"eacute", 233},  /* latin small letter e with acute, U+00E9 ISOlat1 */
                    478: {"ecirc", 234},   /* latin small letter e with circumflex, U+00EA ISOlat1 */
                    479: {"egrave", 232},  /* latin small letter e with grave, U+00E8 ISOlat1 */
                    480: {"empty", 8709},  /* empty set = null set = diameter, U+2205 ISOamso */
                    481: {"emsp", 8195},   /* em space, U+2003 ISOpub */
                    482: {"ensp", 8194},   /* en space, U+2002 ISOpub */
                    483: {"epsilon", 949}, /* greek small letter epsilon, U+03B5 ISOgrk3 */
                    484: {"equiv", 8801},  /* identical to, U+2261 ISOtech */
                    485: {"eta", 951},     /* greek small letter eta, U+03B7 ISOgrk3 */
                    486: {"eth", 240},     /* latin small letter eth, U+00F0 ISOlat1 */
                    487: {"euml", 235},    /* latin small letter e with diaeresis, U+00EB ISOlat1 */
                    488: {"euro", 8364},   /* euro sign, U+20AC NEW */
                    489: {"exist", 8707},  /* there exists, U+2203 ISOtech */
                    490: {"fnof", 402},    /* latin small f with hook = function = */
1.10      cvs       491:                         /* florin, U+0192 ISOtech */
1.11      cvs       492: {"forall", 8704}, /* for all, U+2200 ISOtech */
                    493: {"frac12", 189},  /* vulgar fraction one half = */
1.10      cvs       494:                         /*fraction one half, U+00BD ISOnum */
1.11      cvs       495: {"frac14", 188},  /* vulgar fraction one quarter = */
1.10      cvs       496:                         /* fraction one quarter, U+00BC ISOnum */
1.11      cvs       497: {"frac34", 190},  /* vulgar fraction three quarters = */
1.10      cvs       498:                         /* fraction three quarters, U+00BE ISOnum */
1.11      cvs       499: {"frasl", 8260},  /* fraction slash, U+2044 NEW */
                    500: {"gamma", 947},   /* greek small letter gamma, U+03B3 ISOgrk3 */
                    501: {"ge", 8805},     /* greater-than or equal to, U+2265 ISOtech */
                    502: {"gt", 62},       /* greater-than sign, U+003E ISOnum */
                    503: {"hArr", 8660},   /* left right double arrow, U+21D4 ISOamsa */
                    504: {"harr", 8596},   /* left right arrow, U+2194 ISOamsa */
                    505: {"hearts", 9829}, /* black heart suit = valentine, U+2665 ISOpub */
                    506: {"hellip", 8230}, /* horizontal ellipsis = three dot leader, U+2026 ISOpub */
                    507: {"hyphen", 173},  /* hyphen = discretionary hyphen, U+00AD ISOnum */
                    508: {"iacute", 237},  /* latin small letter i with acute, U+00ED ISOlat1 */
                    509: {"icirc", 238},   /* latin small letter i with circumflex, U+00EE ISOlat1 */
                    510: {"iexcl", 161},   /* inverted exclamation mark, U+00A1 ISOnum */
                    511: {"igrave", 236},  /* latin small letter i with grave, U+00EC ISOlat1 */
                    512: {"image", 8465},  /* blackletter capital I = imaginary part, U+2111 ISOamso */
                    513: {"infin", 8734},  /* infinity, U+221E ISOtech */
                    514: {"int", 8747},    /* integral, U+222B ISOtech */
                    515: {"iota", 953},    /* greek small letter iota, U+03B9 ISOgrk3 */
                    516: {"iquest", 191},  /* inverted question mark = */
1.10      cvs       517:                         /* turned question mark, U+00BF ISOnum */
1.11      cvs       518: {"isin", 8712},   /* element of, U+2208 ISOtech */
                    519: {"iuml", 239},    /* latin small letter i with diaeresis, U+00EF ISOlat1 */
                    520: {"kappa", 954},   /* greek small letter kappa, U+03BA ISOgrk3 */
                    521: {"lArr", 8656},   /* leftwards double arrow, U+21D0 ISOtech */
                    522: {"lambda", 955},  /* greek small letter lambda, U+03BB ISOgrk3 */
                    523: {"lang", 9001},   /* left-pointing angle bracket = bra, U+2329 ISOtech */
                    524: {"laquo", 171},   /* left-pointing double angle quotation mark = */
1.10      cvs       525:                         /* left pointing guillemet, U+00AB ISOnum */
1.11      cvs       526: {"larr", 8592},   /* leftwards arrow, U+2190 ISOnum */
                    527: {"lceil", 8968},  /* left ceiling = apl upstile, U+2308 ISOamsc */
                    528: {"ldquo", 8220},  /* left double quotation mark, U+201C ISOnum */
                    529: {"le", 8804},     /* less-than or equal to, U+2264 ISOtech */
                    530: {"lfloor", 8970}, /* left floor = apl downstile, U+230A ISOamsc */
                    531: {"lowast", 8727}, /* asterisk operator, U+2217 ISOtech */
                    532: {"loz", 9674},    /* lozenge, U+25CA ISOpub */
                    533: {"lrm", 8206},    /* left-to-right mark, U+200E NEW RFC 2070 */
                    534: {"lsaquo", 8249}, /* single left-pointing angle quotation mark, */
1.10      cvs       535:                         /* U+2039 ISO proposed */
1.11      cvs       536: {"lsquo", 8216},  /* left single quotation mark, U+2018 ISOnum */
                    537: {"lt", 60},       /* less-than sign, U+003C ISOnum */
                    538: {"macr", 175},    /* macron = spacing macron = overline = APL overbar, */
1.10      cvs       539:                         /* U+00AF ISOdia */
1.11      cvs       540: {"mdash", 8212},  /* em dash, U+2014 ISOpub */
                    541: {"micro", 181},   /* micro sign, U+00B5 ISOnum */
                    542: {"middot", 183},  /* middle dot = Georgian comma = */
1.10      cvs       543:                         /* Greek middle dot, U+00B7 ISOnum */
1.11      cvs       544: {"minus", 8722},  /* minus sign, U+2212 ISOtech */
                    545: {"mu", 956},      /* greek small letter mu, U+03BC ISOgrk3 */
                    546: {"nabla", 8711},  /* nabla = backward difference, U+2207 ISOtech */
                    547: {"nbsp", 160},    /* no-break space = non-breaking space, U+00A0 ISOnum */
                    548: {"ndash", 8211},  /* en dash, U+2013 ISOpub */
                    549: {"ne", 8800},     /* not equal to, U+2260 ISOtech */
                    550: {"ni", 8715},     /* contains as member, U+220B ISOtech */
                    551: {"not", 172},     /* not sign, U+00AC ISOnum */
                    552: {"notin", 8713},  /* not an element of, U+2209 ISOtech */
                    553: {"nsub", 8836},   /* not a subset of, U+2284 ISOamsn */
                    554: {"ntilde", 241},  /* latin small letter n with tilde, U+00F1 ISOlat1 */
                    555: {"nu", 957},      /* greek small letter nu, U+03BD ISOgrk3 */
                    556: {"oacute", 243},  /* latin small letter o with acute, U+00F3 ISOlat1 */
                    557: {"ocirc", 244},   /* latin small letter o with circumflex, U+00F4 ISOlat1 */
                    558: {"oelig", 339},   /* latin small ligature oe, U+0153 ISOlat2 */
                    559: {"ograve", 242},  /* latin small letter o with grave, U+00F2 ISOlat1 */
                    560: {"oline", 8254},  /* overline = spacing overscore, U+203E NEW */
                    561: {"omega", 969},   /* greek small letter omega, U+03C9 ISOgrk3 */
                    562: {"omicron", 959}, /* greek small letter omicron, U+03BF NEW */
                    563: {"oplus", 8853},  /* circled plus = direct sum, U+2295 ISOamsb */
                    564: {"or", 8744},     /* logical or = vee, U+2228 ISOtech */
                    565: {"ordf", 170},    /* feminine ordinal indicator, U+00AA ISOnum */
                    566: {"ordm", 186},    /* masculine ordinal indicator, U+00BA ISOnum */
                    567: {"oslash", 248},  /* latin small letter o with stroke, = */
1.10      cvs       568:                         /* latin small letter o slash, U+00F8 ISOlat1 */
1.11      cvs       569: {"otilde", 245},  /* latin small letter o with tilde, U+00F5 ISOlat1 */
                    570: {"otimes", 8855}, /* circled times = vector product, U+2297 ISOamsb */
                    571: {"ouml", 246},    /* latin small letter o with diaeresis, U+00F6 ISOlat1 */
                    572: {"para", 182},    /* pilcrow sign = paragraph sign, U+00B6 ISOnum */
                    573: {"part", 8706},   /* partial differential, U+2202 ISOtech */
                    574: {"permil", 8240}, /* per mille sign, U+2030 ISOtech */
                    575: {"perp", 8869},   /* up tack = orthogonal to = perpendicular, U+22A5 ISOtech */
                    576: {"phi", 966},     /* greek small letter phi, U+03C6 ISOgrk3 */
                    577: {"pi", 960},      /* greek small letter pi, U+03C0 ISOgrk3 */
                    578: {"piv", 982},     /* greek pi symbol, U+03D6 ISOgrk3 */
                    579: {"plusmn", 177},  /* plus-minus sign = plus-or-minus sign, U+00B1 ISOnum */
                    580: {"pound", 163},   /* pound sign, U+00A3 ISOnum */
                    581: {"prime", 8242},  /* prime = minutes = feet, U+2032 ISOtech */
                    582: {"prod", 8719},   /* n-ary product = product sign, U+220F ISOamsb */
                    583: {"prop", 8733},   /* proportional to, U+221D ISOtech */
                    584: {"psi", 968},     /* greek small letter psi, U+03C8 ISOgrk3 */
                    585: {"quot", 34},     /* quotation mark = APL quote, U+0022 ISOnum */
                    586: {"rArr", 8658},   /* rightwards double arrow, U+21D2 ISOtech */
                    587: {"radic", 8730},  /* square root = radical sign, U+221A ISOtech */
                    588: {"rang", 9002},   /* right-pointing angle bracket = ket, U+232A ISOtech */
                    589: {"raquo", 187},   /* right-pointing double angle quotation mark = */
1.10      cvs       590:                         /* right pointing guillemet, U+00BB ISOnum */
1.11      cvs       591: {"rarr", 8594},   /* rightwards arrow, U+2192 ISOnum */
                    592: {"rceil", 8969},  /* right ceiling, U+2309 ISOamsc */
                    593: {"rdquo", 8221},  /* right double quotation mark, U+201D ISOnum */
                    594: {"real", 8476},   /* blackletter capital R = real part symbol, U+211C ISOamso */
                    595: {"reg", 174},     /* registered sign = registered trade mark sign, */
1.10      cvs       596:                         /* U+00AE ISOnum */
1.11      cvs       597: {"rfloor", 8971}, /* right floor, U+230B ISOamsc */
                    598: {"rho", 961},     /* greek small letter rho, U+03C1 ISOgrk3 */
                    599: {"rlm", 8207},    /* right-to-left mark, U+200F NEW RFC 2070 */
                    600: {"rsaquo", 8250}, /* single right-pointing angle quotation mark, */
1.10      cvs       601:                         /* U+203A ISO proposed */
1.11      cvs       602: {"rsquo", 8217},  /* right single quotation mark, U+2019 ISOnum */
                    603: {"sbquo", 8218},  /* single low-9 quotation mark, U+201A NEW */
                    604: {"scaron", 353},  /* latin small letter s with caron, U+0161 ISOlat2 */
                    605: {"sdot", 8901},   /* dot operator, U+22C5 ISOamsb */
                    606: {"sect", 167},    /* section sign, U+00A7 ISOnum */
                    607: {"shy", 173},     /* soft hyphen = discretionary hyphen, U+00AD ISOnum */
                    608: {"sigma", 963},   /* greek small letter sigma, U+03C3 ISOgrk3 */
                    609: {"sigmaf", 962},  /* greek small letter final sigma, U+03C2 ISOgrk3 */
                    610: {"sim", 8764},    /* tilde operator = varies with = similar to, U+223C ISOtech */
                    611: {"spades", 9824}, /* black spade suit, U+2660 ISOpub */
                    612: {"sub", 8834},    /* subset of, U+2282 ISOtech */
                    613: {"sube", 8838},   /* subset of or equal to, U+2286 ISOtech */
                    614: {"sum", 8721},    /* n-ary sumation, U+2211 ISOamsb */
                    615: {"sup", 8835},    /* superset of, U+2283 ISOtech */
                    616: {"sup1", 185},    /* superscript one = superscript digit one, U+00B9 ISOnum */
                    617: {"sup2", 178},    /* superscript two = superscript digit two = squared, */
1.10      cvs       618:                         /* U+00B2 ISOnum */
1.11      cvs       619: {"sup3", 179},    /* superscript three = superscript digit three = cubed, */
1.10      cvs       620:                         /* U+00B3 ISOnum */
1.11      cvs       621: {"supe", 8839},   /* superset of or equal to, U+2287 ISOtech */
                    622: {"szlig", 223},   /* latin small letter sharp s = ess-zed, U+00DF ISOlat1 */
                    623: {"tau", 964},     /* greek small letter tau, U+03C4 ISOgrk3 */
                    624: {"there4", 8756}, /* therefore, U+2234 ISOtech */
                    625: {"theta", 952},   /* greek small letter theta, U+03B8 ISOgrk3 */
                    626: {"thetasym", 977},/* greek small letter theta symbol, U+03D1 NEW */
                    627: {"thinsp", 8201}, /* thin space, U+2009 ISOpub */
                    628: {"thorn", 254},   /* latin small letter thorn with, U+00FE ISOlat1 */
                    629: {"tilde", 732},   /* small tilde, U+02DC ISOdia */
                    630: {"times", 215},   /* multiplication sign, U+00D7 ISOnum */
                    631: {"trade", 8482},  /* trade mark sign, U+2122 ISOnum */
                    632: {"uArr", 8657},   /* upwards double arrow, U+21D1 ISOamsa */
                    633: {"uacute", 250},  /* latin small letter u with acute, U+00FA ISOlat1 */
                    634: {"uarr", 8593},   /* upwards arrow, U+2191 ISOnum*/
                    635: {"ucirc", 251},   /* latin small letter u with circumflex, U+00FB ISOlat1 */
                    636: {"ugrave", 249}, /* latin small letter u with grave, U+00F9 ISOlat1 */
                    637: {"uml", 168},     /* diaeresis = spacing diaeresis, U+00A8 ISOdia */
                    638: {"upsih", 978},   /* greek upsilon with hook symbol, U+03D2 NEW */
                    639: {"upsilon", 965}, /* greek small letter upsilon, U+03C5 ISOgrk3 */
                    640: {"uuml", 252},    /* latin small letter u with diaeresis, U+00FC ISOlat1 */
                    641: {"weierp", 8472}, /* script capital P = power set = Weierstrass p, */
1.10      cvs       642:                         /* U+2118 ISOamso */
1.11      cvs       643: {"xi", 958},      /* greek small letter xi, U+03BE ISOgrk3 */
                    644: {"yacute", 253},  /* latin small letter y with acute, U+00FD ISOlat1 */
                    645: {"yen", 165},     /* yen sign = yuan sign, U+00A5 ISOnum */
                    646: {"yuml", 255},    /* latin small letter y with diaeresis, U+00FF ISOlat1 */
                    647: {"zeta", 950},    /* greek small letter zeta, U+03B6 ISOgrk3 */
                    648: {"zwj", 8205},    /* zero width joiner, U+200D NEW RFC 2070 */
                    649: {"zwnj", 8204},   /* zero width non-joiner, U+200C NEW RFC 2070 */
                    650: {"zzzz", 0}    /* this last entry is required */
1.9       cvs       651: };

Webmaster