svn commit: r1518097 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/startup/Tomcat.java test/org/apache/catalina/startup/TestTomcat.java webapps/docs/changelog.xml

2013-08-28 Thread violetagg
Author: violetagg Date: Wed Aug 28 08:12:46 2013 New Revision: 1518097 URL: http://svn.apache.org/r1518097 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=51526 Merged revision 1517941 from tomcat/trunk: o.a.catalina.startup.Tomcat.addWebapp(...) will process web application's

[Bug 51526] Process web application context config with embedded Tomcat.addWebApp(...)

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51526 Violeta Georgieva violet...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r1518101 - in /tomcat/tc7.0.x/trunk/test/deployment: ./ context.war dirContext/ dirContext/META-INF/ dirContext/META-INF/context.xml dirContext/index.html dirNoContext/ dirNoContext/index.

2013-08-28 Thread violetagg
Author: violetagg Date: Wed Aug 28 08:24:10 2013 New Revision: 1518101 URL: http://svn.apache.org/r1518101 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=51526 Added missing test resources. Added: tomcat/tc7.0.x/trunk/test/deployment/ (with props)

[jira] [Created] (MTOMCAT-235) War file is being uploaded twice - Cookie rejected

2013-08-28 Thread George Smith (JIRA)
George Smith created MTOMCAT-235: Summary: War file is being uploaded twice - Cookie rejected Key: MTOMCAT-235 URL: https://issues.apache.org/jira/browse/MTOMCAT-235 Project: Apache Tomcat Maven

[jira] [Updated] (MTOMCAT-235) War file is being uploaded twice - Cookie rejected

2013-08-28 Thread George Smith (JIRA)
[ https://issues.apache.org/jira/browse/MTOMCAT-235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] George Smith updated MTOMCAT-235: - Description: When I run maven task for (re)deploy, the file is always being uploaded twice. I

[jira] [Updated] (MTOMCAT-235) War file is being uploaded twice - Cookie rejected

2013-08-28 Thread George Smith (JIRA)
[ https://issues.apache.org/jira/browse/MTOMCAT-235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] George Smith updated MTOMCAT-235: - Description: When I run maven task for (re)deploy, the file is always being uploaded twice. I

buildbot failure in ASF Buildbot on tomcat-7-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1369 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build

svn commit: r1518113 - /tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 09:08:54 2013 New Revision: 1518113 URL: http://svn.apache.org/r1518113 Log: Fix typo Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java URL:

buildbot success in ASF Buildbot on tomcat-7-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1370 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build

svn commit: r1518128 - /tomcat/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 09:58:54 2013 New Revision: 1518128 URL: http://svn.apache.org/r1518128 Log: Simplify. Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java URL:

svn commit: r1518133 - /tomcat/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:06:53 2013 New Revision: 1518133 URL: http://svn.apache.org/r1518133 Log: Remove code that duplicates code in super.available() which is called immediately before the duplicate code. Modified:

svn commit: r1518135 - /tomcat/trunk/java/org/apache/coyote/http11/AbstractInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:09:48 2013 New Revision: 1518135 URL: http://svn.apache.org/r1518135 Log: Rename loal variable prior to some refactoring. Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractInputBuffer.java Modified:

svn commit: r1518143 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractInputBuffer.java InternalAprInputBuffer.java InternalInputBuffer.java InternalNioInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:17:00 2013 New Revision: 1518143 URL: http://svn.apache.org/r1518143 Log: Refactoring. Make the log instance available to the super class. Use imports rather than fully-qualified names. Modified:

svn commit: r1518144 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractInputBuffer.java InternalNioInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:20:21 2013 New Revision: 1518144 URL: http://svn.apache.org/r1518144 Log: Refactoring. Pull up code from NIO that also does a non-blocking read in the available() call. This makes NIO and APR consistent. BIO is unaffected as it overrides available() and always

svn commit: r1518147 - /tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Processor.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:23:52 2013 New Revision: 1518147 URL: http://svn.apache.org/r1518147 Log: Remove unnecessary code. inputBuffer.avaiable() now includes a call to nbRead() to check for available data if the buffer is empty. Modified:

svn commit: r1518153 - in /tomcat/trunk/java/org/apache/coyote/http11: InternalAprInputBuffer.java LocalStrings.properties

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:43:16 2013 New Revision: 1518153 URL: http://svn.apache.org/r1518153 Log: Fix some broken exception messages. Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java

svn commit: r1518154 - /tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:45:05 2013 New Revision: 1518154 URL: http://svn.apache.org/r1518154 Log: Handle non-standard OSX behaviour on non-blocking reads that return no data in fill() as well as nbRead() Modified:

svn commit: r1518155 - /tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:51:20 2013 New Revision: 1518155 URL: http://svn.apache.org/r1518155 Log: Simplify nested if statements Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java Modified:

svn commit: r1518156 - /tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:52:13 2013 New Revision: 1518156 URL: http://svn.apache.org/r1518156 Log: Handle EAGAIN return code (expected for non-blocking reads when no data is available) Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalAprInputBuffer.java Modified:

svn commit: r1518158 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractInputBuffer.java InternalAprInputBuffer.java InternalInputBuffer.java InternalNioInputBuffer.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 10:58:05 2013 New Revision: 1518158 URL: http://svn.apache.org/r1518158 Log: Remove nbRead(). Calls to available() now trigger a call of fill(false) (i.e. non-blocking). This avoids a problem observed on the users list where repeated calls to available() in turn

[Tomcat Wiki] Update of ContributorsGroup by markt

2013-08-28 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on Tomcat Wiki for change notification. The ContributorsGroup page has been changed by markt: https://wiki.apache.org/tomcat/ContributorsGroup?action=diffrev1=9rev2=10 Comment: += GFUCyrusAG * NevenCvetkovic * ShawnYu

[Bug 55493] New: How to configure OCSP with tomcat and how to test once it's setup

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55493 Bug ID: 55493 Summary: How to configure OCSP with tomcat and how to test once it's setup Product: Tomcat 7 Version: 7.0.40 Hardware: DEC OS: Linux

Re: svn commit: r1504148 - in /tomcat/trunk: java/org/apache/jasper/compiler/ java/org/apache/jasper/el/ java/org/apache/jasper/runtime/ test/javax/el/ test/org/apache/el/ test/org/apache/el/parser/ t

2013-08-28 Thread Remy Maucherat
On Wed, 2013-07-17 at 14:14 +, ma...@apache.org wrote: Author: markt Date: Wed Jul 17 14:14:28 2013 New Revision: 1504148 URL: http://svn.apache.org/r1504148 Log: Add the two new resolver types (stream and static) to Jasper in the correct order and modify JasperELResolver so the

[Bug 55493] How to configure OCSP with tomcat and how to test once it's setup

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55493 Mark Thomas ma...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r1518178 - /tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 12:36:16 2013 New Revision: 1518178 URL: http://svn.apache.org/r1518178 Log: Better comment Modified: tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java Modified: tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java URL:

Re: [Bug 55317] Facilitate weaving by allowing ClassFileTransformer to be added to WebppClassLoader

2013-08-28 Thread Nick Williams
On Aug 21, 2013, at 6:21 PM, bugzi...@apache.org wrote: https://issues.apache.org/bugzilla/show_bug.cgi?id=55317 Nick Williams nicho...@nicholaswilliams.net changed: What|Removed |Added

[Bug 55494] New: JNDIRealm throws exception after timeout / Connection reset

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 Bug ID: 55494 Summary: JNDIRealm throws exception after timeout / Connection reset Product: Tomcat 7 Version: 7.0.41 Hardware: PC Status: NEW

[Bug 55494] JNDIRealm throws exception after timeout / Connection reset

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 Thomas Hoffmann thomas.hoffm...@speed4trade.com changed: What|Removed |Added OS|

svn commit: r1518189 - in /tomcat/trunk: java/org/apache/coyote/ajp/AbstractAjpProcessor.java test/org/apache/coyote/ajp/TestAbstractAjpProcessor.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:01:03 2013 New Revision: 1518189 URL: http://svn.apache.org/r1518189 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55453 Do not return a response body for those status codes and request methods that do not permit one. Modified:

[Bug 55494] JNDIRealm throws exception after timeout / Connection reset

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 --- Comment #2 from Mark Thomas ma...@apache.org --- This bug report only contains statements of fact. It does not identify what the problem is. Arguably, a valid warning is being logged. There is no clear issue that needs addressing. A

svn commit: r1518195 - /tomcat/tc7.0.x/trunk/test/org/apache/catalina/startup/TestTomcat.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:11:12 2013 New Revision: 1518195 URL: http://svn.apache.org/r1518195 Log: Fix import order Modified: tomcat/tc7.0.x/trunk/test/org/apache/catalina/startup/TestTomcat.java Modified: tomcat/tc7.0.x/trunk/test/org/apache/catalina/startup/TestTomcat.java URL:

svn commit: r1518194 - in /tomcat/tc7.0.x/trunk/test/org/apache/coyote/ajp: SimpleAjpClient.java TestAbstractAjpProcessor.java TesterAjpMessage.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:10:49 2013 New Revision: 1518194 URL: http://svn.apache.org/r1518194 Log: Extend the AJP test client to support methods other than GET and implement a simple POST test. Modified: tomcat/tc7.0.x/trunk/test/org/apache/coyote/ajp/SimpleAjpClient.java

svn commit: r1518197 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/coyote/Request.java java/org/apache/coyote/ajp/AbstractAjpProcessor.java webapps/docs/changelog.xml

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:17:12 2013 New Revision: 1518197 URL: http://svn.apache.org/r1518197 Log: Content length is managed internally as a long. Fix a few places that were unnecessarily restricting it to an int. Modified: tomcat/tc7.0.x/trunk/ (props changed)

svn commit: r1518198 - in /tomcat/tc7.0.x/trunk: ./ test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:18:38 2013 New Revision: 1518198 URL: http://svn.apache.org/r1518198 Log: Fix comment Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java Propchange:

svn commit: r1518199 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/coyote/ajp/AbstractAjpProcessor.java test/org/apache/coyote/ajp/TestAbstractAjpProcessor.java webapps/docs/changelog.xml

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 13:22:13 2013 New Revision: 1518199 URL: http://svn.apache.org/r1518199 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55453 Do not return a response body for those status codes and request methods that do not permit one. Modified:

[Bug 55453] AJP send Body with Status 304

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55453 Mark Thomas ma...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 55494] JNDIRealm throws exception after timeout / Connection reset

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 --- Comment #3 from Thomas Hoffmann thomas.hoffm...@speed4trade.com --- Thanks for your comment! I assumed that some users failed to logon because of this error. According to the code in JNDIRealm.java, Tomcat will try once more after

svn commit: r1518210 - in /tomcat/trunk/java/org/apache/catalina/realm: JNDIRealm.java LocalStrings.properties

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 14:02:50 2013 New Revision: 1518210 URL: http://svn.apache.org/r1518210 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 Reduce log level of exception messages that are logged for re-tries. Make clear in the message that a retry is taking place.

[jira] [Commented] (MTOMCAT-92) Bind tomcat to a self-chosen network interface

2013-08-28 Thread Daniel Cassidy (JIRA)
[ https://issues.apache.org/jira/browse/MTOMCAT-92?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13752414#comment-13752414 ] Daniel Cassidy commented on MTOMCAT-92: --- It's precisely because tomcat-maven-plugin

[Bug 55494] JNDIRealm throws exception after timeout / Connection reset

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 Mark Thomas ma...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r1518212 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/realm/JNDIRealm.java java/org/apache/catalina/realm/LocalStrings.properties webapps/docs/changelog.xml

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 14:05:19 2013 New Revision: 1518212 URL: http://svn.apache.org/r1518212 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55494 Reduce log level of exception messages that are logged for re-tries. Make clear in the message that a retry is taking place.

Re: [Bug 55317] Facilitate weaving by allowing ClassFileTransformer to be added to WebppClassLoader

2013-08-28 Thread Mark Thomas
On 28/08/2013 13:36, Nick Williams wrote: On Aug 21, 2013, at 6:21 PM, bugzi...@apache.org wrote: https://issues.apache.org/bugzilla/show_bug.cgi?id=55317 Nick Williams nicho...@nicholaswilliams.net changed: What|Removed |Added

buildbot failure in ASF Buildbot on tomcat-7-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1371 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build

svn commit: r1518214 - /tomcat/trunk/java/org/apache/jasper/el/ELContextImpl.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 14:14:09 2013 New Revision: 1518214 URL: http://svn.apache.org/r1518214 Log: Add new resolvers to default resolver (bug spotted by remm) Modified: tomcat/trunk/java/org/apache/jasper/el/ELContextImpl.java Modified:

Re: svn commit: r1504148 - in /tomcat/trunk: java/org/apache/jasper/compiler/ java/org/apache/jasper/el/ java/org/apache/jasper/runtime/ test/javax/el/ test/org/apache/el/ test/org/apache/el/parser/ t

2013-08-28 Thread Mark Thomas
On 28/08/2013 13:00, Remy Maucherat wrote: On Wed, 2013-07-17 at 14:14 +, ma...@apache.org wrote: Author: markt Date: Wed Jul 17 14:14:28 2013 New Revision: 1504148 URL: http://svn.apache.org/r1504148 Log: Add the two new resolver types (stream and static) to Jasper in the correct

Re: [Bug 55317] Facilitate weaving by allowing ClassFileTransformer to be added to WebppClassLoader

2013-08-28 Thread Nick Williams
On Aug 28, 2013, at 9:07 AM, Mark Thomas wrote: On 28/08/2013 13:36, Nick Williams wrote: On Aug 21, 2013, at 6:21 PM, bugzi...@apache.org wrote: https://issues.apache.org/bugzilla/show_bug.cgi?id=55317 Nick Williams nicho...@nicholaswilliams.net changed: What|Removed

svn commit: r1518215 - /tomcat/tc7.0.x/trunk/test/org/apache/coyote/ajp/TestAbstractAjpProcessor.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 14:23:37 2013 New Revision: 1518215 URL: http://svn.apache.org/r1518215 Log: Fix back-ported test. Webapp location in 7.0.x is slightly different. Modified: tomcat/tc7.0.x/trunk/test/org/apache/coyote/ajp/TestAbstractAjpProcessor.java Modified:

[Bug 55477] Add a solution to map an realm name to a security role

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55477 --- Comment #5 from Christopher Schultz ch...@christopherschultz.net --- I'm not sure I understand your statement. Can you explain further? -- You are receiving this mail because: You are the assignee for the bug.

[Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #18 from Christopher Schultz ch...@christopherschultz.net --- Re: XHTML (or application/xml), I think it's reasonable to clean-up our documentation such that the documents would pass an XHTML validator, so that when the day

svn commit: r1518225 - /tomcat/native/branches/1.1.x/native/src/network.c

2013-08-28 Thread schultz
Author: schultz Date: Wed Aug 28 14:52:00 2013 New Revision: 1518225 URL: http://svn.apache.org/r1518225 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=51813 Add NULL-checking for s-net to avoid SIGSEGV in situations where it appears a socket has been recycled. Modified:

[Bug 51813] Tomcat randomly crashes with [libtcnative-1.so.1+0x152ca] Java_org_apache_tomcat_jni_Socket_sendbb+0x5a

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51813 Christopher Schultz ch...@christopherschultz.net changed: What|Removed |Added Status|NEW

[Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #19 from Mark Thomas ma...@apache.org --- The CI system makes the latest build of the docs available to view: http://ci.apache.org/projects/tomcat/tomcat8/docs/ -- You are receiving this mail because: You are the assignee for

Re: svn commit: r1518214 - /tomcat/trunk/java/org/apache/jasper/el/ELContextImpl.java

2013-08-28 Thread Remy Maucherat
On Wed, 2013-08-28 at 14:14 +, ma...@apache.org wrote: Author: markt Date: Wed Aug 28 14:14:09 2013 New Revision: 1518214 URL: http://svn.apache.org/r1518214 Log: Add new resolvers to default resolver (bug spotted by remm) DefaultResolver = new CompositeELResolver(); +

Re: [Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread Christopher Schultz
Mark, On 8/28/13 10:59 AM, bugzi...@apache.org wrote: https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #19 from Mark Thomas ma...@apache.org --- The CI system makes the latest build of the docs available to view: http://ci.apache.org/projects/tomcat/tomcat8/docs/

buildbot success in ASF Buildbot on tomcat-7-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-7-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-7-trunk/builds/1373 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build

buildbot failure in ASF Buildbot on tomcat-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/4888 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build Source

[jira] [Created] (MTOMCAT-236) tomcat-maven-archetype creates project with failing test

2013-08-28 Thread Daniel Cassidy (JIRA)
Daniel Cassidy created MTOMCAT-236: -- Summary: tomcat-maven-archetype creates project with failing test Key: MTOMCAT-236 URL: https://issues.apache.org/jira/browse/MTOMCAT-236 Project: Apache Tomcat

[jira] [Updated] (MTOMCAT-236) tomcat-maven-archetype creates project with failing test

2013-08-28 Thread Daniel Cassidy (JIRA)
[ https://issues.apache.org/jira/browse/MTOMCAT-236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Cassidy updated MTOMCAT-236: --- Description: tomcat-maven-archetype currently creates a project with a Selenium test that

[jira] [Commented] (MTOMCAT-236) tomcat-maven-archetype creates project with failing test

2013-08-28 Thread Daniel Cassidy (JIRA)
[ https://issues.apache.org/jira/browse/MTOMCAT-236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13752549#comment-13752549 ] Daniel Cassidy commented on MTOMCAT-236: To fix this you can pull from this git

[Bug 55477] Add a solution to map an realm name to a security role

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55477 --- Comment #6 from Stefan Mayr ste...@mayr-stefan.de --- I thought about defining a custom ressource to make an inline configuration possible without messing with the Digester rules. So I searched and found

svn commit: r1518328 - in /tomcat/trunk: java/javax/el/LocalStrings.properties java/javax/el/Util.java java/org/apache/el/parser/AstValue.java java/org/apache/el/util/ReflectionUtil.java test/javax/el

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 19:02:39 2013 New Revision: 1518328 URL: http://svn.apache.org/r1518328 Log: Partial fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=55483 This fixes calling overloaded methods and aligns the method matching code in the API and the implementation.

buildbot success in ASF Buildbot on tomcat-trunk

2013-08-28 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/4889 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: bb-vm_ubuntu Build Reason: scheduler Build

[Bug 55483] ELException when object has overloaded methods

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55483 Mark Thomas ma...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r1518381 - in /tomcat/trunk: java/javax/el/Util.java test/javax/el/TestStaticFieldELResolver.java test/javax/el/TestUtil.java

2013-08-28 Thread markt
Author: markt Date: Wed Aug 28 20:50:13 2013 New Revision: 1518381 URL: http://svn.apache.org/r1518381 Log: Remainder of fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=55483 Handle overloaded consructors. As far as the constructor matching code is concerned, constructors can be

[Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #20 from Sebb s...@apache.org --- Created attachment 30778 -- https://issues.apache.org/bugzilla/attachment.cgi?id=30778action=edit Misaligned display IE8 top -- You are receiving this mail because: You are the assignee for

[Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #21 from Sebb s...@apache.org --- Created attachment 30779 -- https://issues.apache.org/bugzilla/attachment.cgi?id=30779action=edit Misaligned display IE8 bottom -- You are receiving this mail because: You are the assignee

[Bug 55383] Improve markup and design of Tomcat's HTML pages

2013-08-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 --- Comment #22 from Sebb s...@apache.org --- The display looks a bit odd in IE8 (WinXP). The images in the top row don't display correctly. The bottom row is missing the text Comments are disabled for this page at the moment. and the

[GUMP@vmgump]: Project tomcat-trunk-test (in module tomcat-trunk) failed

2013-08-28 Thread Bill Barker
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-trunk-test has an issue affecting its community integration. This