morten      01/09/25 12:53:43

  Modified:    java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java
  Log:
  Updated the information returned by the system-property() function.
  xsl:verision returns "1.0"
  xsl:vendor returns "Apache Xalan XSLTC" - must be different from Xalan!!!"
  xsl:vendor-url returns "http://xml.apache.org/xalan-j";
  PR:           bugzilla 3470
  Obtained from:        n/a
  Submitted by: [EMAIL PROTECTED]
  Reviewed by:  [EMAIL PROTECTED]
  
  Revision  Changes    Path
  1.18      +3 -3      
xml-xalan/java/src/org/apache/xalan/xsltc/runtime/BasisLibrary.java
  
  Index: BasisLibrary.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/BasisLibrary.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- BasisLibrary.java 2001/09/25 15:57:22     1.17
  +++ BasisLibrary.java 2001/09/25 19:53:43     1.18
  @@ -1,5 +1,5 @@
   /*
  - * @(#)$Id: BasisLibrary.java,v 1.17 2001/09/25 15:57:22 morten Exp $
  + * @(#)$Id: BasisLibrary.java,v 1.18 2001/09/25 19:53:43 morten Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -410,9 +410,9 @@
        if (name.equals("xsl:version"))
            return("1.0");
        if (name.equals("xsl:vendor"))
  -         return("Sun Microsystems' xsltc");
  +         return("Apache Xalan XSLTC");
        if (name.equals("xsl:vendor-url"))
  -         return("http://www.sun.com/";);
  +         return("http://xml.apache.org/xalan-j";);
        
        runTimeError("Invalid argument type '"+name+
                     "' in call to system-property().");
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to