From: markt
Date: Sun, 15 Apr 2007 19:26:34 +0000 (+0000)
Subject: Fix bug 42025. Refer to correct regular expression implementation
X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bbe9cb66b231c722c9b95ac484b2b2510cc31c42;p=tomcat7.0
Fix bug 42025. Refer to correct regular expression implementation
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@529052 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 507d5cd67..d82a4f0c6 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -22,8 +22,8 @@
UnavailableException. Patch provided by Kawasima Kazuh. (markt)
-
-
+
+
42119 Fix return value for request.getCharacterEncoding() when
@@ -32,6 +32,15 @@
+
+
+
+ 42025: Update valve documentation to refer to correct regular
+ expression implementation. (markt)
+
+
+
+
diff --git a/webapps/docs/config/valve.xml b/webapps/docs/config/valve.xml
index 0695c3ba7..6237dc689 100644
--- a/webapps/docs/config/valve.xml
+++ b/webapps/docs/config/valve.xml
@@ -205,10 +205,9 @@
presented to this container for processing before it will be passed on.
The syntax for regular expressions is different than that for
- 'standard' wildcard matching. Tomcat uses the
- Jakarta Regexp library.
- Please consult the Regexp documentation for details of the expressions
- supported.
+ 'standard' wildcard matching. Tomcat uses the java.util.regex
+ package. Please consult the Java documentation for details of the
+ expressions supported.
@@ -262,10 +261,9 @@
presented to this container for processing before it will be passed on.
The syntax for regular expressions is different than that for
- 'standard' wildcard matching. Tomcat uses the
- Jakarta Regexp library.
- Please consult the Regexp documentation for details of the expressions
- supported.
+ 'standard' wildcard matching. Tomcat uses the java.util.regex
+ package. Please consult the Java documentation for details of the
+ expressions supported.