Diff for /Amaya/amaya/SVG.S between versions 1.22 and 1.23

version 1.22, 2002/06/24 08:07:04 version 1.23, 2002/07/10 08:24:33
Line 264  STRUCT Line 264  STRUCT
               y;                y;
               dx = text;                dx = text;
               dy = text)                dy = text)
          = LIST OF (TextComponent);          = LIST OF (CASE OF
                      TEXT; desc; title; metadata;
                      tspan; tref; a;
                      animate; set_; animateMotion; animateColor; animateTransform;
                      END);
   
    tspan  { not in SVG Tiny }     tspan  { not in SVG Tiny }
         (ATTR requiredFeatures; requiredExtensions; systemLanguage;          (ATTR requiredFeatures; requiredExtensions; systemLanguage;
Line 280  STRUCT Line 284  STRUCT
         = LIST OF (SpanElement = CASE OF          = LIST OF (SpanElement = CASE OF
                       TEXT;                        TEXT;
                       desc; title; metadata;                        desc; title; metadata;
                       tspan;                        tspan; tref;
                       a;                        a;
                       animate; set; animateColor;                        animate; set_; animateColor;
                       END);                        END);
              tref
    { tref }          (ATTR xlink_href;
                 requiredFeatures; requiredExtensions; systemLanguage;
                 externalResourcesRequired; 
                 fill; stroke; stroke_width;
                 font_family; font_size; font_style; font_variant; font_weight;
                 direction_; text_anchor; text_decoration; unicode_bidi;
                 writing_mode;
                 x;
                 y;
                 dx;
                 dy)
           = LIST OF (CASE OF
                      desc; title; metadata;
                      animate; set_; animateColor;
                      END);
   
    { textPath }     { textPath }
    { altGlyph }     { altGlyph }
    { altGlyphDef }     { altGlyphDef }
Line 322  STRUCT Line 341  STRUCT
             LIST OF              LIST OF
               (CASE OF                (CASE OF
                  path; text_; rect; circle; ellipse; line_; polyline; polygon;                   path; text_; rect; circle; ellipse; line_; polyline; polygon;
                  use_; animate; set; animateMotion; animateColor;                   use_; animate; set_; animateMotion; animateColor;
                  animateTransform;                   animateTransform;
                END);                 END);
           END;            END;
Line 374  STRUCT Line 393  STRUCT
               { graphicsElementEvents }                { graphicsElementEvents }
               target_ = text)                target_ = text)
         = LIST OF (CASE OF          = LIST OF (CASE OF
                       GraphicsElement; TextComponent;                     TEXT; 
                       END);                     GraphicsElement;
                      END);
    { view }     { view }
   
 { Scripting }  { Scripting }
Line 489  STRUCT Line 509  STRUCT
               desc; title; metadata;                desc; title; metadata;
           END;            END;
   
    Anim = CASE OF animate; set; animateMotion; animateColor; animateTransform;     Anim = CASE OF animate; set_; animateMotion; animateColor; animateTransform;
           END;            END;
 { Fonts }  { Fonts }
   
Line 536  STRUCT Line 556  STRUCT
               path; text_; rect; circle; ellipse; line_; polyline; polygon;                path; text_; rect; circle; ellipse; line_; polyline; polygon;
               use_; image; SVG; g; switch; a;                use_; image; SVG; g; switch; a;
               script_; style__; symbol_; clipPath;                script_; style__; symbol_; clipPath;
               animate; set; animateMotion; animateColor; animateTransform;                 animate; set_; animateMotion; animateColor; animateTransform; 
               XLink;                XLink;
               END;                END;
   
    TextComponent  
         = CASE OF  
               tspan;    { must be the first option, to allow the Return key  
                           to create tspan elements }  
               TEXT;   
               desc; title; metadata;  
               a;  
               animate; set; animateMotion; animateColor; animateTransform;   
               END;  
   
    DOCTYPE = LIST OF (DOCTYPE_line = TEXT);          DOCTYPE = LIST OF (DOCTYPE_line = TEXT);     
                   
    XMLcomment = LIST OF (XMLcomment_line = TEXT);     XMLcomment = LIST OF (XMLcomment_line = TEXT);

Removed from v.1.22  
changed lines
  Added in v.1.23


Webmaster