Author: markt
Date: Sun Apr 15 12:26:34 2007
New Revision: 529052

URL: http://svn.apache.org/viewvc?view=rev&rev=529052
Log:
Fix bug 42025. Refer to correct regular expression implementation

Modified:
    tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
    tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?view=diff&rev=529052&r1=529051&r2=529052
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Sun Apr 15 12:26:34 2007
@@ -22,8 +22,8 @@
          UnavailableException. Patch provided by Kawasima Kazuh. (markt)
       </fix>
     </changelog>
-</section>
-<subsection name="Coyote">
+  </subsection>
+  <subsection name="Coyote">
     <changelog>
       <fix>
         <bug>42119</bug> Fix return value for request.getCharacterEncoding() 
when
@@ -32,6 +32,15 @@
       </fix>
     </changelog>
   </subsection>
+  <subsection name="Webapps">
+    <changelog>
+      <fix>
+        <bug>42025</bug>: Update valve documentation to refer to correct 
regular
+        expression implementation. (markt)
+      </fix>
+    </changelog>
+  </subsection>
+</section>
 <section name="Tomcat 6.0.11 (remm)">
   <subsection name="General">
     <changelog>

Modified: tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml?view=diff&rev=529052&r1=529051&r2=529052
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml Sun Apr 15 12:26:34 2007
@@ -205,10 +205,9 @@
     presented to this container for processing before it will be passed on.</p>
 
     <p>The syntax for <em>regular expressions</em> is different than that for
-    'standard' wildcard matching. Tomcat uses the
-    <a href="http://jakarta.apache.org/regexp/";>Jakarta Regexp</a> library.
-    Please consult the Regexp documentation for details of the expressions
-    supported.</p>
+    'standard' wildcard matching. Tomcat uses the <code>java.util.regex</code>
+    package. Please consult the Java documentation for details of the
+    expressions supported.</p>
 
   </subsection>
 
@@ -262,10 +261,9 @@
     presented to this container for processing before it will be passed on.</p>
 
     <p>The syntax for <em>regular expressions</em> is different than that for
-    'standard' wildcard matching. Tomcat uses the
-    <a href="http://jakarta.apache.org/regexp/";>Jakarta Regexp</a> library.
-    Please consult the Regexp documentation for details of the expressions
-    supported.</p>
+    'standard' wildcard matching. Tomcat uses the <code>java.util.regex</code>
+    package. Please consult the Java documentation for details of the
+    expressions supported.</p>
 
   </subsection>
 



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

Reply via email to