Diff for /Amaya/amaya/HTML.S between versions 1.211 and 1.212

version 1.211, 2005/10/06 08:43:29 version 1.212, 2005/10/26 13:28:30
Line 540  STRUCT Line 540  STRUCT
         Basic_Set;          Basic_Set;
   
   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; ALT;
                 { name  value   disabled  readonly }            { name  value   disabled  readonly alt }
                   Area_Size = Integer; MaxLength = Integer;                    Area_Size = Integer; MaxLength = Integer;
                 { size                 maxlength }                  { size                 maxlength }
                   IntAreaSize = Integer;                    IntAreaSize = Integer;
Line 552  STRUCT Line 552  STRUCT
                 { onfocus  onblur  onselect  onchange }                  { onfocus  onblur  onselect  onchange }
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input);
         Password_Input                                  { INPUT / PASSWORD }  
            (ATTR  NAME; Value_; disabled; readonly;      Password_Input                                      { INPUT / PASSWORD }
                 { name  value   disabled  readonly }             (ATTR  NAME; Value_; disabled; readonly; ALT;
                   { name  value   disabled  readonly alt}
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
                   tabindex; accesskey;                    tabindex; accesskey;
Line 563  STRUCT Line 564  STRUCT
                 { onfocus  onblur  onselect  onchange }                  { onfocus  onblur  onselect  onchange }
                   Default_Value) =                    Default_Value) =
                 Input_Text  - (Input);                  Input_Text  - (Input);
         File_Input                                      { INPUT / FILE }  
            (ATTR  NAME; Value_; disabled; readonly;      File_Input                                  { INPUT / FILE }
                 { name  value   disabled  readonly }             (ATTR  NAME; Value_; disabled; readonly; ALT;
                   { name  value   disabled  readonly alt }
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
                   tabindex; accesskey;                    tabindex; accesskey;
Line 574  STRUCT Line 576  STRUCT
                 { onfocus  onblur }                  { onfocus  onblur }
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input);
         Checkbox_Input                                  { INPUT / CHECKBOX }  
            (ATTR  NAME; Value_; Checked = Yes_, No_;      Checkbox_Input                                      { INPUT / CHECKBOX }
                 { name  value   checked }             (ATTR  NAME; Value_; Checked = Yes_, No_; ALT;
                   { name  value   checked alt }
                   disabled; readonly;                    disabled; readonly;
                 { disabled  readonly }                  { disabled  readonly }
                   tabindex; accesskey; onfocus; onblur;                    tabindex; accesskey; onfocus; onblur;
                 { tabindex  accesskey  onfocus  onblur }                  { tabindex  accesskey  onfocus  onblur }
                   DefaultChecked = Yes_, No_) =                    DefaultChecked = Yes_, No_) =
                 CONSTANT C_Empty with Checked ?= No_;                  CONSTANT C_Empty with Checked ?= No_;
         Radio_Input                                     { INPUT / RADIO }  
            (ATTR  NAME; Value_; Checked; disabled;      Radio_Input                                 { INPUT / RADIO }
                 { name  value   checked  disabled }             (ATTR  NAME; Value_; Checked; disabled; ALT;
                   { name  value   checked  disabled alt }
                   readonly; tabindex; accesskey;                    readonly; tabindex; accesskey;
                 { readonly  tabindex  accesskey }                  { readonly  tabindex  accesskey }
                   onfocus; onblur;                    onfocus; onblur;
Line 593  STRUCT Line 597  STRUCT
                   DefaultChecked) =                    DefaultChecked) =
                 CONSTANT C_Empty with Checked ?= No_,                  CONSTANT C_Empty with Checked ?= No_,
                                       NAME ?= 'radio';                                        NAME ?= 'radio';
         Submit_Input                                    { INPUT / SUBMIT }  
            (ATTR  NAME; Value_; disabled; readonly;      Submit_Input                                        { INPUT / SUBMIT }
                 { name  value   disabled; readonly }             (ATTR  NAME; Value_; disabled; readonly; ALT;
                   { name  value   disabled; readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
                 BEGIN      BEGIN
                 CONSTANT C_Empty;      CONSTANT C_Empty;
                 END with Value_ ?= 'Submit';      END with Value_ ?= 'Submit';
         Reset_Input                                     { INPUT / RESET }  
            (ATTR  NAME; Value_; disabled; readonly;      Reset_Input                                 { INPUT / RESET }
                 { name  value   disabled  readonly }             (ATTR  NAME; Value_; disabled; readonly; ALT;
                   { name  value   disabled  readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
Line 614  STRUCT Line 620  STRUCT
                 CONSTANT C_Empty;                  CONSTANT C_Empty;
                 END  - (Input) with NAME ?= 'Reset',                  END  - (Input) with NAME ?= 'Reset',
                                     Value_ ?= 'Reset';                                      Value_ ?= 'Reset';
         Button_Input                                    { INPUT / BUTTON }  
            (ATTR  NAME; Value_; disabled; readonly;      Button_Input                                        { INPUT / BUTTON }
                 { name  value   disabled  readonly }             (ATTR  NAME; Value_; disabled; readonly; ALT;
                   { name  value   disabled  readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
Line 625  STRUCT Line 632  STRUCT
                 CONSTANT C_Empty;                  CONSTANT C_Empty;
                 END;                  END;
   
         Hidden_Input                                    { INPUT / HIDDEN }      Hidden_Input                                        { INPUT / HIDDEN }
            (ATTR  NAME; Value_; disabled;             (ATTR  NAME; Value_; disabled; ALT;
                 { name  value   disabled }                  { name  value   disabled alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
                 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;
Line 650  STRUCT Line 657  STRUCT
                   accesskey; onfocus; onblur) =                    accesskey; onfocus; onblur) =
                 { accesskey  onfocus  onblur }                  { accesskey  onfocus  onblur }
                 Basic_Set;                  Basic_Set;
         Option_Menu;                                    { SELECT }  
         Text_Area;                                      { TEXTAREA }      Option_Menu;                                        { SELECT }
       Text_Area;                                  { TEXTAREA }
         END;          END;
   
   Input_Text = BEGIN    Input_Text = BEGIN
         Inserted_Text = TEXT;    Inserted_Text = TEXT;
         END;          END;
   
   Table_                                                        { TABLE }    Table_                                                        { TABLE }

Removed from v.1.211  
changed lines
  Added in v.1.212


Webmaster