Diff for /Amaya/amaya/HTML.S between versions 1.196 and 1.197

version 1.196, 2004/10/05 12:44:12 version 1.197, 2004/10/06 16:36:13
Line 80  STRUCT Line 80  STRUCT
         END + (Object, STYLE_, SCRIPT_, META, LINK);          END + (Object, STYLE_, SCRIPT_, META, LINK);
   
   STYLE_                                                        { STYLE }    STYLE_                                                        { STYLE }
      (ATTR Notation = Text; media = Text) =       (ATTR !Notation = Text; media = Text) =
          { type             media }           {  type             media }
          TEXT - (STYLE_, SCRIPT_, META, LINK);           TEXT - (STYLE_, SCRIPT_, META, LINK);
   
   SCRIPT_                                                       { SCRIPT }    SCRIPT_                                                       { SCRIPT }
      (ATTR charset = Text; content_type = Text;       (ATTR charset = Text; !content_type = Text;
          { charset          type }           { charset          type }
            script_language = Text; script_src = Text;             script_language = Text; script_src = Text;
          { language                src }           { language                src }
Line 96  STRUCT Line 96  STRUCT
   META                                                          { META }    META                                                          { META }
      (ATTR http_equiv = Text;       (ATTR http_equiv = Text;
          { http-equiv }           { http-equiv }
            meta_name = Text; meta_content = Text;             meta_name = Text; !meta_content = Text;
          { name              content }           { name               content }
            scheme = Text) =             scheme = Text) =
          { scheme }           { scheme }
         CONSTANT C_Empty;          CONSTANT C_Empty;
Line 303  STRUCT Line 303  STRUCT
         END;          END;
   
   BaseFont                                                      { BASEFONT }    BaseFont                                                      { BASEFONT }
      (ATTR BaseFontSize = Integer; BaseFontColor = Text;       (ATTR !BaseFontSize = Integer; BaseFontColor = Text;
          { size                    color }           {  size                    color }
            BaseFontFace = Text) =             BaseFontFace = Text) =
          { face }           { face }
         CONSTANT C_Empty;          CONSTANT C_Empty;
Line 354  STRUCT Line 354  STRUCT
          { codebase         archive         code }           { codebase         archive         code }
            object = Text; alt = Text; applet_name = Text;             object = Text; alt = Text; applet_name = Text;
          { object         alt         name }           { object         alt         name }
            Width__; IntWidthPercent; IntWidthPxl;             !Width__; IntWidthPercent; IntWidthPxl;
            Height_; IntHeightPercent; IntHeightPxl;           {  width }
          { width    height }             !Height_; IntHeightPercent; IntHeightPxl;
            {  height }
            Alignment; hspace; vspace) =             Alignment; hspace; vspace) =
          { align      hspace  vspace }           { align      hspace  vspace }
         LIST OF (Applet_Content = CASE OF          LIST OF (Applet_Content = CASE OF
Line 364  STRUCT Line 365  STRUCT
                                   Basic_Set;                                    Basic_Set;
                                   END);                                    END);
   Parameter                                                     { PARAM }    Parameter                                                     { PARAM }
      (ATTR Param_name = Text; Param_value = Text;       (ATTR !Param_name = Text; Param_value = Text;
          { name               value }           { name               value }
            valuetype = data_, ref, object_;             valuetype = data_, ref, object_;
          { valuetype   data   ref  object }           { valuetype   data   ref  object }
Line 518  STRUCT Line 519  STRUCT
         LIST OF (Option);          LIST OF (Option);
   
   Text_Area                                                     { TEXTAREA }    Text_Area                                                     { TEXTAREA }
      (ATTR !NAME; Rows = Integer; Columns = Integer;       (ATTR NAME; !Rows = Integer; !Columns = Integer;
          {  name  rows            cols }           { name   rows             cols }
            disabled; readonly = Yes_; tabindex; accesskey;             disabled; readonly = Yes_; tabindex; accesskey;
          { disabled  readonly         tabindex  accesskey  }           { disabled  readonly         tabindex  accesskey  }
            onfocus; onblur; onselect = Text; onchange;             onfocus; onblur; onselect = Text; onchange;
Line 657  STRUCT Line 658  STRUCT
         Inserted_Text = TEXT;          Inserted_Text = TEXT;
         END;          END;
   
   Table_                                                                { TABLE }    Table_                                                        { TABLE }
      (ATTR summary = Text; Width__; Border = Integer;       (ATTR summary = Text; Width__; Border = Integer;
          { summary         width    border }           { summary         width    border }
            frame = void, above, below, hsides, lhs, rhs,             frame = void, above, below, hsides, lhs, rhs,
Line 770  STRUCT Line 771  STRUCT
         LIST OF (Element);          LIST OF (Element);
   
   MAP                                                           { MAP }    MAP                                                           { MAP }
      (ATTR NAME; Ref_IMG = REFERENCE(Any)) =       (ATTR !NAME; Ref_IMG = REFERENCE(Any)) =
          { name linked to an image}           { name linked to an image}
         LIST OF (ElemOrArea = CASE OF Element; AREA; END);          LIST OF (ElemOrArea = CASE OF Element; AREA; END);
   
   map                                                           { MAP }    map                                                           { MAP }
      (ATTR NAME) =       (ATTR !NAME) =
          { name }           { name }
         LIST OF (Element);          LIST OF (Element);
   
   AREA                                                          { AREA }    AREA                                                          { AREA }
      (ATTR shape; coords; HREF_; target_; nohref = Yes_; ALT;       (ATTR shape; coords; HREF_; target_; nohref = Yes_; !ALT;
          { shape  coords  href   target   nohref         alt }           { shape  coords  href   target   nohref          alt }
            tabindex; accesskey; onfocus; onblur;             tabindex; accesskey; onfocus; onblur;
          { tabindex  accesskey  onfocus  onblur }           { tabindex  accesskey  onfocus  onblur }
            x_coord = Integer; y_coord = Integer; IntWidthPxl;             x_coord = Integer; y_coord = Integer; IntWidthPxl;

Removed from v.1.196  
changed lines
  Added in v.1.197


Webmaster