You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2004/06/01 19:20:42 UTC

cvs commit: xml-xerces/java/docs faq-dom.xml

mrglavas    2004/06/01 10:20:42

  Modified:    java/docs faq-dom.xml
  Log:
  Fixing Jira Bug #974:
  http://nagoya.apache.org/jira/browse/XERCESJ-974
  
  The code samples in the DOM documentation attempt to
  retrieve an instance of DOMImplementationLS with the
  "LS-Load" feature.  This was changed to "LS". Fixed
  thanks to the patch by Jonathan Au.
  
  Revision  Changes    Path
  1.16      +2 -2      xml-xerces/java/docs/faq-dom.xml
  
  Index: faq-dom.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/faq-dom.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- faq-dom.xml	25 Feb 2004 16:22:44 -0000	1.15
  +++ faq-dom.xml	1 Jun 2004 17:20:42 -0000	1.16
  @@ -81,7 +81,7 @@
       DOMImplementationRegistry.newInstance();
   
   DOMImplementationLS impl = 
  -    (DOMImplementationLS)registry.getDOMImplementation("LS-Load");
  +    (DOMImplementationLS)registry.getDOMImplementation("LS");
   
   LSParser builder = impl.createLSParser(
       DOMImplementationLS.MODE_SYNCHRONOUS, null);
  @@ -131,7 +131,7 @@
   DOMImplementationRegistry registry = DOMImplementationRegistry.newInstance();
   
   DOMImplementationLS impl = 
  -    (DOMImplementationLS)registry.getDOMImplementation("LS-Load");
  +    (DOMImplementationLS)registry.getDOMImplementation("LS");
   
   ...     
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org