remm        2005/08/11 05:00:32

  Modified:    jasper2/src/share/org/apache/jasper/compiler
                        JspDocumentParser.java
               webapps/docs changelog.xml
  Log:
  - 36127: Compatibility with Xerces 2.7.
  - Submitted by Florent Benoit.
  
  Revision  Changes    Path
  1.85      +5 -4      
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/JspDocumentParser.java
  
  Index: JspDocumentParser.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/JspDocumentParser.java,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- JspDocumentParser.java    30 Mar 2005 20:27:22 -0000      1.84
  +++ JspDocumentParser.java    11 Aug 2005 12:00:32 -0000      1.85
  @@ -1370,10 +1370,11 @@
           factory.setFeature(
               "http://xml.org/sax/features/namespace-prefixes";,
               true);
  -        factory.setFeature(
  -            "http://xml.org/sax/features/validation";,
  -            validating);
  -
  +        factory.setValidating(validating);
  +        //factory.setFeature(
  +        //    "http://xml.org/sax/features/validation";,
  +        //    validating);
  +        
           // Configure the parser
           SAXParser saxParser = factory.newSAXParser();
           XMLReader xmlReader = saxParser.getXMLReader();
  
  
  
  1.355     +4 -0      jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.354
  retrieving revision 1.355
  diff -u -r1.354 -r1.355
  --- changelog.xml     4 Aug 2005 15:05:31 -0000       1.354
  +++ changelog.xml     11 Aug 2005 12:00:32 -0000      1.355
  @@ -121,6 +121,10 @@
   
     <subsection name="Jasper">
       <changelog>
  +      <fix>
  +        <bug>36127</bug>: Validation compatibility with Xerces 2.7.1, 
submitted 
  +        by Florent Benoit (remm)
  +      </fix>
       </changelog>
     </subsection>
     
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to