vhardy 01/11/28 04:51:18
Modified: sources/org/apache/batik/util XMLConstants.java
Log:
Now use the default DOM implementation for the SVG generator test (better output).
Fixed bug #4976 (now force xmlns and xmlns:xlink on root <svg> element).
Revision Changes Path
1.3 +17 -1 xml-batik/sources/org/apache/batik/util/XMLConstants.java
Index: XMLConstants.java
===================================================================
RCS file: /home/cvs/xml-batik/sources/org/apache/batik/util/XMLConstants.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- XMLConstants.java 2001/09/19 13:21:55 1.2
+++ XMLConstants.java 2001/11/28 12:51:18 1.3
@@ -12,7 +12,7 @@
* Contains common XML constants.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Vincent Hardy</a>
- * @version $Id: XMLConstants.java,v 1.2 2001/09/19 13:21:55 vhardy Exp $
+ * @version $Id: XMLConstants.java,v 1.3 2001/11/28 12:51:18 vhardy Exp $
*/
public interface XMLConstants {
/**
@@ -26,6 +26,22 @@
*/
String XMLNS_NAMESPACE_URI =
"http://www.w3.org/2000/xmlns/";
+
+ /**
+ * The xmlns prefix
+ */
+ String XMLNS_PREFIX = "xmlns";
+
+ /**
+ * The xlink namespace URI
+ */
+ String XLINK_NAMESPACE_URI
+ = "http://www.w3.org/1999/xlink";
+
+ /**
+ * The xlink prefix
+ */
+ String XLINK_PREFIX = "xlink";
String XML_PREFIX = "xml";
String XML_LANG_ATTRIBUTE = XML_PREFIX + ":lang";
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]