Diff for /Amaya/amaya/SVG.S between versions 1.50 and 1.51

version 1.50, 2005/06/10 13:51:32 version 1.51, 2005/08/23 15:31:27
Line 2471  STRUCT Line 2471  STRUCT
 EXCEPT  EXCEPT
   
    { exceptions for elements }     { exceptions for elements }
    SVG:                 IsDraw, MoveResize, NoMove;     SVG:           IsDraw, MoveResize, NoMove;
    g:                   NoMove, NoResize, HighlightChildren, NoShowBox,     g:             NoMove, NoResize, HighlightChildren, NoShowBox,
                         NoCreate, IsGroup;                    NoCreate, IsGroup;
    defs:                NoMove, NoResize, NoShowBox, NoCreate;     defs:          NoMove, NoResize, NoShowBox, NoCreate;
    linearGradient:      NoMove, NoResize, NoShowBox, NoCreate;     linearGradient:NoMove, NoResize, NoShowBox, NoCreate;
    stop:                NoMove, NoResize, NoShowBox, NoCreate;     stop:                NoMove, NoResize, NoShowBox, NoCreate;
    rect:                MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     rect:          MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    circle_:             MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     circle_:       MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    ellipse:             MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     ellipse:       MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    line_:               MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     line_:         MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    polyline:            MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     polyline:      MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    polygon:             MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     polygon:       MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    path:                MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;     path:                MoveResize, HighlightChildren, NoShowBox, NoCreate, EmptyGraphic;
    text_:               MoveResize, NoResize, NoShowBox, ReturnCreateWithin,     text_:         MoveResize, NoResize, NoShowBox, ReturnCreateWithin,
                         NoCreate;                          NoCreate;
    tspan:               NoShowBox;      tspan:               NoShowBox; 
    use_:                NoMove, NoResize, HighlightChildren, NoShowBox,     use_:                NoMove, NoResize, HighlightChildren, NoShowBox,
                         NoCreate, IsGroup, EmptyGraphic;                          NoCreate, IsGroup, EmptyGraphic;
    tref:                EmptyGraphic;     tref:                EmptyGraphic;
    image:               MoveResize, HighlightChildren, NoShowBox, EmptyGraphic;     image:               MoveResize, HighlightChildren, NoShowBox, EmptyGraphic;
    symbol_:             NoMove, NoResize,  HighlightChildren,NoShowBox,     symbol_:           NoMove, NoResize,  HighlightChildren,NoShowBox,
                         NoCreate;                    NoCreate;
    a:                   NoMove, NoResize, HighlightChildren, NoShowBox,     a:               NoMove, NoResize, HighlightChildren, NoShowBox,
                         NoCreate;                    NoCreate, ClickableSurface;
    script_:             NoMove, NoResize, NoShowBox, NoCreate;     script_:           NoMove, NoResize, NoShowBox, NoCreate;
    style__:             NoMove, NoResize, NoShowBox, NoCreate;     style__:       NoMove, NoResize, NoShowBox, NoCreate;
    switch:              NoMove, NoResize, NoShowBox, NoCreate, HighlightChildren;     switch:        NoMove, NoResize, NoShowBox, NoCreate, HighlightChildren;
    foreignObject:       MoveResize, HighlightChildren, NoCreate;     foreignObject: MoveResize, HighlightChildren, NoCreate;
    SVG_Image:           Hidden, SelectParent;     SVG_Image:     Hidden, SelectParent;
    GRAPHICS:            SelectParent;     GRAPHICS:        SelectParent;
    PICTURE:             NoMove, NoResize, SelectParent;     PICTURE:       NoMove, NoResize, SelectParent;
    TEXT:                NoMove, NoResize;     TEXT:          NoMove, NoResize;
    Unknown_namespace:   NoCreate;     Unknown_namespace:   NoCreate;
    DOCTYPE:             NoCut, NoSpellCheck;     DOCTYPE:             NoCut, NoSpellCheck;
    DOCTYPE_line:        Hidden, NoCut;     DOCTYPE_line:        Hidden, NoCut;
Line 2510  EXCEPT Line 2510  EXCEPT
    XMLPI_line:          Hidden, MarkupPreserve;     XMLPI_line:          Hidden, MarkupPreserve;
    CDATA_line:          Hidden, MarkupPreserve;     CDATA_line:          Hidden, MarkupPreserve;
    XMLPI:               ReturnCreateNL, NoSpellCheck, NoReplicate;     XMLPI:               ReturnCreateNL, NoSpellCheck, NoReplicate;
    XMLcomment:          ReturnCreateNL, NoReplicate;     XMLcomment:    ReturnCreateNL, NoReplicate;
   
    { exceptions for attributes }     { exceptions for attributes }
    id:                  CssId; {Default id attribute}     id:                CssId; {Default id attribute}
    class:               CssClass;     class:             CssClass;
    PseudoClass:         Invisible, CssPseudoClass;     PseudoClass:       Invisible, CssPseudoClass;
    Unknown_attribute:   Invisible;     Unknown_attribute: Invisible;
    Highlight:           Invisible;      Highlight:           Invisible; 
    Ghost_restruct:      Invisible;     Ghost_restruct:    Invisible;
    Namespace:           Invisible;     Namespace:           Invisible;
    RealLang:            Invisible;     RealLang:            Invisible;
    Charset:             Invisible;     Charset:               Invisible;
    Timeline_cross:      MoveResize, NoResize, HighlightChildren, NoShowBox, NoCut;     Timeline_cross:    MoveResize, NoResize, HighlightChildren, NoShowBox, NoCut;
    { the following attributes are made invisible to prevent the Attributes     { the following attributes are made invisible to prevent the Attributes
      menu from becoming too long }       menu from becoming too long }
    xml_base:            Invisible;     xml_base:                  Invisible;
    requiredFeatures:    Invisible;     requiredFeatures:    Invisible;
    requiredExtensions:  Invisible;     requiredExtensions:Invisible;
    baseProfile:         Invisible;     baseProfile:             Invisible;
    externalResourcesRequired:   Invisible;     externalResourcesRequired:   Invisible;
    color_interpolation: Invisible;     color_interpolation: Invisible;
    color_rendering:     Invisible;     color_rendering:       Invisible;
    enable_background:   Invisible;     enable_background:   Invisible;
    flood_color:         Invisible;     flood_color:             Invisible;
    flood_opacity:       Invisible;     flood_opacity:           Invisible;
    fill_rule:           Invisible;     fill_rule:                 Invisible;
    stroke_dasharray:    Invisible;     stroke_dasharray:    Invisible;
    stroke_dashoffset:   Invisible;     stroke_dashoffset:   Invisible;
    stroke_linecap:      Invisible;     stroke_linecap:        Invisible;
    stroke_linejoin:     Invisible;     stroke_linejoin:       Invisible;
    stroke_miterlimit:   Invisible;     stroke_miterlimit:   Invisible;
    color_interpolation_filters: Invisible;     color_interpolation_filters: Invisible;
    font_size_adjust:    Invisible;     font_size_adjust:    Invisible;
    font_stretch:        Invisible;     font_stretch:            Invisible;
    font_variant:        Invisible;     font_variant:            Invisible;
    stop_color:          Invisible;     stop_color:              Invisible;
    stop_opacity:        Invisible;     stop_opacity:            Invisible;
    clip_path:           Invisible;     clip_path:                 Invisible;
    clip_rule:           Invisible;     clip_rule:                 Invisible;
    cursor_:             Invisible;     cursor_:                     Invisible;
    display_:            Invisible;     display_:                  Invisible;
    filter_:             Invisible;     filter_:                     Invisible;
    image_rendering:     Invisible;     image_rendering:       Invisible;
    mask_:               Invisible;     mask_:                       Invisible;
    pointer_events:      Invisible;     pointer_events:      Invisible;
    shape_rendering:     Invisible;     shape_rendering:     Invisible;
    text_rendering:      Invisible;     text_rendering:      Invisible;

Removed from v.1.50  
changed lines
  Added in v.1.51


Webmaster