Author: mrglavas
Date: Mon Sep 26 04:23:33 2011
New Revision: 1175660
URL: http://svn.apache.org/viewvc?rev=1175660&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/branches/xml-schema-1.1-dev/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
Modified:
xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java?rev=1175660&r1=1175659&r2=1175660&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
Mon Sep 26 04:23:33 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]