Diff for /Amaya/amaya/HTMLT.T between versions 1.113 and 1.114

version 1.113, 2000/10/06 13:16:59 version 1.114, 2000/10/09 11:16:29
Line 784  RULES Line 784  RULES
         END;          END;
   
  Anchor: BEGIN   Anchor: BEGIN
         if IsAnnotation BEGIN           Create '<a';
                 Remove;           Create Attributes;
                 END;           Create '>';
         if NOT IsAnnotation BEGIN           Create '</a>' After;
                 Create '<a';           END;
                 Create Attributes;  
                 Create '>';  
                 Create '</a>' After;  
                 END;  
         END;  
   
  MAP:   MAP:
         BEGIN          BEGIN
Line 1128  ATTRIBUTES Line 1123  ATTRIBUTES
   
  HREF_ :   HREF_ :
         BEGIN          BEGIN
         If IsAnnotation BEGIN          Create ' href="';
                 Remove;          Create Translated HREF_;
                 END;          Create DoubleQuote;
         If NOT IsAnnotation BEGIN  
                 Create ' href="';  
                 Create Translated HREF_;  
                 Create DoubleQuote;  
                 END;  
         END;          END;
   
  hreflang :   hreflang :
Line 1438  ATTRIBUTES Line 1428  ATTRIBUTES
         END;          END;
   
  ID:    BEGIN   ID:    BEGIN
         IF Within XLink BEGIN          Create ' id="';
            Remove;          Create ID;
            END;          Create DoubleQuote;
         IF NOT Within XLink BEGIN  
            Create ' id="';  
            Create ID;  
            Create DoubleQuote;  
            END;  
         END;          END;
   
  dir = ltr :   dir = ltr :
Line 1636  ATTRIBUTES Line 1621  ATTRIBUTES
         END;          END;
   
  NAME: BEGIN   NAME: BEGIN
         if Anchor and IsAnnotation BEGIN          Create ' name="';
                 Remove;          Create NAME;
                 END;          Create DoubleQuote;
         if NOT IsAnnotation BEGIN  
                 Create ' name="';  
                 Create NAME;  
                 Create DoubleQuote;  
                 END;  
 #ifdef XML  #ifdef XML
         if Anchor and not ID and NOT IsAnnotation BEGIN          if Anchor and not ID BEGIN
                 Create ' id="';                  Create ' id="';
                 Create NAME;                  Create NAME;
                 Create DoubleQuote;                  Create DoubleQuote;

Removed from v.1.113  
changed lines
  Added in v.1.114


Webmaster