mkwan 2002/09/06 09:17:47 Modified: java/src/org/apache/xalan/templates Constants.java Log: Add strings for new extension namespaces. This includes new EXSLT namespaces (dynamic and strings), namespaces for redirect, PipeDocument and SQL extensions and new namespace for the Java extension. For backward compatibility, the old Java namespace is still kept. Revision Changes Path 1.15 +11 -3 xml-xalan/java/src/org/apache/xalan/templates/Constants.java Index: Constants.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/templates/Constants.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Constants.java 10 Jul 2002 16:06:31 -0000 1.14 +++ Constants.java 6 Sep 2002 16:17:46 -0000 1.15 @@ -113,9 +113,15 @@ * Xalan extension namespaces. */ public static final String - S_EXTENSIONS_JAVA_URL = "http://xml.apache.org/xslt/java", + // The old namespace for Java extension + S_EXTENSIONS_OLD_JAVA_URL = "http://xml.apache.org/xslt/java", + // The new namespace for Java extension + S_EXTENSIONS_JAVA_URL = "http://xml.apache.org/xalan/java", S_EXTENSIONS_LOTUSXSL_JAVA_URL = "http://xsl.lotus.com/java", - S_EXTENSIONS_XALANLIB_URL = "http://xml.apache.org/xalan"; + S_EXTENSIONS_XALANLIB_URL = "http://xml.apache.org/xalan", + S_EXTENSIONS_REDIRECT_URL = "http://xml.apache.org/xalan/redirect", + S_EXTENSIONS_PIPE_URL = "http://xml.apache.org/xalan/PipeDocument", + S_EXTENSIONS_SQL_URL = "http://xml.apache.org/xalan/sql"; /** * EXSLT extension namespaces. @@ -125,7 +131,9 @@ S_EXSLT_MATH_URL = "http://exslt.org/math", S_EXSLT_SETS_URL = "http://exslt.org/sets", S_EXSLT_DATETIME_URL = "http://exslt.org/dates-and-times", - S_EXSLT_FUNCTIONS_URL = "http://exslt.org/functions"; + S_EXSLT_FUNCTIONS_URL = "http://exslt.org/functions", + S_EXSLT_DYNAMIC_URL = "http://exslt.org/dynamic", + S_EXSLT_STRINGS_URL = "http://exslt.org/strings"; /**
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]