Diff for /Amaya/amaya/SVG.S between versions 1.32 and 1.33

version 1.32, 2002/12/11 16:09:07 version 1.33, 2003/01/13 09:50:43
Line 157  STRUCT Line 157  STRUCT
    path     path
         (ATTR requiredFeatures; requiredExtensions; systemLanguage;          (ATTR requiredFeatures; requiredExtensions; systemLanguage;
               externalResourcesRequired;                 externalResourcesRequired; 
               opacity; fill; stroke; stroke_width;                opacity; 
                 fill_opacity=text; 
                 stroke_opacity=text; 
                 fill; stroke; stroke_width;
               transform;                transform;
               d = text;                d = text;
               pathLength = text)                pathLength = text)
Line 178  STRUCT Line 181  STRUCT
               y;                y;
               width_;                width_;
               height_;                height_;
               opacity;                opacity; fill_opacity; stroke_opacity;
               rx = text;                rx = text;
               ry = text)                ry = text)
         = AGGREGATE          = AGGREGATE
Line 195  STRUCT Line 198  STRUCT
               cx = text;                cx = text;
               cy = text;                cy = text;
               r = text;                r = text;
               opacity)                opacity; fill_opacity; stroke_opacity)
         = AGGREGATE          = AGGREGATE
               desc; title; metadata;                desc; title; metadata;
               LIST OF (Anim);                LIST OF (Anim);
Line 211  STRUCT Line 214  STRUCT
               cy;                cy;
               rx;                rx;
               ry;                ry;
               opacity)                opacity; fill_opacity; stroke_opacity)
         = AGGREGATE          = AGGREGATE
               desc; title; metadata;                desc; title; metadata;
               LIST OF (Anim);                LIST OF (Anim);
Line 227  STRUCT Line 230  STRUCT
               y1 = text;                y1 = text;
               x2 = text;                x2 = text;
               y2 = text;                y2 = text;
               opacity)                opacity; fill_opacity; stroke_opacity)
         = AGGREGATE          = AGGREGATE
               desc; title; metadata;                desc; title; metadata;
               LIST OF (Anim);                LIST OF (Anim);
Line 240  STRUCT Line 243  STRUCT
               fill; stroke; stroke_width;                fill; stroke; stroke_width;
               transform;                transform;
               points = text;                points = text;
               opacity)                opacity; fill_opacity; stroke_opacity)
         = AGGREGATE          = AGGREGATE
               desc; title; metadata;                desc; title; metadata;
               LIST OF (Anim);                LIST OF (Anim);
Line 253  STRUCT Line 256  STRUCT
               fill; stroke; stroke_width;                fill; stroke; stroke_width;
               transform;                transform;
               points;                points;
               opacity)                opacity; fill_opacity; stroke_opacity)
         = AGGREGATE          = AGGREGATE
               desc; title; metadata;                desc; title; metadata;
               LIST OF (Anim);                LIST OF (Anim);
Line 338  STRUCT Line 341  STRUCT
   
 { Gradients and Patterns }  { Gradients and Patterns }
   
    { linearGradient }     linearGradient
           (ATTR requiredFeatures; requiredExtensions; systemLanguage;
                 externalResourcesRequired;
                 x1; y1; x1; y2;         
                 gradientTransform = text;
                 gradientUnits = text;
                 xlink_href;)
           = AGGREGATE
                 desc; title; metadata;
            LIST OF 
                   (CASE OF
                      path; rect; circle; ellipse; line_; polyline; polygon;
                      END);
                   GRAPHICS;
             END;
   
      stop
            (ATTR requiredFeatures; requiredExtensions; systemLanguage;
                 externalResourcesRequired;
                 offset=text;
                 style=text; 
                 stop_color=text;)
            = AGGREGATE
                 desc; title; metadata;
            LIST OF 
                   (CASE OF
                      linearGradient;
                      END);
             END;
           
   
    { radialGradient }     { radialGradient }
    { stop }  
    { pattern }     { pattern }
   
 { Clipping, Masking and Compositing }  { Clipping, Masking and Compositing }
Line 552  STRUCT Line 584  STRUCT
    foreignObject  { not in SVG Tiny }     foreignObject  { not in SVG Tiny }
         (ATTR requiredFeatures; requiredExtensions; systemLanguage;          (ATTR requiredFeatures; requiredExtensions; systemLanguage;
               externalResourcesRequired;                 externalResourcesRequired; 
               opacity; fill; stroke; stroke_width;                opacity; fill_opacity; stroke_opacity; fill; stroke; stroke_width;
               font_family; font_size; font_style; font_variant; font_weight;                font_family; font_size; font_style; font_variant; font_weight;
               direction_; text_anchor; text_decoration; unicode_bidi;                direction_; text_anchor; text_decoration; unicode_bidi;
               transform;                transform;
Line 582  STRUCT Line 614  STRUCT
               path; text_; rect; circle; ellipse; line_; polyline; polygon;                path; text_; rect; circle; ellipse; line_; polyline; polygon;
               use_; image; Timeline_cross; SVG; g; switch; a;                use_; image; Timeline_cross; SVG; g; switch; a;
               script_; style__; symbol_; clipPath; Anim;                script_; style__; symbol_; clipPath; Anim;
               animate; set_; animateMotion; animateColor; animateTransform;                 animate; set_; animateMotion; animateColor; animateTransform;
                 linearGradient; stop; 
               XLink;                XLink;
               END;                END;
   
Line 600  EXCEPT Line 633  EXCEPT
   
    SVG:                 IsDraw, MoveResize, NoMove;     SVG:                 IsDraw, MoveResize, NoMove;
    g:                   NoMove, NoResize, HighlightChildren, NoShowBox,     g:                   NoMove, NoResize, HighlightChildren, NoShowBox,
                         NoCreate;                          NoCreate, IsGroup;
    defs:                NoMove, NoResize, NoShowBox, NoCreate;     defs:                NoMove, NoResize, NoShowBox, NoCreate;
      linearGradient:      NoMove, NoResize, NoShowBox, NoCreate;
      stop:                NoMove, NoResize, NoShowBox, NoCreate;
    rect:                MoveResize, HighlightChildren, NoShowBox, NoCreate;     rect:                MoveResize, HighlightChildren, NoShowBox, NoCreate;
    circle:              MoveResize, HighlightChildren, NoShowBox, NoCreate;     circle:              MoveResize, HighlightChildren, NoShowBox, NoCreate;
    ellipse:             MoveResize, HighlightChildren, NoShowBox, NoCreate;     ellipse:             MoveResize, HighlightChildren, NoShowBox, NoCreate;

Removed from v.1.32  
changed lines
  Added in v.1.33


Webmaster