Diff for /Amaya/amaya/HTML.S between versions 1.201 and 1.202

version 1.201, 2004/11/05 08:44:10 version 1.202, 2004/11/15 09:19:46
Line 145  STRUCT Line 145  STRUCT
         Address;                                                { ADDRESS }          Address;                                                { ADDRESS }
         PICTURE                                                 { IMG }          PICTURE                                                 { IMG }
             (ATTR !SRC = Text; !ALT = Text; longdesc = Text;              (ATTR !SRC = Text; !ALT = Text; longdesc = Text;
                 { !src         !alt         longdesc }                  {  src          alt         longdesc }
                   Height_ = Text; Width__ = Text;                    Height_ = Text; Width__ = Text;
                 { height          width }                  { height          width }
                   IntWidthPercent = Integer; IntWidthPxl = Integer;                    IntWidthPercent = Integer; IntWidthPxl = Integer;
Line 497  STRUCT Line 497  STRUCT
         END;          END;
   
   Option_Menu                                                   { SELECT }    Option_Menu                                                   { SELECT }
      (ATTR !NAME; MenuSize = Integer; Multiple = Yes_;       (ATTR  NAME; MenuSize = Integer; Multiple = Yes_;
          {  name  size                multiple }           {  name  size                multiple }
             disabled = Yes_; tabindex; onfocus; onblur;              disabled = Yes_; tabindex; onfocus; onblur;
           { disabled         tabindex  onfocus  onblur}            { disabled         tabindex  onfocus  onblur}
Line 508  STRUCT Line 508  STRUCT
   Option                                                        { OPTION }    Option                                                        { OPTION }
      (ATTR Selected = Yes_; DefaultSelected = Yes_; ShowMe = Yes_;       (ATTR Selected = Yes_; DefaultSelected = Yes_; ShowMe = Yes_;
          { selected }           { selected }
            disabled; label = Text; !Value_ = Text) =             disabled; label = Text; Value_ = Text) =
          { disabled  label          value }           { disabled  label         value }
         TEXT;          TEXT;
   
   OptGroup                                                      { OPTGROUP }    OptGroup                                                      { OPTGROUP }
Line 540  STRUCT Line 540  STRUCT
   
   Input = CASE OF                                       { formctrl }    Input = CASE OF                                       { formctrl }
         Text_Input                                      { INPUT / TEXT }          Text_Input                                      { INPUT / TEXT }
            (ATTR !NAME; Value_; disabled; readonly;             (ATTR  NAME; Value_; disabled; readonly;
                 { name  value   disabled  readonly }                  { name  value   disabled  readonly }
                   Area_Size = Integer; MaxLength = Integer;                    Area_Size = Integer; MaxLength = Integer;
                 { size                 maxlength }                  { size                 maxlength }
Line 552  STRUCT Line 552  STRUCT
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input);
         Password_Input                                  { INPUT / PASSWORD }          Password_Input                                  { INPUT / PASSWORD }
            (ATTR !NAME; Value_; disabled; readonly;             (ATTR  NAME; Value_; disabled; readonly;
                 { name  value   disabled  readonly }                  { name  value   disabled  readonly }
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
Line 563  STRUCT Line 563  STRUCT
                   Default_Value) =                    Default_Value) =
                 Input_Text  - (Input);                  Input_Text  - (Input);
         File_Input                                      { INPUT / FILE }          File_Input                                      { INPUT / FILE }
            (ATTR !NAME; Value_; disabled; readonly;             (ATTR  NAME; Value_; disabled; readonly;
                 { name  value   disabled  readonly }                  { name  value   disabled  readonly }
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
Line 574  STRUCT Line 574  STRUCT
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input);
         Checkbox_Input                                  { INPUT / CHECKBOX }          Checkbox_Input                                  { INPUT / CHECKBOX }
            (ATTR !NAME; Value_; Checked = Yes_, No_;             (ATTR  NAME; Value_; Checked = Yes_, No_;
                 { name  value   checked }                  { name  value   checked }
                   disabled; readonly;                    disabled; readonly;
                 { disabled  readonly }                  { disabled  readonly }
Line 583  STRUCT Line 583  STRUCT
                   DefaultChecked = Yes_, No_) =                    DefaultChecked = Yes_, No_) =
                 CONSTANT C_Empty with Checked ?= No_;                  CONSTANT C_Empty with Checked ?= No_;
         Radio_Input                                     { INPUT / RADIO }          Radio_Input                                     { INPUT / RADIO }
            (ATTR !NAME; !Value_; Checked; disabled;             (ATTR  NAME; Value_; Checked; disabled;
                 { name  value    checked   disabled }                  { name  value   checked  disabled }
                   readonly; tabindex; accesskey;                    readonly; tabindex; accesskey;
                 { readonly  tabindex  accesskey }                  { readonly  tabindex  accesskey }
                   onfocus; onblur;                    onfocus; onblur;
Line 614  STRUCT Line 614  STRUCT
                 END  - (Input) with NAME ?= 'Reset',                  END  - (Input) with NAME ?= 'Reset',
                                     Value_ ?= 'Reset';                                      Value_ ?= 'Reset';
         Button_Input                                    { INPUT / BUTTON }          Button_Input                                    { INPUT / BUTTON }
            (ATTR !NAME; Value_; disabled; readonly;             (ATTR  NAME; Value_; disabled; readonly;
                 { name  value   disabled  readonly }                  { name  value   disabled  readonly }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
Line 625  STRUCT Line 625  STRUCT
                 END;                  END;
   
         Hidden_Input                                    { INPUT / HIDDEN }          Hidden_Input                                    { INPUT / HIDDEN }
            (ATTR !NAME; Value_; disabled;             (ATTR  NAME; Value_; disabled;
                 { name  value   disabled }                  { name  value   disabled }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
Line 634  STRUCT Line 634  STRUCT
                 CONSTANT C_Empty;                  CONSTANT C_Empty;
   
         BUTTON_                                         { BUTTON }          BUTTON_                                         { BUTTON }
            (ATTR !NAME; Value_;             (ATTR  NAME; Value_;
                 { name  value }                  { name  value }
                   Button_type = button, submit, reset;                    Button_type = button, submit, reset;
                 { type          button  submit  reset }                  { type          button  submit  reset }

Removed from v.1.201  
changed lines
  Added in v.1.202


Webmaster