Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 9884 invoked from network); 7 Jun 2007 08:35:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jun 2007 08:35:07 -0000 Received: (qmail 97924 invoked by uid 500); 7 Jun 2007 08:35:07 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 97884 invoked by uid 500); 7 Jun 2007 08:35:06 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 97869 invoked by uid 500); 7 Jun 2007 08:35:06 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 97866 invoked by uid 99); 7 Jun 2007 08:35:06 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 01:35:06 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 01:35:02 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0E92D1A981A; Thu, 7 Jun 2007 01:34:42 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r545101 - /tomcat/container/tc5.5.x/webapps/docs/config/host.xml Date: Thu, 07 Jun 2007 08:34:41 -0000 To: tomcat-dev@jakarta.apache.org From: pero@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070607083442.0E92D1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pero Date: Thu Jun 7 01:34:40 2007 New Revision: 545101 URL: http://svn.apache.org/viewvc?view=rev&rev=545101 Log: correct small typos. fix that RequestValveFilter used standard java regex. Modified: tomcat/container/tc5.5.x/webapps/docs/config/host.xml Modified: tomcat/container/tc5.5.x/webapps/docs/config/host.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/config/host.xml?view=diff&rev=545101&r1=545100&r2=545101 ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/config/host.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/config/host.xml Thu Jun 7 01:34:40 2007 @@ -390,9 +390,8 @@ Context element. The remote address or name will be checked against a configured list of "accept" and/or "deny" filters, which are defined using the Regular Expression syntax supported - by the Jakarta Regexp - regular expression library. Requests that come from locations that are - not accepted will be rejected with an HTTP "Forbidden" error. + by the standard Java java.util.regex regular expression library. Requests + that come from locations that are not accepted will be rejected with an HTTP "Forbidden" error. Example filter declarations:

@@ -424,8 +423,7 @@ <Host name="localhost" ...> ... - <Valve className="org.apache.catalina.authenticator.SingleSignOn" - debug="0"/> + <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> ... </Host> @@ -494,7 +492,7 @@ ... <Listener className="org.apache.catalina.startup.UserConfig" directoryName="public_html" - homeBase=c:\Homes" + homeBase="c:\Homes" userClass="org.apache.catalina.startup.HomesUserDatabase"/> ... </Host> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org