[Bug 55986] New: catalina.sh -force may falsely report "Tomcat has not been killed completely yet"

2014-01-11 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55986

Bug ID: 55986
   Summary: catalina.sh -force may falsely report "Tomcat has not
been killed completely yet"
   Product: Tomcat 7
   Version: trunk
  Hardware: All
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
  Assignee: dev@tomcat.apache.org
  Reporter: j...@thrysoee.dk

Created attachment 31197
  --> https://issues.apache.org/bugzilla/attachment.cgi?id=31197&action=edit
catalina.sh patch

When catalina.sh -force is called and rm -f "$CATALINA_PID" succeeds,
KILL_SLEEP_INTERVAL is not set to zero and the warning "Tomcat has not been
killed completely yet" is falsely reported.

This may be fixed by moving the KILL_SLEEP_INTERVAL=0 statement out below the
"rm -f "$CATALINA_PID" error handling block. See attached patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 55988] New: Add parameter useCipherSuitesOrder to JSSE (BIO and NIO) connectors

2014-01-11 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55988

Bug ID: 55988
   Summary: Add parameter useCipherSuitesOrder to JSSE (BIO and
NIO) connectors
   Product: Tomcat 8
   Version: trunk
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Connectors
  Assignee: dev@tomcat.apache.org
  Reporter: ognjen.d.blagoje...@gmail.com

Starting with Oracle Java 1.8.0 B108, JSSE supports server-side cipher ordering
[1]. Server-side cipher ordering is useful for enabling Forward Secrecy and for
preventing certain attacks. Appropriate JSSE parameter is called
useCipherSuitesOrder [2].

Is it possible to add that same attribute to Tomcat JSSE connectors?

The problem is that parameter useCipherSuitesOrder is only available starting
with Java 1.8 B108, while Tomcat 8 requires only Java 1.7. Therefore the
proposal is, if Tomcat 8:

(a) runs using Java 1.7 / 1.8 pre-B108, parameter useCipherSuitesOrder would be
ignored, and if 
(b) runs using Java 1.8 B108+, JSSE parameter useCipherSuitesOrder would be
appropriately set.

It might be a precedence to support parameter from non-required version of
Java, albeit -- due to the usefulness of such configuration option -- it might
be worthwhile considering.

Note that similar attribute already exists for APR connector --
SSLHonorCipherOrder.

-Ognjen

[1] https://bugs.openjdk.java.net/browse/JDK-7188657
[2]
http://download.java.net/jdk8/docs/api/javax/net/ssl/SSLParameters.html#setUseCipherSuitesOrder-boolean-

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 55988] Add parameter useCipherSuitesOrder to JSSE (BIO and NIO) connectors

2014-01-11 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55988

--- Comment #1 from Ognjen Blagojevic  ---
Created attachment 31198
  --> https://issues.apache.org/bugzilla/attachment.cgi?id=31198&action=edit
Proof of concept patch

Here is initial patch to prove the concept. This patch will always try to set
parameter useCipherSuitesOrder using reflection.

To test it:

(1) Install JDK 1.8.0 EA (must be B108+, tested with B121) [1]
(2) Install Java 7 JCE Unlimited Strength (it also works with JDK 1.8.0 EA) [2]
(3) Apply patch, build Tomcat
(4) Add JSSE Connector configuration to server.xml:



(5) Start Tomcat. Forward Secrecy is enabled (on all clients that support it)

-Ognjen

[1] https://jdk8.java.net/download.html
[2]
http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1557466 - /tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java

2014-01-11 Thread jboynes
Author: jboynes
Date: Sat Jan 11 20:47:04 2014
New Revision: 1557466

URL: http://svn.apache.org/r1557466
Log:
Refactor cookie parsing tests into individual test cases

Modified:
tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java

Modified: tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java?rev=1557466&r1=1557465&r2=1557466&view=diff
==
--- tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java (original)
+++ tomcat/trunk/test/org/apache/tomcat/util/http/TestCookies.java Sat Jan 11 
20:47:04 2014
@@ -17,251 +17,198 @@
 
 package org.apache.tomcat.util.http;
 
+import java.nio.charset.StandardCharsets;
+
+import javax.servlet.http.Cookie;
+
+import org.junit.Assert;
 import org.junit.Test;
 
 public class TestCookies {
+private Cookie FOO = new Cookie("foo", "bar");
+private Cookie BAR = new Cookie("bar", "rab");
+private Cookie A = new Cookie("a", "b");
 
 @Test
-public void testCookies() throws Exception {
-test("foo=bar; a=b", "foo", "bar", "a", "b");
-test("foo=bar;a=b", "foo", "bar", "a", "b");
-test("foo=bar;a=b;", "foo", "bar", "a", "b");
-test("foo=bar;a=b; ", "foo", "bar", "a", "b");
-test("foo=bar;a=b; ;", "foo", "bar", "a", "b");
-test("foo=;a=b; ;",  "a", "b");
-test("foo;a=b; ;", "a", "b");
-// v1
-test("$Version=1; foo=bar;a=b", "foo", "bar", "a", "b");
-
-// OK
-test("$Version=1;foo=bar;a=b; ; ",  "foo", "bar", "a", "b");
-test("$Version=1;foo=;a=b; ; ",  "a", "b");
-test("$Version=1;foo= ;a=b; ; ",  "a", "b");
-test("$Version=1;foo;a=b; ; ", "a", "b");
-test("$Version=1;foo=\"bar\";a=b; ; ", "foo", "bar", "a", "b");
-
-test("$Version=1;foo=\"bar\";$Domain=apache.org;a=b", "foo", "bar", 
"a", "b");
-
test("$Version=1;foo=\"bar\";$Domain=apache.org;a=b;$Domain=yahoo.com", "foo", 
"bar", "a", "b");
-// rfc2965
-test("$Version=1;foo=\"bar\";$Domain=apache.org;$Port=8080;a=b", 
"foo", "bar", "a", "b");
-
-// make sure these never split into two cookies - JVK
-test("$Version=1;foo=\"b\"ar\";$Domain=apache.org;$Port=8080;a=b",  
"foo", "b", "a", "b"); // Incorrectly escaped.
-test("$Version=1;foo=\"b\\\"ar\";$Domain=apache.org;$Port=8080;a=b", 
"foo", "b\"ar", "a", "b"); // correctly escaped.
-test("$Version=1;foo=\"b'ar\";$Domain=apache.org;$Port=8080;a=b", 
"foo", "b'ar", "a", "b");
-// ba'r is OK - ' is not a separator
-test("$Version=1;foo=b'ar;$Domain=apache.org;$Port=8080;a=b", "foo", 
"b'ar", "a", "b");
-
-// Ends in quoted value
-test("foo=bar;a=\"b\"",  "foo", "bar", "a", "b");
-test("foo=bar;a=\"b\";",  "foo", "bar", "a", "b");
-
-// Last character is an escape character
-
test("$Version=1;foo=b'ar;$Domain=\"apache.org\";$Port=8080;a=\"b\\\"", "foo", 
"b'ar");
-test("$Version=1;foo=b'ar;$Domain=\"apache.org\";$Port=8080;a=\"b\\",  
"foo", "b'ar");
-
-// A token cannot be quoted with ' chars - they should be treated as 
part of the value
-test("$Version=\"1\"; foo='bar'; $Path=/path; $Domain=\"localhost\"", 
"foo", "'bar'");
-
-// wrong, path should not have '/' JVK
-test("$Version=1;foo=\"bar\";$Path=/examples;a=b; ; ", "foo", "bar", 
"a", "b");
-
-// wrong
-test("$Version=1;foo=\"bar\";$Domain=apache.org;$Port=8080;a=b", 
"foo", "bar", "a", "b");
-
-// Test name-only at the end of the header
-test("foo;a=b;bar", "a", "b");
-test("foo;a=b;bar;", "a", "b");
-test("foo;a=b;bar ", "a", "b");
-test("foo;a=b;bar ;", "a", "b");
-
-// Multiple delimiters next to each other
-
-// BUG -- the ' ' needs to be skipped.
-test("foo;a=b; ;bar", "a", "b");
-// BUG -- ';' needs skipping
-test("foo;a=b;;bar", "a", "b");
-test("foo;a=b; ;;bar=rab", "a", "b", "bar", "rab");
-// These pass currently
-test("foo;a=b;; ;bar=rab", "a", "b", "bar", "rab");
-
-// '#' is a valid cookie name (not a separator)
-test("foo;a=b;;#;bar=rab","a", "b", "bar", "rab");
-
-
-test("foo;a=b;;\\;bar=rab", "a", "b", "bar", "rab");
-
-// Try all the separators of version1 in version0 cookie.
-// Won't work we only parse version1 cookie result 1 cookie.
-test("a=()<>@:\\\"/[]?={}\t; foo=bar", "foo", "bar");
-
-// Test the version.
-test("$Version=1;foo=bar", 1);
-test("$Version=0;foo=bar", 0);
+public void testBasicCookie() {
+test("foo=bar; a=b", FOO, A);
+test("foo=bar;a=b", FOO, A);
+test("foo=bar;a=b;", FOO, A);
+test("foo=bar;a=b; ", FOO, A);
+test("foo=bar;a=b; ;", FOO, A);
 }
 
 @Test
-

Taglib Site Update

2014-01-11 Thread Henri Yandell
Started digging into this last night. New computer so checkout, figure out
right version of Maven etc. 3.1.1 has issues with the site, so you have to
stay on 3.0.5.

I've made some initial changes, then discovered that we seem to have lost
the xdoc for the website (one file) for the standard subcomponent. So my
task tonight is to hunt that page down in the svn history and bring it
back.

Hen


Re: svn commit: r1555177 - in /tomcat/taglibs: extended/trunk/ rdc/trunk/ rdc/trunk/taglibs-rdc-dist/ rdc/trunk/taglibs-rdc-examples/ rdc/trunk/taglibs-rdc/ site/ standard/trunk/ taglibs-parent/trunk/

2014-01-11 Thread Henri Yandell
Shouldn't be changing the copyright date until we actually make a
copyrightable modification to that product.

Hen


On Fri, Jan 3, 2014 at 10:08 AM,  wrote:

> Author: rjung
> Date: Fri Jan  3 18:08:32 2014
> New Revision: 1555177
>
> URL: http://svn.apache.org/r1555177
> Log:
> Happy new 2014!
>
> Modified:
> tomcat/taglibs/extended/trunk/NOTICE.txt
> tomcat/taglibs/rdc/trunk/NOTICE.txt
> tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
> tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
> tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt
> tomcat/taglibs/site/NOTICE.txt
> tomcat/taglibs/standard/trunk/NOTICE
> tomcat/taglibs/taglibs-parent/trunk/NOTICE
>
> Modified: tomcat/taglibs/extended/trunk/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/extended/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/extended/trunk/NOTICE.txt (original)
> +++ tomcat/taglibs/extended/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
> @@ -1,5 +1,5 @@
>  Apache Extended Taglib
> -Copyright 2009-2012 The Apache Software Foundation
> +Copyright 2009-2014 The Apache Software Foundation
>
> -This product includes software developed by
> +This product includes software developed at
>  The Apache Software Foundation (http://www.apache.org/).
>
> Modified: tomcat/taglibs/rdc/trunk/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/rdc/trunk/NOTICE.txt (original)
> +++ tomcat/taglibs/rdc/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
> @@ -1,5 +1,5 @@
>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> -Copyright 2004-2012 The Apache Software Foundation
> +Copyright 2004-2014 The Apache Software Foundation
>
> -This product includes software developed by
> +This product includes software developed at
>  The Apache Software Foundation (http://www.apache.org/).
>
> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt (original)
> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt Fri Jan  3
> 18:08:32 2014
> @@ -1,5 +1,5 @@
>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> Distributions
> -Copyright 2004-2012 The Apache Software Foundation
> +Copyright 2004-2014 The Apache Software Foundation
>
> -This product includes software developed by
> +This product includes software developed at
>  The Apache Software Foundation (http://www.apache.org/).
>
> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt (original)
> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt Fri Jan  3
> 18:08:32 2014
> @@ -1,5 +1,5 @@
>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> Examples Application
> -Copyright 2004-2012 The Apache Software Foundation
> +Copyright 2004-2014 The Apache Software Foundation
>
> -This product includes software developed by
> +This product includes software developed at
>  The Apache Software Foundation (http://www.apache.org/).
>
> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt (original)
> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt Fri Jan  3 18:08:32
> 2014
> @@ -1,5 +1,5 @@
>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> -Copyright 2004-2012 The Apache Software Foundation
> +Copyright 2004-2014 The Apache Software Foundation
>
> -This product includes software developed by
> +This product includes software developed at
>  The Apache Software Foundation (http://www.apache.org/).
>
> Modified: tomcat/taglibs/site/NOTICE.txt
> URL:
> http://svn.apache.org/viewvc/tomcat/taglibs/site/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>
> ==
> --- tomcat/taglibs/site/NOTICE.txt (original)
> +++ tomcat/taglibs/site/NOTICE.txt Fri Jan  3 18:08:32 2014
> @@ -1,5 +1,5 @@
>  Apache Jakarta Taglib Website
> -Copyright 2009-2012 The Apache Software Foundatio

Re: svn commit: r1555177 - in /tomcat/taglibs: extended/trunk/ rdc/trunk/ rdc/trunk/taglibs-rdc-dist/ rdc/trunk/taglibs-rdc-examples/ rdc/trunk/taglibs-rdc/ site/ standard/trunk/ taglibs-parent/trunk/

2014-01-11 Thread Konstantin Kolinko
2014/1/12 Henri Yandell :
> Shouldn't be changing the copyright date until we actually make a
> copyrightable modification to that product.
>

I think this itself is one,  as it fixes typos in the NOTICE files.

Best regards,
Konstantin Kolinko

> On Fri, Jan 3, 2014 at 10:08 AM,  wrote:
>
>> Author: rjung
>> Date: Fri Jan  3 18:08:32 2014
>> New Revision: 1555177
>>
>> URL: http://svn.apache.org/r1555177
>> Log:
>> Happy new 2014!
>>
>> Modified:
>> tomcat/taglibs/extended/trunk/NOTICE.txt
>> tomcat/taglibs/rdc/trunk/NOTICE.txt
>> tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
>> tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
>> tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt
>> tomcat/taglibs/site/NOTICE.txt
>> tomcat/taglibs/standard/trunk/NOTICE
>> tomcat/taglibs/taglibs-parent/trunk/NOTICE
>>
>> Modified: tomcat/taglibs/extended/trunk/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/extended/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> ==
>> --- tomcat/taglibs/extended/trunk/NOTICE.txt (original)
>> +++ tomcat/taglibs/extended/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
>> @@ -1,5 +1,5 @@
>>  Apache Extended Taglib
>> -Copyright 2009-2012 The Apache Software Foundation
>> +Copyright 2009-2014 The Apache Software Foundation
>>
>> -This product includes software developed by
>> +This product includes software developed at
>>  The Apache Software Foundation (http://www.apache.org/).
>>
>> Modified: tomcat/taglibs/rdc/trunk/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> ==
>> --- tomcat/taglibs/rdc/trunk/NOTICE.txt (original)
>> +++ tomcat/taglibs/rdc/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
>> @@ -1,5 +1,5 @@
>>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
>> -Copyright 2004-2012 The Apache Software Foundation
>> +Copyright 2004-2014 The Apache Software Foundation
>>
>> -This product includes software developed by
>> +This product includes software developed at
>>  The Apache Software Foundation (http://www.apache.org/).
>>
>> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> ==
>> --- tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt (original)
>> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt Fri Jan  3
>> 18:08:32 2014
>> @@ -1,5 +1,5 @@
>>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
>> Distributions
>> -Copyright 2004-2012 The Apache Software Foundation
>> +Copyright 2004-2014 The Apache Software Foundation
>>
>> -This product includes software developed by
>> +This product includes software developed at
>>  The Apache Software Foundation (http://www.apache.org/).
>>
>> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> ==
>> --- tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt (original)
>> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt Fri Jan  3
>> 18:08:32 2014
>> @@ -1,5 +1,5 @@
>>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
>> Examples Application
>> -Copyright 2004-2012 The Apache Software Foundation
>> +Copyright 2004-2014 The Apache Software Foundation
>>
>> -This product includes software developed by
>> +This product includes software developed at
>>  The Apache Software Foundation (http://www.apache.org/).
>>
>> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> ==
>> --- tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt (original)
>> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt Fri Jan  3 18:08:32
>> 2014
>> @@ -1,5 +1,5 @@
>>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
>> -Copyright 2004-2012 The Apache Software Foundation
>> +Copyright 2004-2014 The Apache Software Foundation
>>
>> -This product includes software developed by
>> +This product includes software developed at
>>  The Apache Software Foundation (http://www.apache.org/).
>>
>> Modified: tomcat/taglibs/site/NOTICE.txt
>> URL:
>> http://svn.apache.org/viewvc/tomcat/taglibs/site/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
>>
>> 

Re: Taglib Site Update

2014-01-11 Thread Konstantin Kolinko
2014/1/12 Henri Yandell :
> Started digging into this last night. New computer so checkout, figure out
> right version of Maven etc. 3.1.1 has issues with the site, so you have to
> stay on 3.0.5.
>
> I've made some initial changes, then discovered that we seem to have lost
> the xdoc for the website (one file) for the standard subcomponent. So my
> task tonight is to hunt that page down in the svn history and bring it
> back.

https://svn.apache.org/r1540559
?

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: svn commit: r1555177 - in /tomcat/taglibs: extended/trunk/ rdc/trunk/ rdc/trunk/taglibs-rdc-dist/ rdc/trunk/taglibs-rdc-examples/ rdc/trunk/taglibs-rdc/ site/ standard/trunk/ taglibs-parent/trunk/

2014-01-11 Thread Henri Yandell
On Saturday, January 11, 2014, Konstantin Kolinko wrote:

> 2014/1/12 Henri Yandell >:
> > Shouldn't be changing the copyright date until we actually make a
> > copyrightable modification to that product.
> >
>
> I think this itself is one,  as it fixes typos in the NOTICE files.
>
>
That's not a copyrightable change :)


> Best regards,
> Konstantin Kolinko
>
> > On Fri, Jan 3, 2014 at 10:08 AM,  wrote:
> >
> >> Author: rjung
> >> Date: Fri Jan  3 18:08:32 2014
> >> New Revision: 1555177
> >>
> >> URL: http://svn.apache.org/r1555177
> >> Log:
> >> Happy new 2014!
> >>
> >> Modified:
> >> tomcat/taglibs/extended/trunk/NOTICE.txt
> >> tomcat/taglibs/rdc/trunk/NOTICE.txt
> >> tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
> >> tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
> >> tomcat/taglibs/rdc/trunk/taglibs-rdc/NOTICE.txt
> >> tomcat/taglibs/site/NOTICE.txt
> >> tomcat/taglibs/standard/trunk/NOTICE
> >> tomcat/taglibs/taglibs-parent/trunk/NOTICE
> >>
> >> Modified: tomcat/taglibs/extended/trunk/NOTICE.txt
> >> URL:
> >>
> http://svn.apache.org/viewvc/tomcat/taglibs/extended/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
> >>
> >>
> ==
> >> --- tomcat/taglibs/extended/trunk/NOTICE.txt (original)
> >> +++ tomcat/taglibs/extended/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
> >> @@ -1,5 +1,5 @@
> >>  Apache Extended Taglib
> >> -Copyright 2009-2012 The Apache Software Foundation
> >> +Copyright 2009-2014 The Apache Software Foundation
> >>
> >> -This product includes software developed by
> >> +This product includes software developed at
> >>  The Apache Software Foundation (http://www.apache.org/).
> >>
> >> Modified: tomcat/taglibs/rdc/trunk/NOTICE.txt
> >> URL:
> >>
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
> >>
> >>
> ==
> >> --- tomcat/taglibs/rdc/trunk/NOTICE.txt (original)
> >> +++ tomcat/taglibs/rdc/trunk/NOTICE.txt Fri Jan  3 18:08:32 2014
> >> @@ -1,5 +1,5 @@
> >>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> >> -Copyright 2004-2012 The Apache Software Foundation
> >> +Copyright 2004-2014 The Apache Software Foundation
> >>
> >> -This product includes software developed by
> >> +This product includes software developed at
> >>  The Apache Software Foundation (http://www.apache.org/).
> >>
> >> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt
> >> URL:
> >>
> http://svn.apache.org/viewvc/tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt?rev=1555177&r1=1555176&r2=1555177&view=diff
> >>
> >>
> ==
> >> --- tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt (original)
> >> +++ tomcat/taglibs/rdc/trunk/taglibs-rdc-dist/NOTICE.txt Fri Jan  3
> >> 18:08:32 2014
> >> @@ -1,5 +1,5 @@
> >>  Apache Jakarta Taglibs Reusable Dialog Components (RDC) Tag Library
> >> Distributions
> >> -Copyright 2004-2012 The Apache Software Foundation
> >> +Copyright 2004-2014 The Apache Software Foundation
> >>
> >> -This product includes software developed by
> >> +This product includes software developed at
> >>  The Apache Software Foundation (http://www.apache.org/).
> >>
> >> Modified: tomcat/taglibs/rdc/trunk/taglibs-rdc-examples/NOTICE.txt
> >> URL:
> >>
> 


svn commit: r1557493 - /tomcat/taglibs/site/src/site/site.xml

2014-01-11 Thread bayard
Author: bayard
Date: Sun Jan 12 06:32:03 2014
New Revision: 1557493

URL: http://svn.apache.org/r1557493
Log:
Removed CI and turned off the version of the product appearing in the site

Modified:
tomcat/taglibs/site/src/site/site.xml

Modified: tomcat/taglibs/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/site.xml?rev=1557493&r1=1557492&r2=1557493&view=diff
==
--- tomcat/taglibs/site/src/site/site.xml (original)
+++ tomcat/taglibs/site/src/site/site.xml Sun Jan 12 06:32:03 2014
@@ -11,6 +11,7 @@
 http://tomcat.apache.org/taglibs/
   
   
+  
   
 
   http://www.apachecon.com/"/>
@@ -31,7 +32,6 @@
   http://tomcat.apache.org/security.html"; />
   
   http://tomcat.apache.org/bugreport.html"; />
-  
   http://wiki.apache.org/jakarta-taglibs/FrontPage"; />
 
 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1557494 - /tomcat/taglibs/site/changes.xml

2014-01-11 Thread bayard
Author: bayard
Date: Sun Jan 12 06:37:01 2014
New Revision: 1557494

URL: http://svn.apache.org/r1557494
Log:
For use in a Maven Changes report; not currently hooked up

Added:
tomcat/taglibs/site/changes.xml   (with props)

Added: tomcat/taglibs/site/changes.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/changes.xml?rev=1557494&view=auto
==
--- tomcat/taglibs/site/changes.xml (added)
+++ tomcat/taglibs/site/changes.xml Sun Jan 12 06:37:01 2014
@@ -0,0 +1,41 @@
+
+
+
+  
+Apache Standard Taglib Changes
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+
+  
+

Propchange: tomcat/taglibs/site/changes.xml
--
svn:eol-style = native



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1557495 - in /tomcat/taglibs/site/src/site/xdoc/standard: ./ index.xml

2014-01-11 Thread bayard
Author: bayard
Date: Sun Jan 12 06:38:10 2014
New Revision: 1557495

URL: http://svn.apache.org/r1557495
Log:
Reintroducing the homepage for the Standard impl. Previously it lived inside 
the Standard component, but as it's only the one page I'm going to put it here 
for now. 

Added:
tomcat/taglibs/site/src/site/xdoc/standard/
tomcat/taglibs/site/src/site/xdoc/standard/index.xml   (with props)

Added: tomcat/taglibs/site/src/site/xdoc/standard/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/xdoc/standard/index.xml?rev=1557495&view=auto
==
--- tomcat/taglibs/site/src/site/xdoc/standard/index.xml (added)
+++ tomcat/taglibs/site/src/site/xdoc/standard/index.xml Sun Jan 12 06:38:10 
2014
@@ -0,0 +1,115 @@
+
+
+
+
+ 
+   Apache Standard Taglib: JSP[tm] Standard Tag Library (JSTL) 
implementations
+ 
+
+ 
+
+  
+
+JSP(tm) Standard Tag Library implementations
+
+Apache hosts the Apache Standard Taglib, an implementation of
+  the http://www.oracle.com/technetwork/java/jstl-137486.html";>JSP Standard Tag
+  Library (JSTL) specification. Various versions are available.
+
+
+
+  
+Version
+JSTL version
+Requirements
+Getting the Taglib
+  
+  
+Standard 1.2.1
+JSTL 1.2
+Servlet 2.5, JavaServer Pages 2.1
+http://archive.apache.org/dist/tomcat/taglibs/taglibs-standard-1.2.1/";>download
+  
+  
+Standard 1.1
+JSTL 1.1
+Servlet 2.4, JavaServer Pages 2.0
+http://archive.apache.org/dist/jakarta/taglibs/standard/";>download
+  
+  
+Standard 1.0
+JSTL 1.0
+Servlet 2.3, JavaServer Pages 1.2
+http://archive.apache.org/dist/jakarta/taglibs/standard/";>download
+  
+
+
+  
+
+  
+
+  
+Date
+Item
+  
+  
+2014/01/02
+The Apache Standard Taglib 1.2.1, an implementation of JSTL 1.2, 
has been released.
+  
+  
+2009/04/22
+Moved to a Maven based build system. 
+  
+  
+2008/12/21
+A patch  from Robert Goff has moved the trunk of the Standard 
Taglib up towards JSTL 1.2 level. 
+  
+  
+  10/25/2004
+  Standard Taglib version 1.1.2 - A minor bug fix update - is now 
available. 
+  
+  
+  07/20/2004
+  Standard Taglib version 1.1.1 released - A minor bug fix update - is 
now available. 
+  
+  
+  01/30/2004
+  Standard Taglib version 1.1.0 - First official release of our 
implementation of JSTL 1.1 - is now available. 
+  
+  
+  09/25/2003
+  Standard Taglib version 1.1.0-B1 - early access (Beta 1) of our 
implementation of JSTL 1.1 - is now available. 
+  
+
+
+  
+
+  
+
+The following books about JSTL are available:
+
+
+  http://www.manning.com/bayern/";>JSTL in Action, 
Shawn Bayern, Manning
+  http://oreilly.com/catalog/9781565927469/";>JavaServer 
Pages, Hans Bergsten, O'Reilly
+  http://www.sun.com/books/catalog/geary_corejstl.xml";>Core JSTL: 
Mastering the JSP Standard Tag Library, David Geary, Sun Microsystems 
Press
+
+
+  
+
+  
+
+

Propchange: tomcat/taglibs/site/src/site/xdoc/standard/index.xml
--
svn:eol-style = native



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1557496 - in /tomcat/taglibs/site/src/site/xdoc: index.xml site/news.xml

2014-01-11 Thread bayard
Author: bayard
Date: Sun Jan 12 06:38:26 2014
New Revision: 1557496

URL: http://svn.apache.org/r1557496
Log:
Adding news item for release of JSTL 1.2, and updating homepage to indicate 1.2 
now released. 

Modified:
tomcat/taglibs/site/src/site/xdoc/index.xml
tomcat/taglibs/site/src/site/xdoc/site/news.xml

Modified: tomcat/taglibs/site/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/xdoc/index.xml?rev=1557496&r1=1557495&r2=1557496&view=diff
==
--- tomcat/taglibs/site/src/site/xdoc/index.xml (original)
+++ tomcat/taglibs/site/src/site/xdoc/index.xml Sun Jan 12 06:38:26 2014
@@ -28,8 +28,8 @@
  
  
   In particular, Apache Taglibs hosts the Apache 
Standard Taglib, an implementation of the
-  http://java.sun.com/products/jsp/jstl";>JSP Standard Tag Library 
specification. Versions 1.0 and 1.1 
-  of JSTL are implemented, and a 1.2 implementation is in the works. 
+  http://www.oracle.com/technetwork/java/index-jsp-135995.html";>JSP 
Standard Tag Library (JSTL) specification. Versions 1.0, 1.1 and 1.2 
+  of JSTL are all implemented.
  
 
 
@@ -46,6 +46,12 @@
 
 
 
+  2014/01/02
+[Standard]
+  
+The Apache Standard Taglib 1.2.1, an implementation of JSTL 1.2, has 
been released.
+  
+
   2009/06/07[ALL]
 The Standard and RDC Taglibs have moved over to Tomcat. All other 
taglibs back at Jakarta have been deprecated 
 and a new Extended Taglib created. 

Modified: tomcat/taglibs/site/src/site/xdoc/site/news.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/xdoc/site/news.xml?rev=1557496&r1=1557495&r2=1557496&view=diff
==
--- tomcat/taglibs/site/src/site/xdoc/site/news.xml (original)
+++ tomcat/taglibs/site/src/site/xdoc/site/news.xml Sun Jan 12 06:38:26 2014
@@ -27,6 +27,12 @@
 
 
 
+  2014/01/02
+[Standard]
+  
+The Apache Standard Taglib 1.2.1, an implementation of JSTL 1.2, has 
been released.
+  
+
   2009/06/07
 [ALL]
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1557497 - /tomcat/taglibs/site/src/site/site.xml

2014-01-11 Thread bayard
Author: bayard
Date: Sun Jan 12 06:41:49 2014
New Revision: 1557497

URL: http://svn.apache.org/r1557497
Log:
Dropping the wiki link as the page it links to has been awol since last June. 
Or maybe an earlier June. 

Modified:
tomcat/taglibs/site/src/site/site.xml

Modified: tomcat/taglibs/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/site.xml?rev=1557497&r1=1557496&r2=1557497&view=diff
==
--- tomcat/taglibs/site/src/site/site.xml (original)
+++ tomcat/taglibs/site/src/site/site.xml Sun Jan 12 06:41:49 2014
@@ -32,7 +32,6 @@
   http://tomcat.apache.org/security.html"; />
   
   http://tomcat.apache.org/bugreport.html"; />
-  http://wiki.apache.org/jakarta-taglibs/FrontPage"; />
 
 
   http://www.apache.org/licenses/LICENSE-2.0.html"; />



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Taglib Site Update

2014-01-11 Thread Henri Yandell
Thanks. Wish I'd looked here before digging myself. I assumed it was
something weird I did when moving over from Jakarta and spent far too much
time digging into the old code there :)

---

I've gone ahead and put that file back in, but in the overall Taglibs site.
I'm not convinced we need a separate Maven generated site. A single file,
and copy the apidocs over from the taglib itself.

I'm also going to dump the link to CI (not working), test javadoc (dull)
and the link to the wiki (not there). The main loss in ditching the
separate Maven site are any items of value in the project reports at
http://tomcat.apache.org/taglibs/standard/project-info.html. Most are noise
or duplicates. Primarily we lack a page showing where to get the source.

Remaining tasks:

* Create a page to show source location.
* Create a .cgi page for download mirrors *I hope that's gotten easier*
* Change urls to point to mirror rather than archive
* Push content into tomcat-site/taglibs manually
* Change the news item on Tomcat itself to announce the release

Hen



On Sat, Jan 11, 2014 at 3:52 PM, Konstantin Kolinko
wrote:

> 2014/1/12 Henri Yandell :
> > Started digging into this last night. New computer so checkout, figure
> out
> > right version of Maven etc. 3.1.1 has issues with the site, so you have
> to
> > stay on 3.0.5.
> >
> > I've made some initial changes, then discovered that we seem to have lost
> > the xdoc for the website (one file) for the standard subcomponent. So my
> > task tonight is to hunt that page down in the svn history and bring it
> > back.
>
> https://svn.apache.org/r1540559
> ?
>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>


Bug report for Tomcat Modules [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|48240|New|Nor|2009-11-19|Tomcat-Lite missing @Override markers |
|48268|New|Nor|2009-11-23|Patch to fix generics in tomcat-lite  |
|48861|New|Nor|2010-03-04|Files without AL headers  |
|49685|New|Nor|2010-08-02|Unsafe synchronization in class ManagedBean   |
|49686|New|Nor|2010-08-02|Using an instance lock to protect static shared da|
|50571|Inf|Nor|2011-01-11|Tomcat 7 JDBC connection pool exception enhancemen|
|51595|Inf|Nor|2011-08-01|org.apache.tomcat.jdbc.pool.jmx.ConnectionPool sho|
|51879|Inf|Enh|2011-09-22|Improve access to Native Connection Methods   |
|52024|Inf|Enh|2011-10-13|Custom interceptor to support automatic failover o|
|53088|Opn|Min|2012-04-17|Give PoolCleaner TimerTask a better name  |
|53198|New|Cri|2012-05-07|'driverClassName' Data Source Property Being Manda|
|53199|Inf|Enh|2012-05-07|Refactor ConnectionPool to use ScheduledExecutorSe|
|53200|New|Enh|2012-05-07|Be able to use SlowQueryReport without reporting f|
|53770|New|Enh|2012-08-23|tomcat-pool: always log validation query syntax er|
|53853|New|Nor|2012-09-11|Can tomcat-jdbc consider Thread#getContextClassLoa|
|54225|New|Nor|2012-11-30|if initSQL property is set to an empty string a Nu|
|54227|New|Nor|2012-11-30|maxAge should be checked on borrow|
|54235|New|Nor|2012-12-03|tomcat jdbc pool stackoverflow error used with spr|
|54395|New|Nor|2013-01-09|JdbcInterceptor config parameter parsing errors   |
|54437|New|Enh|2013-01-16|Update PoolProperties javadoc for ConnectState int|
|54537|New|Cri|2013-02-07|StatementFinalizer closeInvoked is too slow for la|
|54929|New|Nor|2013-05-05|jdbc-pool cannot be used with Java 1.5, "java.lang|
|54978|New|Nor|2013-05-15|Validate on Borrow should be tested on Reconnect i|
|55078|New|Nor|2013-06-07|Configuring a DataSource Resource with dataSourceJ|
|55444|New|Nor|2013-08-18|Support JDBC Drivers outside of tomcat/lib/   |
+-+---+---+--+--+
| Total   25 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Bug report for Tomcat 6 [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat|
|43001|New|Enh|2007-07-30|JspC lacks setMappedFile and setDie for use in Ant|
|43400|New|Enh|2007-09-14|enum support for tag libs |
|43548|Opn|Enh|2007-10-04|xml schema for tomcat-users.xml   |
|43682|New|Enh|2007-10-23|JULI: web-inf/classes/logging.properties to suppor|
|43742|New|Enh|2007-10-30|.tag compiles  performed one at a time -- extremel|
|43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output |
|44199|New|Enh|2008-01-10|expose current backlog queue size |
|44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f|
|44294|New|Enh|2008-01-25|Support for EL functions with varargs |
|44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam|
|44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt|
|45014|New|Enh|2008-05-15|Request and Response classes should have wrappers |
|45282|New|Enh|2008-06-25|NioReceiver doesn't close cleanly, leaving sockets|
|45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks|
|45878|New|Enh|2008-09-24|Generated jars do not contain proper manifests or |
|45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE|
|45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output|
|46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c|
|46263|Opn|Enh|2008-11-21|Tomcat reloading of context.xml does not update do|
|46284|New|Enh|2008-11-24|Add flag to DeltaManager that blocks processing cl|
|46350|New|Enh|2008-12-05|Maven repository should contain source bundles|
|46558|Opn|Enh|2009-01-19|Shutdown port with address binding|
|46902|New|Enh|2009-03-24|LoginValve to bypass restrictions of j_security_ch|
|47214|New|Enh|2009-05-17|Inner classes that are explicitly referenced - sho|
|47242|New|Enh|2009-05-22|request for AJP command line client   |
|47281|New|Enh|2009-05-28|Efficiency of the JDBCStore   |
|47407|New|Enh|2009-06-23|HttpSessionListener doesn't operate in the session|
|47467|New|Enh|2009-07-02|Deployment of the war file by URL when contextpath|
|47834|New|Enh|2009-09-14|TldConfig throws Exception when exploring unpacked|
|47919|New|Enh|2009-09-30|Log Tomcat & Java environment variables in additio|
|48358|Opn|Enh|2009-12-09|JSP-unloading reloaded|
|48543|New|Enh|2010-01-14|[Patch] More flexibility in specifying -Dcatalina.|
|48672|New|Enh|2010-02-03|Tomcat Virtual Host Manager (/host-manager) have b|
|48674|New|Enh|2010-02-03|Tomcat Virtual Host Manager application doesn't pe|
|48743|New|Enh|2010-02-15|Make the SLEEP variable in catalina.sh settable fr|
|48899|New|Enh|2010-03-12|Guess URI charset should solve lot of problems|
|48922|New|Enh|2010-03-16|org.apache.catalina.connector.Request clone static|
|48928|New|Enh|2010-03-17|An alternative solution to preloading classes when|
|49161|New|Enh|2010-04-21|Unknown Publisher when installing tomcat 6.0.26   |
|49176|Opn|Enh|2010-04-23|Jasper in Dev Mode Is Memory Inefficient  |
|49464|New|Enh|2010-06-18|DefaultServlet and CharacterEncoding  |
|49531|New|Enh|2010-06-30|singlesignon failover not working on DeltaManager/|
|49804|New|Enh|2010-08-23|Allow Embedded.redirectStreams value to be configu|
|49939|New|Enh|2010-09-16|Expose a method via JMX which empties the webapp f|
|49943|New|Enh|2010-09-16|Logging (via juli) does not reread configuration c|
|50285|New|Enh|2010-11-17|Standard HTTP and AJP connectors silently ignore a|
|50288|New|Enh|2010-11-17|Uploading a war file that already exists should au|
|50677|Opn|Enh|2011-01-27|Allow system property variables in catalina.proper|
|50692|New|Enh|2011-01-31|Improve log message in ThreadPool.logFull |
|51142|New|Enh|2011-05-03|Offer possible resolution of StringIndexOutOfBound|
|51513|

Bug report for Tomcat 8 [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|51497|New|Enh|2011-07-11|Use canonical IPv6 text representation in logs|
|53737|Opn|Enh|2012-08-18|Use ServletContext.getJspConfigDescriptor() in Jas|
|53930|New|Enh|2012-09-24|allow capture of catalina stdout/stderr to a comma|
|54503|New|Enh|2013-01-29|SAML2 based single sign on|
|54700|New|Enh|2013-03-15|Improvement: Add support for system property to sp|
|54741|New|Enh|2013-03-22|Add org.apache.catalina.startup.Tomcat#addWebapp(S|
|55006|New|Enh|2013-05-22|Add http proxy support for ClientEndpoint using sy|
|55243|New|Enh|2013-07-11|Add special search string for nested roles|
|55252|New|Enh|2013-07-12|Separate Ant and command-line wrappers for JspC   |
|55383|New|Enh|2013-08-07|Improve markup and design of Tomcat's HTML pages  |
|55479|New|Enh|2013-08-24|JSR 196 (JASPIC) support in Tomcat|
|9|New|Enh|2013-09-14|UserDatabaseRealm enhacement: may use local JNDI  |
|55675|New|Enh|2013-10-18|Checking and handling invalid configuration option|
|55770|New|Enh|2013-11-12|Allow the crlFile to be reloaded  |
|55788|New|Enh|2013-11-16|TagPlugins should key on tag QName rather than imp|
|55884|Ver|Maj|2013-12-14|JSPs no longer compile in Java 8  |
|55917|New|Nor|2013-12-20|Cookie parsing fails hard with ISO-8859-1 values  |
|55918|New|Nor|2013-12-21|CTL characters may appear in quoted values for RFC|
|55920|New|Enh|2013-12-22|Quotes should not be removed from quoted cookie va|
|55921|New|Nor|2013-12-22|Cookie values in JSON format are not skipped corre|
|55945|New|Enh|2014-01-01|Support pre-compressed (gzip) resources with arbit|
|55946|New|Enh|2014-01-01|Add sample filter for serving pre-compressed files|
|55951|New|Enh|2014-01-04|HTML5 specifies UTF-8 encoding for cookie values  |
|55969|New|Enh|2014-01-07|Security-related enhancements to the Windows Insta|
|55975|New|Nor|2014-01-08|Inconsistent escaping applied to V0 cookie values |
|55984|New|Nor|2014-01-10|Invalid V1 cookie generated if value contains sepa|
|55988|New|Enh|2014-01-11|Add parameter useCipherSuitesOrder to JSSE (BIO an|
+-+---+---+--+--+
| Total   27 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Bug report for Tomcat 7 [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|18500|New|Enh|2003-03-30|Host aliases to match by regular expression   |
|28039|Opn|Enh|2004-03-30|Cluster Support for SingleSignOn  |
|40881|Opn|Enh|2006-11-02|Unable to receive message through  TCP channel -> |
|41007|Opn|Enh|2006-11-20|Can't define customized 503 error page|
|43866|New|Enh|2007-11-14|add support for session attribute propagation with|
|43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing |
|44216|New|Enh|2008-01-11|Don't reuse session ID even if emptySessionPath=tr|
|49395|New|Enh|2010-06-06|manager.findLeaks : display the date when the leak|
|49589|New|Enh|2010-07-12|Tag handlers with constant attribute values are al|
|49785|New|Enh|2010-08-19|Enabling TLS for JNDIRealm|
|49821|New|Enh|2010-08-25|Tomcat CLI|
|50019|New|Enh|2010-09-28|Adding JNDI "lookup-name" support In XML and Resou|
|50175|New|Enh|2010-10-28|Enhance memory leak detection by selectively apply|
|50234|New|Enh|2010-11-08|JspC use servlet 3.0 features |
|50504|New|Enh|2010-12-21|Allow setting query string character set trough re|
|50670|New|Enh|2011-01-27|Tribes | RpcChannel | Add option to specify extern|
|51195|New|Enh|2011-05-13|"Find leaks" reports a false positive memory/class|
|51423|Inf|Enh|2011-06-23|[Patch] to add a path and a version parameters to |
|51463|New|Enh|2011-07-01|Tomcat.setBaseDir  (package org.apache.catalina.st|
|51496|New|Enh|2011-07-11|NSIS - Warn that duplicate service name will resul|
|51587|New|Enh|2011-07-29|Implement status and uptime commands  |
|51953|New|Enh|2011-10-04|Proposal: netmask filtering valve and filter  |
|52235|New|Enh|2011-11-23|Please do a bit of SEO tuning for the web site|
|52381|New|Enh|2011-12-22|Please add OSGi metadata  |
|52448|New|Enh|2012-01-11|Cache jar indexes in WebappClassLoader to speed up|
|52489|New|Enh|2012-01-19|Enhancement request for code signing of war files |
|52688|New|Enh|2012-02-16|Add ability to remove old access log files|
|52751|Opn|Enh|2012-02-23|Optimized configuration of the system info display|
|52952|New|Enh|2012-03-20|Improve ExtensionValidator handling for embedded s|
|53085|New|Enh|2012-04-16|[perf] [concurrency] DefaultInstanceManager.annota|
|53387|New|Enh|2012-06-08|SSI: Allow to use $1 to get result of regular expr|
|53411|Opn|Enh|2012-06-13|NullPointerException in org.apache.tomcat.util.buf|
|53492|New|Enh|2012-07-01|Make JspC shell multithreaded |
|53553|New|Enh|2012-07-16|[PATCH] Deploy uploaded WAR with context.xml from |
|53620|New|Enh|2012-07-30|[juli] delay opening a file until something gets l|
|54330|New|Enh|2012-12-19|Patch with some refactoring of Member.java|
|54499|New|Enh|2013-01-29|Implementation of Extensible EL Interpreter   |
|54618|New|Enh|2013-02-28|Add filter implementing HTTP Strict Transport Secu|
|54802|New|Enh|2013-04-04|Provide location information for exceptions thrown|
|55104|New|Enh|2013-06-16|Allow passing arguments with spaces to Commons Dae|
|55470|New|Enh|2013-08-23|Help users for ClassNotFoundExceptions during star|
|55477|New|Enh|2013-08-23|Add a solution to map an realm name to a security |
|55530|New|Enh|2013-09-06|webdavServlet support aliases folder upload and de|
|55662|New|Enh|2013-10-17|Add a way to set an instance of java.sql.Driver di|
|55743|New|Enh|2013-11-05|Shutdown script broken on linux when only using PI|
|55855|New|Enh|2013-12-07|Unexpected WsFilter is configured in a webapp that|
|55943|New|Enh|2014-01-01|Provide a way prevent  looking at the System class|
|55986|New|Nor|2014-01-11|catalina.sh -force may falsely report "Tomcat has |
+-+---+---+--+--+
| Total   48 bugs   |
+---+

--

Bug report for Tomcat Connectors [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo|
|35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName|
|43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn|
|43968|Inf|Enh|2007-11-26|[patch] support ipv6 with mod_jk  |
|44290|Inf|Nor|2008-01-24|mod_jk/1.2.26: retry is not useful for an importan|
|44349|Inf|Maj|2008-02-04|mod_jk/1.2.26 module does not read worker.status.s|
|44379|New|Enh|2008-02-07|convert the output of strftime into UTF-8 |
|44454|New|Nor|2008-02-19|busy count reported in mod_jk inflated, causes inc|
|44571|New|Enh|2008-03-10|Limits busy per worker to a threshold |
|45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff|
|45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so|
|46337|New|Nor|2008-12-04|real worker name is wrong |
|46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca|
|47327|New|Enh|2009-06-07|remote_user not logged in apache logfile  |
|47617|Inf|Enh|2009-07-31|include time spent doing ajp_get_endpoint() in err|
|47678|New|Cri|2009-08-11|Unable to allocate shared memory when using isapi_|
|47714|New|Cri|2009-08-20|Reponse mixed between users   |
|47750|New|Maj|2009-08-27|Loss of worker settings when changing via jkstatus|
|47795|New|Maj|2009-09-07|service sticky_session not being set correctly wit|
|47840|Inf|Min|2009-09-14|A broken worker name is written in the log file.  |
|48191|New|Maj|2009-11-13|Problem with mod_jk 1.2.28 - Can not render up the|
|48460|New|Nor|2009-12-30|mod_proxy_ajp document has three misleading portio|
|48490|New|Nor|2010-01-05|Changing a node to stopped in uriworkermap.propert|
|48513|New|Enh|2010-01-09|IIS Quick setup instructions  |
|48564|New|Nor|2010-01-18|Unable to turn off retries for LB worker  |
|48830|New|Nor|2010-03-01|IIS shutdown blocked in endpoint service when serv|
|48891|Opn|Enh|2010-03-11|Missing EOL-style settings in tomcat/jk/trunk |
|49035|New|Maj|2010-04-01|data lost when post a multipart/form-data form|
|49063|New|Enh|2010-04-07|Please add JkStripSession status in jk-status work|
|49135|New|Enh|2010-04-16|SPDY Connector for The Tomcat |
|49469|New|Enh|2010-06-19|Workers status page has negative number of connect|
|49732|Opn|Nor|2010-08-10|reply_timeout can't wait forever. |
|49822|New|Enh|2010-08-25|Add hash lb worker method |
|49903|New|Enh|2010-09-09|Make workers file reloadable  |
|50186|New|Nor|2010-10-31|Wrong documentation of connection_pool_timeout / c|
|52334|New|Maj|2011-12-14|recover_time is not properly used |
|52483|New|Enh|2012-01-18|Print JkOptions's options in log file and jkstatus|
|52651|New|Nor|2012-02-13|JKSHMFile size limitation |
|53324|Opn|Nor|2012-05-30|Starting with mod_jk 1.2.35 I cannot modify worker|
|53542|New|Min|2012-07-13|Spelling mistake on 503 service unavailable page  |
|53762|New|Nor|2012-08-22|JK status manager: mass nodes handling doesn't wor|
|53883|New|Maj|2012-09-17|isapi_redirect v 1.2.37 crashes w3wp.exe  on the p|
|53977|New|Maj|2012-10-07|32bits isapi connector cannot work in wow64 mode  |
|54027|New|Cri|2012-10-18|isapi send request to outside address instead of i|
|54112|Opn|Blk|2012-11-07|ISAPI redirector not working when IIS recycles|
|54117|New|Maj|2012-11-08|access violation exception in isapi_redirect.dll  |
|54177|New|Nor|2012-11-20|jkmanager generates non-well-formed XML for certai|
|54596|New|Nor|2013-02-22|Relative path functionality truncates last charact|
|54621|New|Nor|2013-02-28|[PATCH] custom mod_jk availability checks |
|54646|New|Trv|2013-03-06|socket_keepalive is sometimes 1 or true or True in|
|54923|New|Nor|2013-05-03|nsapi_redirect.so does not work with iPlanet on So|
|55094|

Bug report for Taglibs [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|38193|Ass|Enh|2006-01-09|[RDC] BuiltIn Grammar support for Field   |
|38600|Ass|Enh|2006-02-10|[RDC] Enable RDCs to be used in X+V markup (X+RDC)|
|42413|New|Enh|2007-05-14|[PATCH] Log Taglib enhancements   |
|46052|New|Nor|2008-10-21|SetLocaleSupport is slow to initialize when many l|
|48333|New|Enh|2009-12-02|TLD generator |
|55609|New|Enh|2013-09-28|c:forEach loop on integer range consumes unnecessa|
+-+---+---+--+--+
| Total6 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Bug report for Tomcat Native [2014/01/12]

2014-01-11 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|46179|Opn|Maj|2008-11-10|apr ssl client authentication |
|48655|Inf|Nor|2010-02-02|Active multipart downloads prevent tomcat shutdown|
|49038|Inf|Nor|2010-04-02|Crash in tcnative |
|52319|Inf|Maj|2011-12-12|Tomcat 6 crashes with [libapr-1.so.0+0x196da]  sig|
|52627|New|Min|2012-02-08|Segmentation fault in org.apache.tomcat.jni.File.i|
|53605|Inf|Nor|2012-07-26|use tcnative-1.1.24 Tomcat shutdown still crash   |
|53847|Inf|Nor|2012-09-10|High CPU usage in tomcat native 1.22+ |
|53940|New|Enh|2012-09-27|Added support for new CRL loading after expiration|
|53952|New|Nor|2012-10-02|Add support for TLS 1.1 and 1.2   |
|54085|New|Nor|2012-11-01|ssl_socket_recv sometimes loops infinitely with no|
|54664|New|Reg|2013-03-11|[1.1.27 branch] Poll.remove incorrectly reports AP|
|55087|New|Cri|2013-06-10|tomcat crashes in tcnative-1.dll with OCSP when OC|
|55113|Inf|Nor|2013-06-18|FIPS-compatible OpenSSL fails fingerprint test in |
|55114|New|Nor|2013-06-18|BUILDING file in win32 source package contains UNI|
|55706|New|Nor|2013-10-25|broken apr version check in native v1.1.29 build; |
|55771|New|Maj|2013-11-12|Memory leak and then crash in org.apache.tomcat.jn|
|55797|Inf|Nor|2013-11-19|Tomcat 7.0.47 crashes using server jvm.dll and APR|
|55915|New|Nor|2013-12-20|Add EECDH support to tcnative-1.dll   |
|55938|New|Nor|2013-12-29|clang-analyzer report for 1.1.29  |
+-+---+---+--+--+
| Total   19 bugs   |
+---+

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org