Diff for /Amaya/amaya/HTML.S between versions 1.227 and 1.228

version 1.227, 2006/12/01 15:37:54 version 1.228, 2007/02/23 13:53:35
Line 144  STRUCT Line 144  STRUCT
          { text              link }           { text              link }
            VisitedLinkColor = Text; ActiveLinkColor = Text) =             VisitedLinkColor = Text; ActiveLinkColor = Text) =
          { vlink                    alink }           { vlink                    alink }
         LIST OF (Element) + (INS, DEL);          LIST OF (Element);
   
   Element = CASE OF                                                { block }    Element = CASE OF                                                { block }
         Paragraph;                                                { P }          Paragraph;                                                { P }
Line 167  STRUCT Line 167  STRUCT
         Object;                                                        { OBJECT }          Object;                                                        { OBJECT }
         Applet;                                                        { APPLET }          Applet;                                                        { APPLET }
         MathML;                                                  { MATH }          MathML;                                                  { MATH }
   SVG;                                  { SVG }          SVG;                                  { SVG }
   XLink;                                                        { Annotations }          XLink;                                                        { Annotations }
         External_Object                  { IMG type=svg}          External_Object                  { IMG type=svg}
             (ATTR SRC;              (ATTR SRC;
                 { src }                  { src }
Line 209  STRUCT Line 209  STRUCT
                 BEGIN                  BEGIN
                 Embed_Content;                  Embed_Content;
                 END;                  END;
           INS;
           DEL;
           Template;           { XTiger }
         END;          END;
   
         HTMLfragment = LIST OF (Element);          HTMLfragment = LIST OF (Element);
Line 294  STRUCT Line 297  STRUCT
         Subscript = Basic_Set;                                        { SUB }          Subscript = Basic_Set;                                        { SUB }
         Superscript = Basic_Set;                                { SUP }          Superscript = Basic_Set;                                { SUP }
         Span = Basic_Set;                                        { SPAN }          Span = Basic_Set;                                        { SPAN }
   map; MAP;                                                { MAP }          map; MAP;                                                { MAP }
         BDO (ATTR !dir) = Basic_Set;                                { BDO }          BDO (ATTR !dir) = Basic_Set;                                { BDO }
         Object;                                                        { OBJECT }          Object;                                                        { OBJECT }
         Embed_;                                                        { EMBED }          Embed_;                                                        { EMBED }
Line 302  STRUCT Line 305  STRUCT
         ruby;                                                   { ruby }          ruby;                                                   { ruby }
         MathML;                                                        { MATH }          MathML;                                                        { MATH }
         XLink;                                                        { Annotations }          XLink;                                                        { Annotations }
   Template;           { XTiger }          Template;           { XTiger }
         External_Object;                                        { External Object }          External_Object;                                        { External Object }
         END;          END;
   
Line 344  STRUCT Line 347  STRUCT
         Cite = Basic_Set;                { CITE }          Cite = Basic_Set;                { CITE }
         ABBR = Basic_Set;                { ABBR }          ABBR = Basic_Set;                { ABBR }
         ACRONYM = Basic_Set;                { ACRONYM }          ACRONYM = Basic_Set;                { ACRONYM }
           ins;                             { INS }
           del;                             { DEL }
         END;          END;
   
   Font_                                                                { FONT }    Font_                                                                { FONT }
Line 401  STRUCT Line 406  STRUCT
   INS                                                                { INS }    INS                                                                { INS }
      (ATTR cite; datetime = Text; InternalLink; ExternalLink) =       (ATTR cite; datetime = Text; InternalLink; ExternalLink) =
          { cite  datetime }           { cite  datetime }
         Basic_Set;          Block;
   
   DEL                                                                { DEL }    DEL                                                                { DEL }
      (ATTR cite; datetime; InternalLink; ExternalLink) =       (ATTR cite; datetime; InternalLink; ExternalLink) =
          { cite  datetime }           { cite  datetime }
           Block;
   
     ins                                                                { INS }
        (ATTR cite; datetime; InternalLink; ExternalLink) =
            { cite  datetime }
           Basic_Set;
   
     del                                                                { DEL }
        (ATTR cite; datetime; InternalLink; ExternalLink) =
            { cite  datetime }
         Basic_Set;          Basic_Set;
   
   Block = CASE OF {Block}    Block = CASE OF {Block}
Line 425  STRUCT Line 440  STRUCT
         Object;          Object;
         Applet;          Applet;
         MathML;          MathML;
   SVG;          SVG;
   XLink;          XLink;
         External_Object;          External_Object;
         Embed_;          Embed_;
           INS;
           DEL;
         END;          END;
   
   Division                                                        { DIV }    Division                                                        { DIV }
Line 833  STRUCT Line 850  STRUCT
                                         FRAME;                                          FRAME;
                                         FRAMESET;                                          FRAMESET;
                                         END - (NOFRAMES));                                          END - (NOFRAMES));
       ? NOFRAMES = BODY + (INS, DEL);                                { NOFRAMES }        ? NOFRAMES = BODY;                                               { NOFRAMES }
         END;          END;
   
   FRAME                                                                { FRAME }    FRAME                                                                { FRAME }
Line 893  STRUCT Line 910  STRUCT
         Anchor;                { HREF_ }          Anchor;                { HREF_ }
         Block_Quote;        { cite }          Block_Quote;        { cite }
         Quotation;        { cite }          Quotation;        { cite }
         INS;                { cite }          ins;                { cite }
         DEL;                { cite }          del;                { cite }
         END;          END;
   
 EXCEPT  EXCEPT
Line 963  EXCEPT Line 980  EXCEPT
         Text_Area:      ReturnCreateNL, NoReplicate;          Text_Area:      ReturnCreateNL, NoReplicate;
         HTMLfragment:   NoMove, NoResize, Hidden, NoBreakByReturn;          HTMLfragment:   NoMove, NoResize, Hidden, NoBreakByReturn;
         Division:       NoMove, NoResize;          Division:       NoMove, NoResize;
           INS:            NoReplicate;
           DEL:            NoReplicate;
           ins:            NoReplicate;
           del:            NoReplicate;
         ExternalLink:   Invisible;          ExternalLink:   Invisible;
         InternalLink:   Invisible;          InternalLink:   Invisible;
         IntWidthPercent:NewPercentWidth, Invisible;          IntWidthPercent:NewPercentWidth, Invisible;

Removed from v.1.227  
changed lines
  Added in v.1.228


Webmaster