Author: mrglavas
Date: Mon Sep 26 04:24:01 2011
New Revision: 1175661
URL: http://svn.apache.org/viewvc?rev=1175661&view=rev
Log:
Fixing a bug. When the schema type is DTD: "http://www.w3.org/TR/REC-xml" we
were only allowing XML 1.0 documents. DOM L3 requires XML 1.1 support.
Modified:
xerces/java/trunk/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
Modified:
xerces/java/trunk/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
URL:
http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java?rev=1175661&r1=1175660&r2=1175661&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
(original)
+++ xerces/java/trunk/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
Mon Sep 26 04:24:01 2011
@@ -395,7 +395,7 @@ public class CoreDOMImplementationImpl
if (schemaType != null
&& schemaType.equals("http://www.w3.org/TR/REC-xml")) {
return new DOMParserImpl(
- "org.apache.xerces.parsers.DTDConfiguration",
+
"org.apache.xerces.parsers.XML11DTDConfiguration",
schemaType);
}
else {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]