svn commit: r1670012 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/valves/AccessLogValve.java

2015-03-30 Thread rjung
Author: rjung Date: Mon Mar 30 08:36:37 2015 New Revision: 1670012 URL: http://svn.apache.org/r1670012 Log: No functional change: - move enum to top (more enum coming soon) - rename var "header" to "name", because the concept is more general Backport of r1669876 from trunk resp. r1669895 from t

svn commit: r1670017 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/valves/AccessLogValve.java java/org/apache/catalina/valves/LocalStrings.properties webapps/docs/changelog.xml webapps/docs/

2015-03-30 Thread rjung
Author: rjung Date: Mon Mar 30 09:01:48 2015 New Revision: 1670017 URL: http://svn.apache.org/r1670017 Log: Add new %{xxx}p with xxx==local or xxx===remote to allow logging remote and/or local port in the access log. Same xxx values as in Apache httpd, except httpd also allows "canonical". Loggi

[GUMP@vmgump]: Project tomcat-tc8.0.x-test-nio2 (in module tomcat-8.0.x) failed

2015-03-30 Thread Bill Barker
rkspace/junit/target/junit-4.13-SNAPSHOT.jar -Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.2-SNAPSHOT.jar -Dtest.reports=output/logs-NIO2 -Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20150330-native-src.tar.gz -Dexampl

[Bug 57779] New: Deadlock if using separate thread to write to ServletOutputStream

2015-03-30 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57779 Bug ID: 57779 Summary: Deadlock if using separate thread to write to ServletOutputStream Product: Tomcat 7 Version: 7.0.59 Hardware: All OS: All

Re: [VOTE] Release Apache Tomcat 7.0.61

2015-03-30 Thread Konstantin Kolinko
2015-03-27 15:36 GMT+03:00 Violeta Georgieva : > The proposed Apache Tomcat 7.0.61 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.61/ > The Maven staging repo is: > https://repository.apache.org/content/repositories/or

[GitHub] tomcat pull request: Added support for addWebapp(String, InputStre...

2015-03-30 Thread ThreaT
GitHub user ThreaT opened a pull request: https://github.com/apache/tomcat/pull/19 Added support for addWebapp(String, InputStream) When using embedded tomcat, if jsp files are inside the jar file, it is impossible to use the respective jsp files as a webapp unless tomcat accepts

[GitHub] tomcat pull request: Added support for addWebapp(String, InputStre...

2015-03-30 Thread kkolinko
Github user kkolinko commented on the pull request: https://github.com/apache/tomcat/pull/19#issuecomment-87686379 1) Bugzilla issue = ? 2) "it is impossible to use the respective jsp files as a webapp" - I do not believe that, with Resources Jars support in Servlet 3.0 spec.

[GitHub] tomcat pull request: Added support for addWebapp(String, InputStre...

2015-03-30 Thread ThreaT
Github user ThreaT commented on the pull request: https://github.com/apache/tomcat/pull/19#issuecomment-87694748 1) I'm not sure 2) Why does it have to? 3) Sorry about formatting. Please see last commit of the three as I removed it. I kept "docBase" in order to accurately overl

Re: [Bug 57759] Clarify keyAlias definition to reduce likelihood of readers making invalid assumptions

2015-03-30 Thread Mark Thomas
On 29/03/2015 22:49, Andrew Carr wrote: > You want me to do the backport? Thanks for the offer but I have already done it (doc back-ports are usually easy since the docs are generally consistent between versions). > Do you do it for all versions that the > keyAlias setting applies to? How far b

[GitHub] tomcat pull request: Added support for addWebapp(String, InputStre...

2015-03-30 Thread markt-asf
Github user markt-asf commented on the pull request: https://github.com/apache/tomcat/pull/19#issuecomment-87757450 -1. Servlet 3.0 and later webapps have resource JARs (assuming the JAR is packaged correctly). For single JAR apps, the Tomcat 8 resources implementation can be used

[GitHub] tomcat pull request: Added support for addWebapp(String, InputStre...

2015-03-30 Thread ThreaT
Github user ThreaT commented on the pull request: https://github.com/apache/tomcat/pull/19#issuecomment-87801001 Just so we're on the same page, I tried: ``` context = tomcat.addWebapp("/", "jar:file:/home/user/test/MyJar.jar!/com/mvc/view"); ``` Which I found