bruno       2003/02/27 14:25:19

  Modified:    src/blocks/html/java/org/apache/cocoon/generation
                        HTMLGenerator.java
  Log:
  disable namespace normalization on DOMStreamer
  
  Revision  Changes    Path
  1.5       +2 -1      
xml-cocoon2/src/blocks/html/java/org/apache/cocoon/generation/HTMLGenerator.java
  
  Index: HTMLGenerator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/blocks/html/java/org/apache/cocoon/generation/HTMLGenerator.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HTMLGenerator.java        31 Jan 2003 22:49:19 -0000      1.4
  +++ HTMLGenerator.java        27 Feb 2003 22:25:19 -0000      1.5
  @@ -273,6 +273,7 @@
                   }
               } else {
                   DOMStreamer streamer = new 
DOMStreamer(this.contentHandler,this.lexicalHandler);
  +                streamer.setNormalizeNamespacesOn(false);
                   streamer.stream(doc);
               }
           } catch (IOException e){
  
  
  

Reply via email to