Author: markt Date: Sun Apr 15 12:46:45 2007 New Revision: 529056 URL: http://svn.apache.org/viewvc?view=rev&rev=529056 Log: Fix bug 42025. Refer to correct regular expression implementation
Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml tomcat/container/tc5.5.x/webapps/docs/config/valve.xml Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?view=diff&rev=529056&r1=529055&r2=529056 ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Sun Apr 15 12:46:45 2007 @@ -77,6 +77,10 @@ truststorePass when saving server.xml in Admin webapp. Patch provided by Matheus Bastos. (markt) </fix> + <fix> + <bug>42025</bug>: Update valve documentation to refer to correct regular + expression implementation. (markt) + </fix> </changelog> </subsection> <subsection name="Coyote"> Modified: tomcat/container/tc5.5.x/webapps/docs/config/valve.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/config/valve.xml?view=diff&rev=529056&r1=529055&r2=529056 ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/config/valve.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/config/valve.xml Sun Apr 15 12:46:45 2007 @@ -202,10 +202,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> @@ -259,10 +258,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]