Diff for /Amaya/amaya/HTMLT.T between versions 1.107 and 1.108

version 1.107, 2000/07/13 13:22:56 version 1.108, 2000/08/19 17:10:00
Line 496  RULES Line 496  RULES
   
  XMLGraphics: BEGIN   XMLGraphics: BEGIN
 #ifdef XML  #ifdef XML
         Create '<xmlgraphics xmlns="http://www.w3.org/Graphics/SVG/Amaya2D"';          Create '<svg xmlns="http://www.w3.org/2000/svg"';
 #else  #else
         Create '<xmlgraphics';          Create '<svg';
 #endif  #endif
         Create Attributes;          Create Attributes;
         Create '>\12';          Create '>\12';
         indent +2;          indent +2;
         indent -2 after;          indent -2 after;
         Create '</xmlgraphics>\12' After;          Create '</svg>\12' After;
         END;          END;
   
  Paragraph: BEGIN   Paragraph: BEGIN
Line 1858  ATTRIBUTES Line 1858  ATTRIBUTES
  mode = display:   mode = display:
         Create ' mode="display"';          Create ' mode="display"';
   
    SvgHeight: BEGIN
           Create ' height="';
           Create SvgHeight;
           Create DoubleQuote;
           END;
   
    SvgWidth: BEGIN
           Create ' width="';
           Create SvgWidth;
           Create DoubleQuote;
           END;
   
  summary: BEGIN   summary: BEGIN
         Create ' summary="';          Create ' summary="';
         Create Translated summary;          Create Translated summary;

Removed from v.1.107  
changed lines
  Added in v.1.108


Webmaster