Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 28013 invoked from network); 3 Oct 2009 16:18:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Oct 2009 16:18:19 -0000 Received: (qmail 58676 invoked by uid 500); 3 Oct 2009 16:18:18 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 58603 invoked by uid 500); 3 Oct 2009 16:18:17 -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 58592 invoked by uid 99); 3 Oct 2009 16:18:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Oct 2009 16:18:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Oct 2009 16:18:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9B22F23888D0; Sat, 3 Oct 2009 16:17:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821351 - in /tomcat/tc5.5.x/trunk: STATUS.txt container/catalina/src/conf/catalina.policy container/webapps/docs/changelog.xml Date: Sat, 03 Oct 2009 16:17:53 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091003161753.9B22F23888D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Sat Oct 3 16:17:53 2009 New Revision: 821351 URL: http://svn.apache.org/viewvc?rev=821351&view=rev Log: Add additional permission required by JULI Modified: tomcat/tc5.5.x/trunk/STATUS.txt tomcat/tc5.5.x/trunk/container/catalina/src/conf/catalina.policy tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=821351&r1=821350&r2=821351&view=diff ============================================================================== --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Sat Oct 3 16:17:53 2009 @@ -98,12 +98,6 @@ +1: rjung, markt -1: -* Add additional permission required by JULI - http://svn.apache.org/viewvc?rev=813001&view=rev - +1: markt, rjung, kkolinko - -1: - rjung: Should we also add ${catalina.base}/bin/tomcat-juli.jar as a codeBase? - * Spurious startup errors in the cluster Although the secondary node is able to retrieve all sessions, the main thread doesn't see the changed stateTransfered flag, Modified: tomcat/tc5.5.x/trunk/container/catalina/src/conf/catalina.policy URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/container/catalina/src/conf/catalina.policy?rev=821351&r1=821350&r2=821351&view=diff ============================================================================== --- tomcat/tc5.5.x/trunk/container/catalina/src/conf/catalina.policy (original) +++ tomcat/tc5.5.x/trunk/container/catalina/src/conf/catalina.policy Sat Oct 3 16:17:53 2009 @@ -92,6 +92,7 @@ permission java.io.FilePermission "${catalina.base}${file.separator}logs", "read, write"; permission java.io.FilePermission "${catalina.base}${file.separator}logs${file.separator}*", "read, write"; permission java.lang.RuntimePermission "getClassLoader"; + permission java.lang.RuntimePermission "setContextClassLoader"; // To enable per context logging configuration, permit read access to the appropriate file. // Be sure that the logging configuration is secure before enabling such access // eg for the examples web application: Modified: tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml?rev=821351&r1=821350&r2=821351&view=diff ============================================================================== --- tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml (original) +++ tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml Sat Oct 3 16:17:53 2009 @@ -65,6 +65,10 @@ 47518: Correct reference in Valve Javadoc that referred to an old method. Patch provided by Christopher Schultz. (markt) + + Add an additional permission required by JULI when running under newer + JDKs and a security manager. (markt) + @@ -93,6 +97,9 @@ gets invalidated. Otherwise session listeners will not see the right data on the secondary nodes. (rjung) + + Remove unnecessary Java5 dependencies. (markt) + --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org