You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mm...@locus.apache.org on 2000/06/29 15:44:02 UTC

cvs commit: xml-xalan/src/org/apache/xalan/xpath/xdom XercesLiaison.java

mmidy       00/06/29 06:44:01

  Modified:    src/org/apache/xalan/xpath/xdom XercesLiaison.java
  Log:
  Xerces changed the namespace feature to be true by default, we need to set it to false.
  
  Revision  Changes    Path
  1.20      +1 -0      xml-xalan/src/org/apache/xalan/xpath/xdom/XercesLiaison.java
  
  Index: XercesLiaison.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xpath/xdom/XercesLiaison.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- XercesLiaison.java	2000/05/10 20:27:58	1.19
  +++ XercesLiaison.java	2000/06/29 13:44:01	1.20
  @@ -224,6 +224,7 @@
         else
         {
           domParser.setFeature("http://apache.org/xml/features/dom/defer-node-expansion", false);
  +        domParser.setFeature("http://xml.org/sax/features/namespaces", false);
         }
         parser = domParser;
         //((DOMParser)parser).setCreateEntityReferenceNodes(getShouldExpandEntityRefs());