[jira] [Created] (MTOMCAT-228) Provide option to deploy war file(s) from a location when executing run mojo

2013-06-16 Thread Peter Nguyen (JIRA)
Peter Nguyen created MTOMCAT-228: Summary: Provide option to deploy war file(s) from a location when executing run mojo Key: MTOMCAT-228 URL: https://issues.apache.org/jira/browse/MTOMCAT-228 Project:

svn commit: r1493615 - /tomcat/trunk/java/org/apache/tomcat/util/codec/binary/BaseNCodec.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 23:32:31 2013 New Revision: 1493615 URL: http://svn.apache.org/r1493615 Log: Fix FindBugs warning - better debug message Modified: tomcat/trunk/java/org/apache/tomcat/util/codec/binary/BaseNCodec.java Modified: tomcat/trunk/java/org/apache/tomcat/util/codec/bin

svn commit: r1493612 - /tomcat/trunk/res/findbugs/filter-false-positives.xml

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 23:19:53 2013 New Revision: 1493612 URL: http://svn.apache.org/r1493612 Log: More false positives Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml URL: http://svn.apache.org/viewvc/to

Re: svn commit: r1493584 - in /tomcat/trunk: res/findbugs/filter-false-positives.xml test/org/apache/catalina/core/TestApplicationSessionCookieConfig.java

2013-06-16 Thread Mark Thomas
On 16/06/2013 22:32, Nick Williams wrote: > > On Jun 16, 2013, at 4:14 PM, ma...@apache.org wrote: > >> Author: markt Date: Sun Jun 16 21:14:37 2013 New Revision: 1493584 > Maybe it's just me, but it seems like you should be a little more > specific here. Specifying the method or methods and the

svn commit: r1493607 - /tomcat/trunk/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 23:12:04 2013 New Revision: 1493607 URL: http://svn.apache.org/r1493607 Log: Fix a FindBugs warning. Correctly handle a timeout. Modified: tomcat/trunk/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java Modified: tomcat/trunk/java/org/apache/tomca

svn commit: r1493605 - in /tomcat/trunk/java/org/apache/tomcat/websocket/pojo: PojoMessageHandlerPartialBase.java PojoMessageHandlerWholeBase.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 23:06:51 2013 New Revision: 1493605 URL: http://svn.apache.org/r1493605 Log: Fix FindBugs warnings. params is never null so no need to test for null Modified: tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMessageHandlerPartialBase.java tomcat/trun

Re: svn commit: r1493584 - in /tomcat/trunk: res/findbugs/filter-false-positives.xml test/org/apache/catalina/core/TestApplicationSessionCookieConfig.java

2013-06-16 Thread Nick Williams
On Jun 16, 2013, at 4:14 PM, ma...@apache.org wrote: > Author: markt > Date: Sun Jun 16 21:14:37 2013 > New Revision: 1493584 > > URL: http://svn.apache.org/r1493584 > Log: > Fix FindBugs warnings in test code > > Modified: >tomcat/trunk/res/findbugs/filter-false-positives.xml > > tomca

svn commit: r1493584 - in /tomcat/trunk: res/findbugs/filter-false-positives.xml test/org/apache/catalina/core/TestApplicationSessionCookieConfig.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 21:14:37 2013 New Revision: 1493584 URL: http://svn.apache.org/r1493584 Log: Fix FindBugs warnings in test code Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml tomcat/trunk/test/org/apache/catalina/core/TestApplicationSessionCookieConfig.java

[Bug 55017] Ability to configure RMI bind address

2013-06-16 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55017 --- Comment #11 from Alexey Noskov --- Are there other areas in which this patch should be improved? -- You are receiving this mail because: You are the assignee for the bug. --

[Bug 53770] tomcat-pool: always log validation query syntax errors

2013-06-16 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53770 marko asplund changed: What|Removed |Added CC||marko.aspl...@gmail.com -- You ar

[Bug 55104] Allow passing arguments with spaces to Commons Daemon

2013-06-16 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55104 marko asplund changed: What|Removed |Added CC||marko.aspl...@gmail.com -- You ar

[Bug 55104] Allow passing arguments with spaces to Commons Daemon

2013-06-16 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55104 --- Comment #1 from marko asplund --- Created attachment 30446 --> https://issues.apache.org/bugzilla/attachment.cgi?id=30446&action=edit allow passing arguments with spaces -- You are receiving this mail because: You are the assignee f

[Bug 55104] New: Allow passing arguments with spaces to Commons Daemon

2013-06-16 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55104 Bug ID: 55104 Summary: Allow passing arguments with spaces to Commons Daemon Product: Tomcat 7 Version: 7.0.41 Hardware: All OS: All Status: NEW Sev

svn commit: r1493526 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractOutputBuffer.java InternalAprOutputBuffer.java InternalNioOutputBuffer.java InternalOutputBuffer.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 16:20:24 2013 New Revision: 1493526 URL: http://svn.apache.org/r1493526 Log: Pull up common constructor code Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractOutputBuffer.java tomcat/trunk/java/org/apache/coyote/http11/InternalAprOutputBuffer.jav

Re: MD5Encoder.encode versus HexUtils.toHexString

2013-06-16 Thread Mark Thomas
On 15/06/2013 16:39, Christopher Schultz wrote: > All, > > While looking into a patch for BasicRealm, I noticed that there are two > classes that convert byte[] to a hex-encoded string (e.g. byte[] { 1, 2, > a, b ] -> "12ab"): HexUtils and MD5Encoder. That isn't what those methods do. There are 2

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

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 10:29:13 2013 New Revision: 1493491 URL: http://svn.apache.org/r1493491 Log: Fix a TODO. Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Processor.java Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Processor.java URL: h

svn commit: r1493490 - /tomcat/trunk/java/org/apache/coyote/http11/InternalOutputBuffer.java

2013-06-16 Thread markt
Author: markt Date: Sun Jun 16 10:19:29 2013 New Revision: 1493490 URL: http://svn.apache.org/r1493490 Log: Method doesn't throw an exception Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalOutputBuffer.java Modified: tomcat/trunk/java/org/apache/coyote/http11/InternalOutputBuff

Bug report for Tomcat Modules [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat Native [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat Connectors [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat 6 [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Taglibs [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat 8 [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat 7 [2013/06/16]

2013-06-16 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned