amiro 01/07/20 11:46:32
Modified: java/src/org/apache/xalan/xsltc/runtime Constants.java
Log:
Added the NAMESPACE_FEATURE constant. Checked to see if it was in
org.xml.sax first, but it wasn't. Since this constant is used both
at compile and runtime, it should be in the runtime Constants class
as well as the compile Constants class. Runtime code needs to be
kept separate from the compile time code.
Revision Changes Path
1.2 +4 -1 xml-xalan/java/src/org/apache/xalan/xsltc/runtime/Constants.java
Index: Constants.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/Constants.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Constants.java 2001/04/17 18:52:43 1.1
+++ Constants.java 2001/07/20 18:46:32 1.2
@@ -1,5 +1,5 @@
/*
- * @(#)$Id: Constants.java,v 1.1 2001/04/17 18:52:43 sboag Exp $
+ * @(#)$Id: Constants.java,v 1.2 2001/07/20 18:46:32 amiro Exp $
*
* The Apache Software License, Version 1.1
*
@@ -80,4 +80,7 @@
final static int PROCESSING_INSTRUCTION = DOM.PROCESSING_INSTRUCTION;
public static String XSLT_URI = "http://www.w3.org/1999/XSL/Transform";
+ public static final String NAMESPACE_FEATURE =
+ "http://xml.org/sax/features/namespaces";
+
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]