diff -Nru jetty8-8.1.18/debian/changelog jetty8-8.1.19/debian/changelog --- jetty8-8.1.18/debian/changelog 2015-12-04 09:11:09.000000000 +0000 +++ jetty8-8.1.19/debian/changelog 2016-02-10 17:45:23.000000000 +0000 @@ -1,3 +1,11 @@ +jetty8 (8.1.19-1) unstable; urgency=medium + + * New upstream release + - New build dependency on libmaven-shade-plugin-java + * Standards-Version updated to 3.9.7 (no changes) + + -- Emmanuel Bourg Wed, 10 Feb 2016 18:45:18 +0100 + jetty8 (8.1.18-3) unstable; urgency=medium * No longer install the default page on updates in /var/lib/jetty8/webapps/root diff -Nru jetty8-8.1.18/debian/control jetty8-8.1.19/debian/control --- jetty8-8.1.18/debian/control 2015-11-25 16:26:41.000000000 +0000 +++ jetty8-8.1.19/debian/control 2016-02-10 17:44:45.000000000 +0000 @@ -19,12 +19,13 @@ libjstl1.1-java, libmaven-bundle-plugin-java, libmaven-javadoc-plugin-java, + libmaven-shade-plugin-java, libmockito-java, libservlet3.0-java (>= 7.0.40-2), libtomcat7-java (>= 7.0.56-1~), maven-debian-helper, maven-repo-helper -Standards-Version: 3.9.6 +Standards-Version: 3.9.7 Vcs-Git: git://anonscm.debian.org/pkg-java/jetty8.git Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jetty8.git Homepage: http://www.eclipse.org/jetty/ diff -Nru jetty8-8.1.18/example-async-rest/async-rest-jar/pom.xml jetty8-8.1.19/example-async-rest/async-rest-jar/pom.xml --- jetty8-8.1.18/example-async-rest/async-rest-jar/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-jar/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 org.eclipse.jetty.example-async-rest diff -Nru jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AbstractRestServlet.java jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AbstractRestServlet.java --- jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AbstractRestServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AbstractRestServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AsyncRestServlet.java jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AsyncRestServlet.java --- jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AsyncRestServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/AsyncRestServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/SerialRestServlet.java jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/SerialRestServlet.java --- jetty8-8.1.18/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/SerialRestServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-jar/src/main/java/org/eclipse/jetty/example/asyncrest/SerialRestServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-async-rest/async-rest-webapp/pom.xml jetty8-8.1.19/example-async-rest/async-rest-webapp/pom.xml --- jetty8-8.1.18/example-async-rest/async-rest-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty example-async-rest - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 org.eclipse.jetty.example-async-rest diff -Nru jetty8-8.1.18/example-async-rest/async-rest-webapp/src/test/java/org/eclipse/jetty/example/asyncrest/DemoServer.java jetty8-8.1.19/example-async-rest/async-rest-webapp/src/test/java/org/eclipse/jetty/example/asyncrest/DemoServer.java --- jetty8-8.1.18/example-async-rest/async-rest-webapp/src/test/java/org/eclipse/jetty/example/asyncrest/DemoServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/async-rest-webapp/src/test/java/org/eclipse/jetty/example/asyncrest/DemoServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-async-rest/pom.xml jetty8-8.1.19/example-async-rest/pom.xml --- jetty8-8.1.18/example-async-rest/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-async-rest/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 org.eclipse.jetty diff -Nru jetty8-8.1.18/example-jetty-embedded/pom.xml jetty8-8.1.19/example-jetty-embedded/pom.xml --- jetty8-8.1.18/example-jetty-embedded/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 example-jetty-embedded diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/DumpServlet.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/DumpServlet.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/DumpServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/DumpServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServer.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServer.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServerXml.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServerXml.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServerXml.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/FileServerXml.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloHandler.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloHandler.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloServlet.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloServlet.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/HelloServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyConnectors.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyConnectors.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyConnectors.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyConnectors.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyHandlers.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyHandlers.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyHandlers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyHandlers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyServletContexts.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyServletContexts.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyServletContexts.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ManyServletContexts.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/MinimalServlets.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/MinimalServlets.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/MinimalServlets.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/MinimalServlets.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneContext.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneContext.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneHandler.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneHandler.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneServletContext.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneServletContext.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneServletContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneServletContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneWebApp.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneWebApp.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneWebApp.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneWebApp.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ProxyServer.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ProxyServer.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ProxyServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/ProxyServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SecuredHelloHandler.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SecuredHelloHandler.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SecuredHelloHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SecuredHelloHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SimplestServer.java jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SimplestServer.java --- jetty8-8.1.18/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SimplestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/SimplestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/example-jetty-embedded/src/test/java/org/eclipse/jetty/embedded/GzipHandlerTest.java jetty8-8.1.19/example-jetty-embedded/src/test/java/org/eclipse/jetty/embedded/GzipHandlerTest.java --- jetty8-8.1.18/example-jetty-embedded/src/test/java/org/eclipse/jetty/embedded/GzipHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/example-jetty-embedded/src/test/java/org/eclipse/jetty/embedded/GzipHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-all/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-all/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-all/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-all/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-all diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-all-server/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-all-server/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-all-server/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-all-server/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-all-server diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-client/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-client/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-client/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-client/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-client diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-plus/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-plus/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-plus/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-plus/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-plus diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-server/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-server/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-server/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-server/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-server diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-servlet/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-servlet/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-servlet/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-servlet/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-servlet diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-webapp/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-webapp/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-webapp diff -Nru jetty8-8.1.18/jetty-aggregate/jetty-websocket/pom.xml jetty8-8.1.19/jetty-aggregate/jetty-websocket/pom.xml --- jetty8-8.1.18/jetty-aggregate/jetty-websocket/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/jetty-websocket/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.aggregate jetty-aggregate-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-websocket diff -Nru jetty8-8.1.18/jetty-aggregate/pom.xml jetty8-8.1.19/jetty-aggregate/pom.xml --- jetty8-8.1.18/jetty-aggregate/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-aggregate/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 org.eclipse.jetty.aggregate jetty-aggregate-project diff -Nru jetty8-8.1.18/jetty-ajp/pom.xml jetty8-8.1.19/jetty-ajp/pom.xml --- jetty8-8.1.18/jetty-ajp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-ajp diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Connection.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Connection.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Connection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Connection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Generator.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Generator.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Generator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Generator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Packet.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Packet.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Packet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Packet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13PacketMethods.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13PacketMethods.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13PacketMethods.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13PacketMethods.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Parser.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Parser.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Parser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Parser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestHeaders.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestHeaders.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestHeaders.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestHeaders.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Request.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Request.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Request.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13Request.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestPacket.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestPacket.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestPacket.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13RequestPacket.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13ResponseHeaders.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13ResponseHeaders.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13ResponseHeaders.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13ResponseHeaders.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13SocketConnector.java jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13SocketConnector.java --- jetty8-8.1.18/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13SocketConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/main/java/org/eclipse/jetty/ajp/Ajp13SocketConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/Ajp13ConnectionTest.java jetty8-8.1.19/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/Ajp13ConnectionTest.java --- jetty8-8.1.18/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/Ajp13ConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/Ajp13ConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/TestAjpParser.java jetty8-8.1.19/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/TestAjpParser.java --- jetty8-8.1.18/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/TestAjpParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-ajp/src/test/java/org/eclipse/jetty/ajp/TestAjpParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/pom.xml jetty8-8.1.19/jetty-annotations/pom.xml --- jetty8-8.1.18/jetty-annotations/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-annotations diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AbstractDiscoverableAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AbstractDiscoverableAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AbstractDiscoverableAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AbstractDiscoverableAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationConfiguration.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationConfiguration.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationIntrospector.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationIntrospector.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationIntrospector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationIntrospector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationParser.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationParser.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassInheritanceHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassInheritanceHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassInheritanceHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassInheritanceHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassNameResolver.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassNameResolver.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassNameResolver.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ClassNameResolver.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ContainerInitializerAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ContainerInitializerAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ContainerInitializerAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ContainerInitializerAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/DeclareRolesAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/DeclareRolesAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/DeclareRolesAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/DeclareRolesAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/MultiPartConfigAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/MultiPartConfigAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/MultiPartConfigAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/MultiPartConfigAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PostConstructAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PostConstructAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PostConstructAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PostConstructAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PreDestroyAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PreDestroyAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PreDestroyAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/PreDestroyAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourceAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourceAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourceAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourceAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourcesAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourcesAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourcesAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ResourcesAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/RunAsAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/RunAsAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/RunAsAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/RunAsAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializerListener.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializerListener.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializerListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletContainerInitializerListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletSecurityAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletSecurityAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletSecurityAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/ServletSecurityAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/Util.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/Util.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/Util.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/Util.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotation.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotation.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebFilterAnnotation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotation.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotation.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebListenerAnnotation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotationHandler.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotationHandler.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotationHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotationHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotation.java jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotation.java --- jetty8-8.1.18/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/WebServletAnnotation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassA.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassA.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassA.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassA.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassB.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassB.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassB.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ClassB.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/FilterC.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/FilterC.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/FilterC.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/FilterC.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/InterfaceD.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/InterfaceD.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/InterfaceD.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/InterfaceD.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ListenerC.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ListenerC.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ListenerC.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ListenerC.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Multi.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Multi.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Multi.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Multi.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceA.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceA.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceA.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceA.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceB.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceB.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceB.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/ResourceB.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/TestResourceAnnotations.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/TestResourceAnnotations.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/TestResourceAnnotations.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/resources/TestResourceAnnotations.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Sample.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Sample.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Sample.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/Sample.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ServletC.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ServletC.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ServletC.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/ServletC.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationConfiguration.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationConfiguration.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationInheritance.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationInheritance.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationInheritance.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationInheritance.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationParser.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationParser.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestAnnotationParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestSecurityAnnotationConversions.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestSecurityAnnotationConversions.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestSecurityAnnotationConversions.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestSecurityAnnotationConversions.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestServletAnnotations.java jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestServletAnnotations.java --- jetty8-8.1.18/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestServletAnnotations.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-annotations/src/test/java/org/eclipse/jetty/annotations/TestServletAnnotations.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/pom.xml jetty8-8.1.19/jetty-client/pom.xml --- jetty8-8.1.18/jetty-client/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 @@ -76,7 +76,45 @@ - + + + org.apache.maven.plugins + maven-shade-plugin + 2.0 + + + package + + shade + + + true + hybrid + + + org.eclipse.jetty:jetty-http + org.eclipse.jetty:jetty-io + org.eclipse.jetty:jetty-util + + + + + org.eclipse.jetty.http + org.eclipse.jetty.client.shaded.http + + + org.eclipse.jetty.io + org.eclipse.jetty.client.shaded.io + + + org.eclipse.jetty.util + org.eclipse.jetty.client.shaded.util + + + + + + diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/AbstractHttpConnection.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/AbstractHttpConnection.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/AbstractHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/AbstractHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/Address.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/Address.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/Address.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/Address.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/AsyncHttpConnection.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/AsyncHttpConnection.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/AsyncHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/AsyncHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/BlockingHttpConnection.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/BlockingHttpConnection.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/BlockingHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/BlockingHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/CachedExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/CachedExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/CachedExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/CachedExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/ContentExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/ContentExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/ContentExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/ContentExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpClient.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpClient.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpClient.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpClient.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpDestination.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpDestination.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpDestination.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpDestination.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListener.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListener.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListenerWrapper.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListenerWrapper.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListenerWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpEventListenerWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/RedirectListener.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/RedirectListener.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/RedirectListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/RedirectListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/Authentication.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/Authentication.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/Authentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/Authentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/BasicAuthentication.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/BasicAuthentication.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/BasicAuthentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/BasicAuthentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/DigestAuthentication.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/DigestAuthentication.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/DigestAuthentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/DigestAuthentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/HashRealmResolver.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/HashRealmResolver.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/HashRealmResolver.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/HashRealmResolver.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/ProxyAuthorization.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/ProxyAuthorization.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/ProxyAuthorization.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/ProxyAuthorization.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/Realm.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/Realm.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/Realm.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/Realm.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/RealmResolver.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/RealmResolver.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/RealmResolver.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/RealmResolver.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/SecurityListener.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/SecurityListener.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/SecurityListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/SecurityListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/SimpleRealmResolver.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/SimpleRealmResolver.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/security/SimpleRealmResolver.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/security/SimpleRealmResolver.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/SelectConnector.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/SelectConnector.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/SelectConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/SelectConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/SocketConnector.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/SocketConnector.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/SocketConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/SocketConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/MkcolExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/MkcolExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/MkcolExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/MkcolExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/PropfindExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/PropfindExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/PropfindExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/PropfindExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavListener.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavListener.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavSupportedExchange.java jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavSupportedExchange.java --- jetty8-8.1.18/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavSupportedExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/main/java/org/eclipse/jetty/client/webdav/WebdavSupportedExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractConnectionTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractConnectionTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractHttpExchangeCancelTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractHttpExchangeCancelTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractHttpExchangeCancelTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AbstractHttpExchangeCancelTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncCallbackHttpExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncCallbackHttpExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncCallbackHttpExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncCallbackHttpExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSelectConnectionTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSelectConnectionTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSelectConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSelectConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslHttpExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslHttpExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslHttpExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslHttpExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslSecurityListenerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslSecurityListenerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslSecurityListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/AsyncSslSecurityListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/BlockingHttpExchangeCancelTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/BlockingHttpExchangeCancelTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/BlockingHttpExchangeCancelTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/BlockingHttpExchangeCancelTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/CachedHeadersIsolationTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/CachedHeadersIsolationTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/CachedHeadersIsolationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/CachedHeadersIsolationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ContentExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ContentExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ContentExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ContentExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Curl.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Curl.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Curl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Curl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ErrorStatusTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ErrorStatusTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ErrorStatusTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ErrorStatusTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExpirationWithLimitedConnectionsTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExpirationWithLimitedConnectionsTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExpirationWithLimitedConnectionsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExpirationWithLimitedConnectionsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExpireTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExpireTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExpireTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExpireTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalKeyStoreAsyncSslHttpExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalKeyStoreAsyncSslHttpExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalKeyStoreAsyncSslHttpExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalKeyStoreAsyncSslHttpExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalSiteTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalSiteTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalSiteTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ExternalSiteTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AbstractSslServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AbstractSslServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AbstractSslServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AbstractSslServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AsyncSslServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AsyncSslServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AsyncSslServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/AsyncSslServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ExternalKeyStoreAsyncSslServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ExternalKeyStoreAsyncSslServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ExternalKeyStoreAsyncSslServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ExternalKeyStoreAsyncSslServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/GenericServerHandler.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/GenericServerHandler.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/GenericServerHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/GenericServerHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/HttpServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/HttpServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/HttpServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/HttpServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/ServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/SslServerAndClientCreator.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/SslServerAndClientCreator.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/SslServerAndClientCreator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/helperClasses/SslServerAndClientCreator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Http100ContinueTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Http100ContinueTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Http100ContinueTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Http100ContinueTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpAsserts.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpAsserts.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpAsserts.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpAsserts.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpClientDuplexTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpClientDuplexTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpClientDuplexTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpClientDuplexTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpDestinationQueueTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpDestinationQueueTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpDestinationQueueTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpDestinationQueueTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpGetRedirectTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpGetRedirectTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpGetRedirectTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpGetRedirectTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpHeadersTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpHeadersTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpHeadersTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpHeadersTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsProxyAuthenticationTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsProxyAuthenticationTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsProxyAuthenticationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsProxyAuthenticationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsViaBrokenHttpProxyTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsViaBrokenHttpProxyTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsViaBrokenHttpProxyTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/HttpsViaBrokenHttpProxyTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/IdleTimeoutTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/IdleTimeoutTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/IdleTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/IdleTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/NonBlockingHttpExchangeCancelTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/NonBlockingHttpExchangeCancelTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/NonBlockingHttpExchangeCancelTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/NonBlockingHttpExchangeCancelTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyFakeTunnelTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyFakeTunnelTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyFakeTunnelTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyFakeTunnelTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyTunnellingTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyTunnellingTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyTunnellingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ProxyTunnellingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredContentExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredContentExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredContentExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredContentExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredErrorStatusTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredErrorStatusTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredErrorStatusTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecuredErrorStatusTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/security/SecurityResolverTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/security/SecurityResolverTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/security/SecurityResolverTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/security/SecurityResolverTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecurityListenerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecurityListenerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SecurityListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SecurityListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SelectConnectionTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SelectConnectionTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SelectConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SelectConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ServerConnectionCloseTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ServerConnectionCloseTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/ServerConnectionCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/ServerConnectionCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Siege.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Siege.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/Siege.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/Siege.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SluggishServerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SluggishServerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SluggishServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SluggishServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SocketConnectionTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SocketConnectionTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SocketConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SocketConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesClientTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesClientTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesClientTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesClientTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesServerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesServerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslBytesTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslCertSecuredExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslCertSecuredExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslCertSecuredExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslCertSecuredExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslContentExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslContentExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslContentExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslContentExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslHttpExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslHttpExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslHttpExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslHttpExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredContentExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredContentExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredContentExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredContentExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredErrorStatusTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredErrorStatusTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredErrorStatusTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecuredErrorStatusTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecurityListenerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecurityListenerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecurityListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSecurityListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSelectChannelValidationTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSelectChannelValidationTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSelectChannelValidationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSelectChannelValidationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSocketValidationTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSocketValidationTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslSocketValidationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslSocketValidationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslValidationTestBase.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslValidationTestBase.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/SslValidationTestBase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/SslValidationTestBase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutExchangeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutExchangeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutExchangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutExchangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TLSServerConnectionCloseTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TLSServerConnectionCloseTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/TLSServerConnectionCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/TLSServerConnectionCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/UnexpectedDataTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/UnexpectedDataTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/UnexpectedDataTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/UnexpectedDataTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/WebdavListenerTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/WebdavListenerTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/WebdavListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/WebdavListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/WebSocketUpgradeTest.java jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/WebSocketUpgradeTest.java --- jetty8-8.1.18/jetty-client/src/test/java/org/eclipse/jetty/client/WebSocketUpgradeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-client/src/test/java/org/eclipse/jetty/client/WebSocketUpgradeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/pom.xml jetty8-8.1.19/jetty-continuation/pom.xml --- jetty8-8.1.18/jetty-continuation/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-continuation diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationFilter.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationFilter.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationListener.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationListener.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationSupport.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationSupport.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationSupport.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationSupport.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationThrowable.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationThrowable.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationThrowable.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/ContinuationThrowable.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/FauxContinuation.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/FauxContinuation.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/FauxContinuation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/FauxContinuation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Jetty6Continuation.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Jetty6Continuation.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Jetty6Continuation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Jetty6Continuation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Servlet3Continuation.java jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Servlet3Continuation.java --- jetty8-8.1.18/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Servlet3Continuation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Servlet3Continuation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/pom.xml jetty8-8.1.19/jetty-deploy/pom.xml --- jetty8-8.1.18/jetty-deploy/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-deploy diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/App.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/App.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/App.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/App.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppLifeCycle.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppLifeCycle.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppLifeCycle.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppLifeCycle.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppProvider.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppProvider.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/DebugBinding.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/DebugBinding.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/DebugBinding.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/DebugBinding.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBinding.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBinding.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBinding.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBinding.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/OrderedGroupBinding.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/OrderedGroupBinding.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/OrderedGroupBinding.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/OrderedGroupBinding.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardDeployer.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardDeployer.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardDeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardDeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStarter.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStarter.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStarter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStarter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStopper.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStopper.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStopper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStopper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardUndeployer.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardUndeployer.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardUndeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardUndeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ConfigurationManager.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ConfigurationManager.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ConfigurationManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ConfigurationManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ContextDeployer.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ContextDeployer.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ContextDeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/ContextDeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/DeploymentManager.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/DeploymentManager.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/DeploymentManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/DeploymentManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/FileConfigurationManager.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/FileConfigurationManager.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/FileConfigurationManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/FileConfigurationManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Edge.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Edge.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Edge.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Edge.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Graph.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Graph.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Graph.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Graph.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/GraphOutputDot.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/GraphOutputDot.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/GraphOutputDot.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/GraphOutputDot.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Node.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Node.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Node.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Node.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Path.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Path.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Path.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Path.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/jmx/DeploymentManagerMBean.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/jmx/DeploymentManagerMBean.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/jmx/DeploymentManagerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/jmx/DeploymentManagerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ContextProvider.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ContextProvider.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ContextProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ContextProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/WebAppProvider.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/WebAppProvider.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/WebAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/WebAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/util/FileID.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/util/FileID.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/util/FileID.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/util/FileID.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/WebAppDeployer.java jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/WebAppDeployer.java --- jetty8-8.1.18/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/WebAppDeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/WebAppDeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCyclePathCollector.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCyclePathCollector.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCyclePathCollector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCyclePathCollector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCycleTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCycleTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCycleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCycleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBindingTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBindingTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBindingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBindingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerLifeCyclePathTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerLifeCyclePathTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerLifeCyclePathTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerLifeCyclePathTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/graph/GraphTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/graph/GraphTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/graph/GraphTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/graph/GraphTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/MockAppProvider.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/MockAppProvider.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/MockAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/MockAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderRuntimeUpdatesTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderRuntimeUpdatesTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderRuntimeUpdatesTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderRuntimeUpdatesTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderStartupTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderStartupTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderStartupTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderStartupTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/WebAppProviderTest.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/WebAppProviderTest.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/WebAppProviderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/WebAppProviderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/test/XmlConfiguredJetty.java jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/test/XmlConfiguredJetty.java --- jetty8-8.1.18/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/test/XmlConfiguredJetty.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-deploy/src/test/java/org/eclipse/jetty/deploy/test/XmlConfiguredJetty.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-distribution/pom.xml jetty8-8.1.19/jetty-distribution/pom.xml --- jetty8-8.1.18/jetty-distribution/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-distribution/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 jetty-distribution Jetty :: Distribution Assemblies diff -Nru jetty8-8.1.18/jetty-http/pom.xml jetty8-8.1.19/jetty-http/pom.xml --- jetty8-8.1.18/jetty-http/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-http diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/AbstractGenerator.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/AbstractGenerator.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/AbstractGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/AbstractGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/EncodedHttpURI.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/EncodedHttpURI.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/EncodedHttpURI.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/EncodedHttpURI.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/Generator.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/Generator.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/Generator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/Generator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/AbstractCompressedStream.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/AbstractCompressedStream.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/AbstractCompressedStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/AbstractCompressedStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/CompressedResponseWrapper.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/CompressedResponseWrapper.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/CompressedResponseWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/gzip/CompressedResponseWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffersImpl.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffersImpl.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffersImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffersImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffers.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffers.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpContent.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpContent.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpContent.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpContent.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpCookie.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpCookie.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpCookie.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpCookie.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpException.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpException.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpFields.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpFields.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpFields.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpFields.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpGenerator.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpGenerator.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -660,8 +660,11 @@ // written yet? // Response known not to have a body - if (_contentWritten == 0 && isResponse() && (_status < 200 || _status == 204 || _status == 304)) + if (isResponse() && _noContent) + { _contentLength = HttpTokens.NO_CONTENT; + _contentWritten=0; + } else if (_last) { // we have seen all the _content there is diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaders.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaders.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaders.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaders.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaderValues.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaderValues.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaderValues.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpHeaderValues.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpMethods.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpMethods.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpMethods.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpMethods.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpParser.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpParser.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -637,8 +637,8 @@ break; case HttpTokens.NO_CONTENT: - _handler.headerComplete(); _state=_persistent||(_responseStatus>=100&&_responseStatus<200)?STATE_END:STATE_SEEKING_EOF; + _handler.headerComplete(); _handler.messageComplete(_contentPosition); return 1; diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpSchemes.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpSchemes.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpSchemes.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpSchemes.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpTokens.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpTokens.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpTokens.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpTokens.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpURI.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpURI.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpURI.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpURI.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpVersions.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpVersions.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/HttpVersions.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/HttpVersions.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/MimeTypes.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/MimeTypes.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/MimeTypes.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/MimeTypes.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/Parser.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/Parser.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/Parser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/Parser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/PathMap.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/PathMap.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/PathMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/PathMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java --- jetty8-8.1.18/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpFieldsTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpFieldsTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpFieldsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpFieldsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorClientTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorClientTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorClientTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorClientTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpGeneratorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpParserTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpParserTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpParserTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpParserTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpStatusCodeTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpStatusCodeTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpStatusCodeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpStatusCodeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/MimeTypesTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/MimeTypesTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/MimeTypesTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/MimeTypesTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/PathMapTest.java jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/PathMapTest.java --- jetty8-8.1.18/jetty-http/src/test/java/org/eclipse/jetty/http/PathMapTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http/src/test/java/org/eclipse/jetty/http/PathMapTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/pom.xml jetty8-8.1.19/jetty-http-spi/pom.xml --- jetty8-8.1.18/jetty-http-spi/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-http-spi diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/HttpSpiContextHandler.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/HttpSpiContextHandler.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/HttpSpiContextHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/HttpSpiContextHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyExchange.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyExchange.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpContext.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpContext.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchangeDelegate.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchangeDelegate.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchangeDelegate.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchangeDelegate.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchange.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchange.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServer.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServer.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServerProvider.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServerProvider.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServerProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpServerProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpsExchange.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpsExchange.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpsExchange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/JettyHttpsExchange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/ThreadPoolExecutorAdapter.java jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/ThreadPoolExecutorAdapter.java --- jetty8-8.1.18/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/ThreadPoolExecutorAdapter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/main/java/org/eclipse/jetty/http/spi/ThreadPoolExecutorAdapter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-http-spi/src/test/java/org/eclipse/jetty/http/spi/TestSPIServer.java jetty8-8.1.19/jetty-http-spi/src/test/java/org/eclipse/jetty/http/spi/TestSPIServer.java --- jetty8-8.1.18/jetty-http-spi/src/test/java/org/eclipse/jetty/http/spi/TestSPIServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-http-spi/src/test/java/org/eclipse/jetty/http/spi/TestSPIServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/pom.xml jetty8-8.1.19/jetty-io/pom.xml --- jetty8-8.1.18/jetty-io/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ jetty-project org.eclipse.jetty - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-io diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffers.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffers.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractConnection.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractConnection.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AbstractConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AsyncEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AsyncEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/AsyncEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/AsyncEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/SocketEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/SocketEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/SocketEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/SocketEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StreamEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StreamEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StreamEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StreamEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StringEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StringEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StringEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/bio/StringEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferCache.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferCache.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferCache.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferCache.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferDateCache.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferDateCache.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferDateCache.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferDateCache.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Buffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Buffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Buffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Buffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BuffersFactory.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BuffersFactory.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BuffersFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BuffersFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Buffers.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Buffers.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Buffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Buffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferUtil.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferUtil.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/BufferUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/BufferUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ByteArrayEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ConnectedEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ConnectedEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ConnectedEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ConnectedEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Connection.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Connection.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/Connection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/Connection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/EndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/EndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/EndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/EndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/EofException.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/EofException.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/EofException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/EofException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/NetworkTrafficListener.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/NetworkTrafficListener.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/NetworkTrafficListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/NetworkTrafficListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/AsyncConnection.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/AsyncConnection.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/AsyncConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/AsyncConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/ChannelEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/ChannelEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/ChannelEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/ChannelEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/DirectNIOBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/DirectNIOBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/DirectNIOBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/DirectNIOBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/IndirectNIOBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/IndirectNIOBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/IndirectNIOBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/IndirectNIOBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NetworkTrafficSelectChannelEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NetworkTrafficSelectChannelEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NetworkTrafficSelectChannelEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NetworkTrafficSelectChannelEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NIOBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NIOBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NIOBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/NIOBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/RandomAccessFileBuffer.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/RandomAccessFileBuffer.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/RandomAccessFileBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/RandomAccessFileBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectorManager.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectorManager.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectorManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SelectorManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SslConnection.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SslConnection.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SslConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/nio/SslConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/PooledBuffers.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/PooledBuffers.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/PooledBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/PooledBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/RuntimeIOException.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/RuntimeIOException.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/RuntimeIOException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/RuntimeIOException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/SimpleBuffers.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/SimpleBuffers.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/SimpleBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/SimpleBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ThreadLocalBuffers.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ThreadLocalBuffers.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/ThreadLocalBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/ThreadLocalBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedIOException.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedIOException.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedIOException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedIOException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedPrintWriter.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedPrintWriter.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedPrintWriter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/UncheckedPrintWriter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/View.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/View.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/View.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/View.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/WriterOutputStream.java jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/WriterOutputStream.java --- jetty8-8.1.18/jetty-io/src/main/java/org/eclipse/jetty/io/WriterOutputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/main/java/org/eclipse/jetty/io/WriterOutputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/bio/SocketEndPointTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/bio/SocketEndPointTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/bio/SocketEndPointTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/bio/SocketEndPointTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferCacheTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferCacheTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferCacheTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferCacheTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferUtilTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferUtilTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/BufferUtilTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/BufferUtilTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/EndPointTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/EndPointTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/EndPointTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/EndPointTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/IOTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/IOTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/IOTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/IOTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/ChannelEndPointTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/ChannelEndPointTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/ChannelEndPointTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/ChannelEndPointTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/NIOTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/NIOTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/NIOTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/NIOTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointSslTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointSslTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointSslTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointSslTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/nio/SelectChannelEndPointTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/ThreadLocalBuffersTest.java jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/ThreadLocalBuffersTest.java --- jetty8-8.1.18/jetty-io/src/test/java/org/eclipse/jetty/io/ThreadLocalBuffersTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-io/src/test/java/org/eclipse/jetty/io/ThreadLocalBuffersTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/pom.xml jetty8-8.1.19/jetty-jaspi/pom.xml --- jetty8-8.1.18/jetty-jaspi/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-jaspi diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticatorFactory.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticatorFactory.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticatorFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticatorFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticator.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticator.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiMessageInfo.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiMessageInfo.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiMessageInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/JaspiMessageInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BaseAuthModule.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BaseAuthModule.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BaseAuthModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BaseAuthModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BasicAuthModule.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BasicAuthModule.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BasicAuthModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/BasicAuthModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/ClientCertAuthModule.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/ClientCertAuthModule.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/ClientCertAuthModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/ClientCertAuthModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/DigestAuthModule.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/DigestAuthModule.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/DigestAuthModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/DigestAuthModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/FormAuthModule.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/FormAuthModule.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/FormAuthModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/FormAuthModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/UserInfo.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/UserInfo.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/UserInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/modules/UserInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/ServletCallbackHandler.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/ServletCallbackHandler.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/ServletCallbackHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/ServletCallbackHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/SimpleAuthConfig.java jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/SimpleAuthConfig.java --- jetty8-8.1.18/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/SimpleAuthConfig.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/SimpleAuthConfig.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/pom.xml jetty8-8.1.19/jetty-jmx/pom.xml --- jetty8-8.1.18/jetty-jmx/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-jmx diff -Nru jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ConnectorServer.java jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ConnectorServer.java --- jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ConnectorServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ConnectorServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/MBeanContainer.java jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/MBeanContainer.java --- jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/MBeanContainer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/MBeanContainer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ObjectMBean.java jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ObjectMBean.java --- jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ObjectMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/jmx/ObjectMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/util/log/jmx/LogMBean.java jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/util/log/jmx/LogMBean.java --- jetty8-8.1.18/jetty-jmx/src/main/java/org/eclipse/jetty/util/log/jmx/LogMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/main/java/org/eclipse/jetty/util/log/jmx/LogMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Base.java jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Base.java --- jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Base.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Base.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Derived.java jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Derived.java --- jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Derived.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Derived.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Signature.java jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Signature.java --- jetty8-8.1.18/jetty-jmx/src/test/java/com/acme/Signature.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/test/java/com/acme/Signature.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ConnectorServerTest.java jetty8-8.1.19/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ConnectorServerTest.java --- jetty8-8.1.18/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ConnectorServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ConnectorServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ObjectMBeanTest.java jetty8-8.1.19/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ObjectMBeanTest.java --- jetty8-8.1.18/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ObjectMBeanTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ObjectMBeanTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/pom.xml jetty8-8.1.19/jetty-jndi/pom.xml --- jetty8-8.1.18/jetty-jndi/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-jndi diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/BindingEnumeration.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/BindingEnumeration.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/BindingEnumeration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/BindingEnumeration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/ContextFactory.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/ContextFactory.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/ContextFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/ContextFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/DataSourceCloser.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/DataSourceCloser.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/DataSourceCloser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/DataSourceCloser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/factories/MailSessionReference.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/factories/MailSessionReference.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/factories/MailSessionReference.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/factories/MailSessionReference.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/InitialContextFactory.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/InitialContextFactory.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/InitialContextFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/InitialContextFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaNameParser.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaNameParser.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaNameParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaNameParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaRootURLContext.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaRootURLContext.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaRootURLContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaRootURLContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaURLContextFactory.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaURLContextFactory.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaURLContextFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/java/javaURLContextFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/local/localContextRoot.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/local/localContextRoot.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/local/localContextRoot.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/local/localContextRoot.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NameEnumeration.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NameEnumeration.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NameEnumeration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NameEnumeration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingContext.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingContext.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingUtil.java jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingUtil.java --- jetty8-8.1.18/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/main/java/org/eclipse/jetty/jndi/NamingUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/factories/TestMailSessionReference.java jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/factories/TestMailSessionReference.java --- jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/factories/TestMailSessionReference.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/factories/TestMailSessionReference.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestJNDI.java jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestJNDI.java --- jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestJNDI.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestJNDI.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestLocalJNDI.java jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestLocalJNDI.java --- jetty8-8.1.18/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestLocalJNDI.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jndi/src/test/java/org/eclipse/jetty/jndi/java/TestLocalJNDI.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-jsp/pom.xml jetty8-8.1.19/jetty-jsp/pom.xml --- jetty8-8.1.18/jetty-jsp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-jsp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-jsp diff -Nru jetty8-8.1.18/jetty-monitor/pom.xml jetty8-8.1.19/jetty-monitor/pom.xml --- jetty8-8.1.18/jetty-monitor/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -19,7 +19,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-monitor diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorAction.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorAction.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorAction.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorAction.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTools.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTools.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTools.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTools.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ConsoleNotifier.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ConsoleNotifier.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ConsoleNotifier.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ConsoleNotifier.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventNotifier.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventNotifier.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventNotifier.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventNotifier.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventState.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventState.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventState.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventState.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/LoggingNotifier.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/LoggingNotifier.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/LoggingNotifier.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/LoggingNotifier.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorAction.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorAction.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorAction.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorAction.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorTask.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorTask.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorTask.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorTask.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/NotifierGroup.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/NotifierGroup.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/NotifierGroup.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/NotifierGroup.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ServiceConnection.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ServiceConnection.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ServiceConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ServiceConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/SimpleAction.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/SimpleAction.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/SimpleAction.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/SimpleAction.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/JMXMonitor.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/JMXMonitor.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/JMXMonitor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/JMXMonitor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorException.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorException.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorInfo.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorInfo.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/ThreadMonitor.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/ThreadMonitor.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/ThreadMonitor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/ThreadMonitor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AggregateEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AggregateEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AggregateEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AggregateEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AndEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AndEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AndEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AndEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/EqualToAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/EqualToAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/EqualToAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/EqualToAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanOrEqualToAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanOrEqualToAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanOrEqualToAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanOrEqualToAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanOrEqualToAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanOrEqualToAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanOrEqualToAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanOrEqualToAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/OrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/OrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/OrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/OrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeInclAttrEventTrigger.java jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeInclAttrEventTrigger.java --- jetty8-8.1.18/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeInclAttrEventTrigger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeInclAttrEventTrigger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/AttrEventTriggerTest.java jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/AttrEventTriggerTest.java --- jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/AttrEventTriggerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/AttrEventTriggerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/RequestCounter.java jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/RequestCounter.java --- jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/RequestCounter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/RequestCounter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/ThreadMonitorTest.java jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/ThreadMonitorTest.java --- jetty8-8.1.18/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/ThreadMonitorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-monitor/src/test/java/org/eclipse/jetty/monitor/ThreadMonitorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/pom.xml jetty8-8.1.19/jetty-nested/pom.xml --- jetty8-8.1.18/jetty-nested/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 jetty-nested Jetty :: Nested diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnection.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnection.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnector.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnector.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedEndPoint.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedEndPoint.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedGenerator.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedGenerator.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedParser.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedParser.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedRequest.java jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedRequest.java --- jetty8-8.1.18/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedRequest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedRequest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nosql/pom.xml jetty8-8.1.19/jetty-nosql/pom.xml --- jetty8-8.1.18/jetty-nosql/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-nosql diff -Nru jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/jmx/MongoSessionManagerMBean.java jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/jmx/MongoSessionManagerMBean.java --- jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/jmx/MongoSessionManagerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/jmx/MongoSessionManagerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionIdManager.java jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionIdManager.java --- jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionIdManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionIdManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionManager.java jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionManager.java --- jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSession.java jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSession.java --- jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSessionManager.java jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSessionManager.java --- jetty8-8.1.18/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/pom.xml jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/pom.xml --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationConfiguration.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationConfiguration.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationParser.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationParser.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/annotations/AnnotationParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractContextProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractContextProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractContextProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractContextProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractOSGiApp.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractOSGiApp.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractOSGiApp.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractOSGiApp.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractWebAppProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractWebAppProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractWebAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/AbstractWebAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleContextProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleContextProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleContextProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleContextProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleWebAppProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleWebAppProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleWebAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/BundleWebAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloader.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloader.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloaderWithInsertedJettyClassloader.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloaderWithInsertedJettyClassloader.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloaderWithInsertedJettyClassloader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloaderWithInsertedJettyClassloader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/DefaultJettyAtJettyHomeHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/DefaultJettyAtJettyHomeHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/DefaultJettyAtJettyHomeHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/DefaultJettyAtJettyHomeHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/IManagedJettyServerRegistry.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/IManagedJettyServerRegistry.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/IManagedJettyServerRegistry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/IManagedJettyServerRegistry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServerServiceTracker.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServerServiceTracker.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServerServiceTracker.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServerServiceTracker.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/ServerInstanceWrapper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/ServerInstanceWrapper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/ServerInstanceWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/ServerInstanceWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/BundleFileLocatorHelperFactory.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/BundleFileLocatorHelperFactory.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/BundleFileLocatorHelperFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/BundleFileLocatorHelperFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/IWebBundleDeployerHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/IWebBundleDeployerHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/IWebBundleDeployerHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/IWebBundleDeployerHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/JettyContextHandlerServiceTracker.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/JettyContextHandlerServiceTracker.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/JettyContextHandlerServiceTracker.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/JettyContextHandlerServiceTracker.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/LibExtClassLoaderHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/LibExtClassLoaderHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/LibExtClassLoaderHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/LibExtClassLoaderHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/OSGiWebappClassLoader.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/OSGiWebappClassLoader.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/OSGiWebappClassLoader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/OSGiWebappClassLoader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleTrackerCustomizer.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleTrackerCustomizer.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleTrackerCustomizer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleTrackerCustomizer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/JettyBootstrapActivator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/JettyBootstrapActivator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/JettyBootstrapActivator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/JettyBootstrapActivator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiDeployer.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiDeployer.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiDeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiDeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiMetaInfConfiguration.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiMetaInfConfiguration.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiMetaInfConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiMetaInfConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiServerConstants.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiServerConstants.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiServerConstants.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiServerConstants.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiUndeployer.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiUndeployer.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiUndeployer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiUndeployer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebappConstants.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebappConstants.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebappConstants.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebappConstants.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebInfConfiguration.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebInfConfiguration.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebInfConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebInfConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceContextProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceContextProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceContextProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceContextProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceWebAppProvider.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceWebAppProvider.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceWebAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/ServiceWebAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelperFactory.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelperFactory.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelperFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelperFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleFileLocatorHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleFileLocatorHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleFileLocatorHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleFileLocatorHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/EventSender.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/EventSender.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/EventSender.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/EventSender.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultBundleClassLoaderHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultBundleClassLoaderHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultBundleClassLoaderHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultBundleClassLoaderHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/PackageAdminServiceTracker.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/PackageAdminServiceTracker.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/PackageAdminServiceTracker.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/PackageAdminServiceTracker.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/OSGiClassLoader.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/OSGiClassLoader.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/OSGiClassLoader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/OSGiClassLoader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/WebappRegistrationCustomizer.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/WebappRegistrationCustomizer.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/WebappRegistrationCustomizer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/WebappRegistrationCustomizer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorListener.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorListener.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorServletDelegate.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorServletDelegate.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorServletDelegate.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/nested/NestedConnectorServletDelegate.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/pom.xml jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/pom.xml --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/PluggableWebAppRegistrationCustomizerImpl.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/PluggableWebAppRegistrationCustomizerImpl.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/PluggableWebAppRegistrationCustomizerImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/PluggableWebAppRegistrationCustomizerImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/WebappRegistrationCustomizerImpl.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/WebappRegistrationCustomizerImpl.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/WebappRegistrationCustomizerImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/WebappRegistrationCustomizerImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/FragmentActivator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/FragmentActivator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/FragmentActivator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/FragmentActivator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/TagLibOSGiConfiguration.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/TagLibOSGiConfiguration.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/TagLibOSGiConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/TagLibOSGiConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/FragmentActivator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/FragmentActivator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/FragmentActivator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/FragmentActivator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/internal/LogbackInitializer.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/internal/LogbackInitializer.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/internal/LogbackInitializer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-logback/src/main/java/org/eclipse/jetty/osgi/boot/logback/internal/LogbackInitializer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/pom.xml jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/pom.xml --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarBundleManifestGenerator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarBundleManifestGenerator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarBundleManifestGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarBundleManifestGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarURLConnection.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarURLConnection.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarURLConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarURLConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlActivator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlActivator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlActivator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlActivator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlStreamHandler.java jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlStreamHandler.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlStreamHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlStreamHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxChattingSupport.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxChattingSupport.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxChattingSupport.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxChattingSupport.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleContinuationServlet.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleContinuationServlet.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleContinuationServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleContinuationServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleSyncServlet.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleSyncServlet.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleSyncServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleSyncServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleWebSocketServlet.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleWebSocketServlet.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleWebSocketServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/EquinoxConsoleWebSocketServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleSession.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleSession.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleWriterOutputStream.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleWriterOutputStream.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleWriterOutputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/console/WebConsoleWriterOutputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/WebEquinoxToolsActivator.java jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/WebEquinoxToolsActivator.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/WebEquinoxToolsActivator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-equinoxtools/src/main/java/org/eclipse/jetty/osgi/equinoxtools/WebEquinoxToolsActivator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/pom.xml jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/pom.xml --- jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorHandlerHelper.java jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorHandlerHelper.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorHandlerHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorHandlerHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorPageErrorHandler.java jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorPageErrorHandler.java --- jetty8-8.1.18/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorPageErrorHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/jetty-osgi-httpservice/src/main/java/org/eclipse/jetty/osgi/httpservice/HttpServiceErrorPageErrorHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/pom.xml jetty8-8.1.19/jetty-osgi/pom.xml --- jetty8-8.1.18/jetty-osgi/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml org.eclipse.jetty.osgi diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi/pom.xml jetty8-8.1.19/jetty-osgi/test-jetty-osgi/pom.xml --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/JettyOSGiBootContextAsService.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/JettyOSGiBootContextAsService.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/JettyOSGiBootContextAsService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/JettyOSGiBootContextAsService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootCore.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootCore.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootCore.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootCore.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWebAppAsService.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWebAppAsService.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWebAppAsService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWebAppAsService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWithJsp.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWithJsp.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWithJsp.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWithJsp.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi-context/pom.xml jetty8-8.1.19/jetty-osgi/test-jetty-osgi-context/pom.xml --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi-context/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi-context/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi-context/src/main/java/com/acme/osgi/Activator.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi-context/src/main/java/com/acme/osgi/Activator.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi-context/src/main/java/com/acme/osgi/Activator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi-context/src/main/java/com/acme/osgi/Activator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi-webapp/pom.xml jetty8-8.1.19/jetty-osgi/test-jetty-osgi-webapp/pom.xml --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty.osgi jetty-osgi-project - 8.1.18.v20150929 + 8.1.19.v20160209 ../pom.xml 4.0.0 diff -Nru jetty8-8.1.18/jetty-osgi/test-jetty-osgi-webapp/src/main/java/com/acme/osgi/Activator.java jetty8-8.1.19/jetty-osgi/test-jetty-osgi-webapp/src/main/java/com/acme/osgi/Activator.java --- jetty8-8.1.18/jetty-osgi/test-jetty-osgi-webapp/src/main/java/com/acme/osgi/Activator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-osgi/test-jetty-osgi-webapp/src/main/java/com/acme/osgi/Activator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-overlay-deployer/pom.xml jetty8-8.1.19/jetty-overlay-deployer/pom.xml --- jetty8-8.1.18/jetty-overlay-deployer/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-overlay-deployer/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-overlay-deployer diff -Nru jetty8-8.1.18/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/OverlayedAppProvider.java jetty8-8.1.19/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/OverlayedAppProvider.java --- jetty8-8.1.18/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/OverlayedAppProvider.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/OverlayedAppProvider.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/TemplateContext.java jetty8-8.1.19/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/TemplateContext.java --- jetty8-8.1.18/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/TemplateContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-overlay-deployer/src/main/java/org/eclipse/jetty/overlays/TemplateContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayedAppProviderTest.java jetty8-8.1.19/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayedAppProviderTest.java --- jetty8-8.1.18/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayedAppProviderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayedAppProviderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayServer.java jetty8-8.1.19/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayServer.java --- jetty8-8.1.18/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-overlay-deployer/src/test/java/org/eclipse/jetty/overlays/OverlayServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/pom.xml jetty8-8.1.19/jetty-plus/pom.xml --- jetty8-8.1.18/jetty-plus/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-plus diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/ContainerInitializer.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/ContainerInitializer.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/ContainerInitializer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/ContainerInitializer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/InjectionCollection.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/InjectionCollection.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/InjectionCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/InjectionCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/Injection.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/Injection.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/Injection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/Injection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallback.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallback.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PostConstructCallback.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PostConstructCallback.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PostConstructCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PostConstructCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PreDestroyCallback.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PreDestroyCallback.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PreDestroyCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/PreDestroyCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAsCollection.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAsCollection.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAsCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAsCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAs.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAs.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAs.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/RunAs.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/AbstractCallbackHandler.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/AbstractCallbackHandler.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/AbstractCallbackHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/AbstractCallbackHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/DefaultCallbackHandler.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/DefaultCallbackHandler.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/DefaultCallbackHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/DefaultCallbackHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/ObjectCallback.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/ObjectCallback.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/ObjectCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/ObjectCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/RequestParameterCallback.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/RequestParameterCallback.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/RequestParameterCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/callback/RequestParameterCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASGroup.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASGroup.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASGroup.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASGroup.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASPrincipal.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASPrincipal.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASPrincipal.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASPrincipal.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASRole.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASRole.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASRole.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASRole.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASUserPrincipal.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASUserPrincipal.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASUserPrincipal.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/JAASUserPrincipal.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/RoleCheckPolicy.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/RoleCheckPolicy.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/RoleCheckPolicy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/RoleCheckPolicy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractDatabaseLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractDatabaseLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractDatabaseLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractDatabaseLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/AbstractLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/DataSourceLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/DataSourceLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/DataSourceLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/DataSourceLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/JDBCLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/JDBCLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/JDBCLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/JDBCLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/LdapLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/LdapLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/LdapLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/LdapLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/PropertyFileLoginModule.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/PropertyFileLoginModule.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/PropertyFileLoginModule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/PropertyFileLoginModule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/UserInfo.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/UserInfo.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/UserInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/spi/UserInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/StrictRoleCheckPolicy.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/StrictRoleCheckPolicy.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/StrictRoleCheckPolicy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jaas/StrictRoleCheckPolicy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/EnvEntry.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/EnvEntry.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/EnvEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/EnvEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntry.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntry.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntryUtil.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntryUtil.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntryUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/NamingEntryUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Resource.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Resource.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Resource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Resource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Transaction.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Transaction.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Transaction.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Transaction.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/security/DataSourceLoginService.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/security/DataSourceLoginService.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/security/DataSourceLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/security/DataSourceLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/servlet/ServletHandler.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/servlet/ServletHandler.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/servlet/ServletHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/servlet/ServletHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/EnvConfiguration.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/EnvConfiguration.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/EnvConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/EnvConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusConfiguration.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusConfiguration.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDecorator.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDecorator.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDecorator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDecorator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessor.java jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessor.java --- jetty8-8.1.18/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/main/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntries.java jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntries.java --- jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntries.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntries.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntryUtil.java jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntryUtil.java --- jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntryUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/jndi/TestNamingEntryUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessorTest.java jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessorTest.java --- jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/PlusDescriptorProcessorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/TestConfiguration.java jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/TestConfiguration.java --- jetty8-8.1.18/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/TestConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-plus/src/test/java/org/eclipse/jetty/plus/webapp/TestConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/pom.xml jetty8-8.1.19/jetty-policy/pom.xml --- jetty8-8.1.18/jetty-policy/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 jetty-policy Jetty :: Policy Tool diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/AbstractEntry.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/AbstractEntry.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/AbstractEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/AbstractEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/GrantEntry.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/GrantEntry.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/GrantEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/GrantEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/KeystoreEntry.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/KeystoreEntry.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/KeystoreEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/KeystoreEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PermissionEntry.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PermissionEntry.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PermissionEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PermissionEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PrincipalEntry.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PrincipalEntry.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PrincipalEntry.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PrincipalEntry.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicyConfigurator.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicyConfigurator.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicyConfigurator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicyConfigurator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicy.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicy.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyBlock.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyBlock.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyBlock.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyBlock.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyContext.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyContext.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyException.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyException.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyMonitor.java jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyMonitor.java --- jetty8-8.1.18/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyMonitor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyMonitor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyRuntimeTest.java jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyRuntimeTest.java --- jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyRuntimeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyRuntimeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyTest.java jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyTest.java --- jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyContextTest.java jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyContextTest.java --- jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyContextTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyContextTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyMonitorTest.java jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyMonitorTest.java --- jetty8-8.1.18/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyMonitorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyMonitorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/pom.xml jetty8-8.1.19/jetty-rewrite/pom.xml --- jetty8-8.1.18/jetty-rewrite/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-rewrite diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/CookiePatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/CookiePatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/CookiePatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/CookiePatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/HeaderRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/LegacyRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/LegacyRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/LegacyRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/LegacyRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/MsieSslRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/MsieSslRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/MsieSslRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/MsieSslRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/PatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/PatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/PatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/PatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ProxyRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ProxyRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ProxyRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ProxyRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RegexRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RegexRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RegexRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RegexRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteHandler.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteHandler.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewritePatternRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewritePatternRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewritePatternRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewritePatternRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RuleContainer.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RuleContainer.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RuleContainer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RuleContainer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -26,6 +26,7 @@ import org.eclipse.jetty.server.AbstractHttpConnection; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.util.LazyList; +import org.eclipse.jetty.util.URIUtil; import org.eclipse.jetty.util.log.Log; import org.eclipse.jetty.util.log.Logger; @@ -38,11 +39,13 @@ public class RuleContainer extends Rule { + public static final String ORIGINAL_QUERYSTRING_ATTRIBUTE_SUFFIX = ".QUERYSTRING"; private static final Logger LOG = Log.getLogger(RuleContainer.class); protected Rule[] _rules; protected String _originalPathAttribute; + protected String _originalQueryStringAttribute; protected boolean _rewriteRequestURI=true; protected boolean _rewritePathInfo=true; @@ -172,6 +175,7 @@ public void setOriginalPathAttribute(String originalPathAttribte) { _originalPathAttribute=originalPathAttribte; + _originalQueryStringAttribute = originalPathAttribte + ORIGINAL_QUERYSTRING_ATTRIBUTE_SUFFIX; } /** @@ -195,18 +199,26 @@ protected String apply(String target, HttpServletRequest request, HttpServletResponse response) throws IOException { boolean original_set=_originalPathAttribute==null; + + target = URIUtil.compactPath(target); for (Rule rule : _rules) { String applied=rule.matchAndApply(target,request, response); if (applied!=null) - { + { + applied = URIUtil.compactPath(applied); + LOG.debug("applied {}",rule); LOG.debug("rewrote {} to {}",target,applied); if (!original_set) { original_set=true; request.setAttribute(_originalPathAttribute, target); + + String query = request.getQueryString(); + if (query != null) + request.setAttribute(_originalQueryStringAttribute,query); } if (_rewriteRequestURI) diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/Rule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/Rule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/Rule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/Rule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ValidUrlRule.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ValidUrlRule.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ValidUrlRule.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/ValidUrlRule.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainer.java jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainer.java --- jetty8-8.1.18/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/AbstractRuleTestCase.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/AbstractRuleTestCase.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/AbstractRuleTestCase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/AbstractRuleTestCase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/CookiePatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/CookiePatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/CookiePatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/CookiePatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ForwardedSchemeHeaderRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/HeaderPatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/LegacyRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/LegacyRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/LegacyRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/LegacyRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/MsieSslRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/MsieSslRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/MsieSslRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/MsieSslRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/PatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/PatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/PatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/PatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ProxyRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ProxyRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ProxyRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ProxyRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectPatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RegexRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RegexRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RegexRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RegexRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ResponsePatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteHandlerTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteHandlerTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewritePatternRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewritePatternRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewritePatternRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewritePatternRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RewriteRegexRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ValidUrlRuleTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ValidUrlRuleTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ValidUrlRuleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/ValidUrlRuleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainerTest.java jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainerTest.java --- jetty8-8.1.18/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/VirtualHostRuleContainerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/pom.xml jetty8-8.1.19/jetty-security/pom.xml --- jetty8-8.1.18/jetty-security/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-security diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/BasicAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/BasicAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/BasicAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/BasicAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/ClientCertAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/ClientCertAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/ClientCertAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/ClientCertAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DeferredAuthentication.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DeferredAuthentication.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DeferredAuthentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DeferredAuthentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallbackImpl.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallbackImpl.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallbackImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallbackImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallback.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallback.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallback.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginCallback.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SpnegoAuthenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SpnegoAuthenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SpnegoAuthenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SpnegoAuthenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/Authenticator.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/Authenticator.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/Authenticator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/Authenticator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintAware.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintAware.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintAware.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintAware.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintMapping.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintMapping.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintMapping.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintMapping.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/CrossContextPsuedoSession.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/CrossContextPsuedoSession.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/CrossContextPsuedoSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/CrossContextPsuedoSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultAuthenticatorFactory.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultAuthenticatorFactory.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultAuthenticatorFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultAuthenticatorFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultIdentityService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultIdentityService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultIdentityService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultIdentityService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultUserIdentity.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultUserIdentity.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultUserIdentity.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/DefaultUserIdentity.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/HashCrossContextPsuedoSession.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/HashCrossContextPsuedoSession.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/HashCrossContextPsuedoSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/HashCrossContextPsuedoSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/IdentityService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/IdentityService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/IdentityService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/IdentityService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/LoginService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/LoginService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/LoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/LoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/MappedLoginService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/MappedLoginService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/MappedLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/MappedLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/PropertyUserStore.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/PropertyUserStore.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/PropertyUserStore.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/PropertyUserStore.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RoleInfo.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RoleInfo.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RoleInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RoleInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RoleRunAsToken.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RoleRunAsToken.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RoleRunAsToken.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RoleRunAsToken.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RunAsToken.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RunAsToken.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/RunAsToken.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/RunAsToken.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SecurityHandler.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SecurityHandler.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SecurityHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SecurityHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ServerAuthException.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ServerAuthException.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/ServerAuthException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/ServerAuthException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoLoginService.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoLoginService.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoLoginService.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoLoginService.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserIdentity.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserIdentity.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserIdentity.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserIdentity.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserPrincipal.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserPrincipal.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserPrincipal.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserPrincipal.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/UserAuthentication.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/UserAuthentication.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/UserAuthentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/UserAuthentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/UserDataConstraint.java jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/UserDataConstraint.java --- jetty8-8.1.18/jetty-security/src/main/java/org/eclipse/jetty/security/UserDataConstraint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/main/java/org/eclipse/jetty/security/UserDataConstraint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/AliasedConstraintTest.java jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/AliasedConstraintTest.java --- jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/AliasedConstraintTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/AliasedConstraintTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java --- jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/DataConstraintsTest.java jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/DataConstraintsTest.java --- jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/DataConstraintsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/DataConstraintsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/PropertyUserStoreTest.java jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/PropertyUserStoreTest.java --- jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/PropertyUserStoreTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/PropertyUserStoreTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/SpecExampleConstraintTest.java jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/SpecExampleConstraintTest.java --- jetty8-8.1.18/jetty-security/src/test/java/org/eclipse/jetty/security/SpecExampleConstraintTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-security/src/test/java/org/eclipse/jetty/security/SpecExampleConstraintTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/pom.xml jetty8-8.1.19/jetty-server/pom.xml --- jetty8-8.1.18/jetty-server/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-server diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractHttpConnection.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractHttpConnection.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -922,6 +922,8 @@ { _generator.setPersistent(true); _parser.setPersistent(true); + if (_parser instanceof HttpParser) + ((HttpParser)_parser).setState(HttpParser.STATE_END); } if (_server.getSendDateHeader()) diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncContinuation.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncContinuation.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncContinuation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncContinuation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncHttpConnection.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncHttpConnection.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncNCSARequestLog.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncNCSARequestLog.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncNCSARequestLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/AsyncNCSARequestLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Authentication.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Authentication.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Authentication.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Authentication.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/bio/SocketConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/bio/SocketConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/bio/SocketConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/bio/SocketConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/BlockingHttpConnection.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/BlockingHttpConnection.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/BlockingHttpConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/BlockingHttpConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Connector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Connector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Connector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Connector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/CookieCutter.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/CookieCutter.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/CookieCutter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/CookieCutter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Dispatcher.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Dispatcher.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Dispatcher.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Dispatcher.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandlerContainer.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandlerContainer.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandlerContainer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandlerContainer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/AbstractHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ConnectHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ConnectHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ConnectHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ConnectHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandlerCollection.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandlerCollection.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandlerCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandlerCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DebugHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DebugHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DebugHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DebugHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DefaultHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DefaultHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DefaultHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/DefaultHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ErrorHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ErrorHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ErrorHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ErrorHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/GzipHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/GzipHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/GzipHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/GzipHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerCollection.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerCollection.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerList.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerList.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerList.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerList.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerWrapper.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerWrapper.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HandlerWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HotSwapHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HotSwapHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HotSwapHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/HotSwapHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IdleTimeoutHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IdleTimeoutHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IdleTimeoutHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IdleTimeoutHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IPAccessHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IPAccessHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IPAccessHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/IPAccessHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/AbstractHandlerMBean.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/AbstractHandlerMBean.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/AbstractHandlerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/AbstractHandlerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/ContextHandlerMBean.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/ContextHandlerMBean.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/ContextHandlerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/ContextHandlerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/MovedContextHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/MovedContextHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/MovedContextHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/MovedContextHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ProxyHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ProxyHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ProxyHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ProxyHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/RequestLogHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/RequestLogHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/RequestLogHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/RequestLogHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ResourceHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ResourceHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ResourceHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ResourceHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ScopedHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ScopedHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ScopedHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ScopedHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ShutdownHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ShutdownHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ShutdownHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ShutdownHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/StatisticsHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/StatisticsHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/handler/StatisticsHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/handler/StatisticsHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HandlerContainer.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HandlerContainer.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HandlerContainer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HandlerContainer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Handler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Handler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Handler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Handler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpOutput.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpOutput.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpOutput.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpOutput.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpWriter.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpWriter.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/HttpWriter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/HttpWriter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/InclusiveByteRange.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/InclusiveByteRange.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/InclusiveByteRange.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/InclusiveByteRange.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/jmx/ServerMBean.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/jmx/ServerMBean.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/jmx/ServerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/jmx/ServerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/LocalConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/LocalConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/LocalConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/LocalConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/NCSARequestLog.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/NCSARequestLog.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/NCSARequestLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/NCSARequestLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/AbstractNIOConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/AbstractNIOConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/AbstractNIOConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/AbstractNIOConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/BlockingChannelConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/BlockingChannelConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/BlockingChannelConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/BlockingChannelConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/InheritedChannelConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/InheritedChannelConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/InheritedChannelConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/InheritedChannelConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NetworkTrafficSelectChannelConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NetworkTrafficSelectChannelConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NetworkTrafficSelectChannelConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NetworkTrafficSelectChannelConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NIOConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NIOConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NIOConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/NIOConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/SelectChannelConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/SelectChannelConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/nio/SelectChannelConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/nio/SelectChannelConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Request.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -40,7 +40,6 @@ import java.util.Map.Entry; import javax.servlet.AsyncContext; -import javax.servlet.AsyncEvent; import javax.servlet.AsyncListener; import javax.servlet.DispatcherType; import javax.servlet.MultipartConfigElement; @@ -987,6 +986,8 @@ */ public RequestDispatcher getRequestDispatcher(String path) { + path = URIUtil.compactPath(path); + if (path == null || _context == null) return null; diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/RequestLog.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/RequestLog.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/RequestLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/RequestLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Response.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Response.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Response.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Response.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -23,13 +23,11 @@ import java.util.Collection; import java.util.ArrayList; import java.util.Collections; -import java.util.EnumSet; import java.util.Enumeration; import java.util.Locale; import javax.servlet.RequestDispatcher; import javax.servlet.ServletOutputStream; -import javax.servlet.SessionTrackingMode; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; @@ -62,7 +60,7 @@ public class Response implements HttpServletResponse { private static final Logger LOG = Log.getLogger(Response.class); - + private final static int __MIN_BUFFER_SIZE = 1; public static final int NONE=0, @@ -383,7 +381,14 @@ writer.write(". Reason:\n
    ");
                 writer.write(message);
                 writer.write("
"); - writer.write("

\n
Powered by Jetty://"); + writer.write("

\n"); + + if(_connection.getServer().getSendServerVersion()) + { + writer.write("
Powered by Jetty:// "); + writer.write(Server.getVersion()); + writer.write(""); + } for (int i= 0; i < 20; i++) writer.write("\n "); @@ -413,10 +418,18 @@ */ public void sendError(int sc) throws IOException { - if (sc==102) - sendProcessing(); - else - sendError(sc,null); + switch (sc) + { + case -1: + _connection.getEndPoint().close(); + break; + case 102: + sendProcessing(); + break; + default: + sendError(sc,null); + break; + } } /* ------------------------------------------------------------ */ @@ -1021,6 +1034,8 @@ { if (isCommitted() || getContentCount()>0) throw new IllegalStateException("Committed or content written"); + if (size <= 0) + size = __MIN_BUFFER_SIZE; _connection.getGenerator().increaseContentBufferSize(size); } diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Server.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Server.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/Server.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/Server.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ServletRequestHttpWrapper.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ServletRequestHttpWrapper.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ServletRequestHttpWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ServletRequestHttpWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ServletResponseHttpWrapper.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ServletResponseHttpWrapper.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ServletResponseHttpWrapper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ServletResponseHttpWrapper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionIdManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionIdManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionIdManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionIdManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSession.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSession.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/AbstractSessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashedSession.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashedSession.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashedSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashedSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionIdManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionIdManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionIdManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionIdManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/HashSessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionIdManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionIdManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionIdManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionIdManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/JDBCSessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/jmx/AbstractSessionManagerMBean.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/jmx/AbstractSessionManagerMBean.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/jmx/AbstractSessionManagerMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/jmx/AbstractSessionManagerMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/SessionIdManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/SessionIdManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/SessionIdManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/SessionIdManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/SessionManager.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/SessionManager.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/SessionManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/SessionManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ShutdownMonitor.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ShutdownMonitor.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ShutdownMonitor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ShutdownMonitor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/ServletSSL.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/ServletSSL.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/ServletSSL.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/ServletSSL.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslCertificates.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslCertificates.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslCertificates.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslCertificates.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSelectChannelConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSelectChannelConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSelectChannelConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSelectChannelConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSocketConnector.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSocketConnector.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSocketConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslSocketConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/UserIdentity.java jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/UserIdentity.java --- jetty8-8.1.18/jetty-server/src/main/java/org/eclipse/jetty/server/UserIdentity.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/main/java/org/eclipse/jetty/server/UserIdentity.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AbstractConnectorTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AbstractConnectorTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AbstractConnectorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AbstractConnectorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncRequestReadTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncRequestReadTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncRequestReadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncRequestReadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncStressTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncStressTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncStressTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/AsyncStressTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelCloseTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelCloseTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelServerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelServerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/BlockingChannelTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/CheckReverseProxyHeadersTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/CheckReverseProxyHeadersTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/CheckReverseProxyHeadersTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/CheckReverseProxyHeadersTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorCloseTestBase.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorCloseTestBase.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorCloseTestBase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorCloseTestBase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/DumpHandler.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/DumpHandler.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/DumpHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/DumpHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/EncodedHttpURITest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/EncodedHttpURITest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/EncodedHttpURITest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/EncodedHttpURITest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HalfCloseRaceTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HalfCloseRaceTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HalfCloseRaceTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HalfCloseRaceTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/AbstractConnectHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/AbstractConnectHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/AbstractConnectHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/AbstractConnectHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerSSLTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerSSLTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerSSLTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerSSLTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerUnitTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerUnitTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerUnitTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ConnectHandlerUnitTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerCollectionTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerCollectionTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerCollectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerCollectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ContextHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/IPAccessHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/IPAccessHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/IPAccessHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/IPAccessHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/RequestLogHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/RequestLogHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/RequestLogHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/RequestLogHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ScopedHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ScopedHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ScopedHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ScopedHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ShutdownHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ShutdownHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ShutdownHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ShutdownHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/StatisticsHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/StatisticsHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/handler/StatisticsHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/handler/StatisticsHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpConnectionTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpConnectionTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpConnectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpConnectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestBase.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestBase.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestBase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestBase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -20,6 +20,7 @@ import java.io.BufferedReader; import java.io.ByteArrayOutputStream; +import java.io.EOFException; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; @@ -50,8 +51,10 @@ import org.junit.Test; import org.junit.matchers.JUnitMatchers; +import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.greaterThanOrEqualTo; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.not; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotSame; import static org.junit.Assert.assertThat; @@ -1231,6 +1234,58 @@ } } + @Test + public void testAvailableForPipelinedRequests() throws Exception + { + configureServer(new AbstractHandler() + { + public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException + { + baseRequest.setHandled(true); + int available = request.getInputStream().available(); + ServletOutputStream output = response.getOutputStream(); + output.println(target); + output.println(String.valueOf(available)); + } + }); + + Socket client = newSocket(HOST,_connector.getLocalPort()); + try + { + OutputStream output = client.getOutputStream(); + InputStream input = client.getInputStream(); + + output.write(( + "GET /one HTTP/1.1\r\n"+ + "host: "+HOST+":"+_connector.getLocalPort()+"\r\n"+ + "\r\n"+ + "GET /two HTTP/1.1\r\n"+ + "host: "+HOST+":"+_connector.getLocalPort()+"\r\n"+ + "\r\n" + ).getBytes()); + output.flush(); + + BufferedReader reader = new BufferedReader(new InputStreamReader(input, "UTF-8")); + + while(reader.readLine().length() > 0) + { + // Skip response headers. + } + assertEquals("/one", reader.readLine()); + assertEquals(0, Integer.parseInt(reader.readLine())); + + while(reader.readLine().length() > 0) + { + // Skip response headers. + } + assertEquals("/two", reader.readLine()); + assertEquals(0, Integer.parseInt(reader.readLine())); + } + finally + { + client.close(); + } + } @Test public void testDualRequest1() throws Exception @@ -1384,6 +1439,72 @@ } } + + @Test + public void testWriteBodyAfterNoBodyREsponse() throws Exception + { + configureServer(new WriteBodyAfterNoBodyResponseHandler()); + Socket client=newSocket(HOST,_connector.getLocalPort()); + final OutputStream out=client.getOutputStream(); + + out.write("GET / HTTP/1.1\r\nHost: test\r\n\r\n".getBytes()); + out.write("GET / HTTP/1.1\r\nHost: test\r\nConnection: close\r\n\r\n".getBytes()); + out.flush(); + + + BufferedReader in =new BufferedReader(new InputStreamReader(client.getInputStream())); + + String line=in.readLine(); + assertThat(line, containsString(" 304 ")); + while (true) + { + line=in.readLine(); + if (line==null) + throw new EOFException(); + if (line.length()==0) + break; + + assertThat(line, not(containsString("Content-Length"))); + assertThat(line, not(containsString("Content-Type"))); + assertThat(line, not(containsString("Transfer-Encoding"))); + } + + line=in.readLine(); + assertThat(line, containsString(" 304 ")); + while (true) + { + line=in.readLine(); + if (line==null) + throw new EOFException(); + if (line.length()==0) + break; + + assertThat(line, not(containsString("Content-Length"))); + assertThat(line, not(containsString("Content-Type"))); + assertThat(line, not(containsString("Transfer-Encoding"))); + } + + do + { + line=in.readLine(); + } + while (line!=null); + + } + + private class WriteBodyAfterNoBodyResponseHandler extends AbstractHandler + { + @Override + public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException + { + baseRequest.setHandled(true); + response.setStatus(304); + response.getOutputStream().print("yuck"); + response.flushBuffer(); + } + } + + public class NoopHandler extends AbstractHandler { public void handle(String target, Request baseRequest, diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestFixture.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestFixture.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestFixture.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpServerTestFixture.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpURITest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpURITest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpURITest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpURITest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpWriterTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpWriterTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/HttpWriterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/HttpWriterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/InclusiveByteRangeTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/InclusiveByteRangeTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/InclusiveByteRangeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/InclusiveByteRangeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/LocalAsyncContextTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/LocalAsyncContextTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/LocalAsyncContextTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/LocalAsyncContextTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/NetworkTrafficListenerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/NetworkTrafficListenerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/NetworkTrafficListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/NetworkTrafficListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/RequestTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/RequestTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/RequestTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/RequestTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ResourceCacheTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ResourceCacheTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ResourceCacheTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ResourceCacheTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ResponseTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ResponseTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ResponseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ResponseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -58,6 +58,7 @@ import org.eclipse.jetty.server.session.AbstractSessionManager; import org.eclipse.jetty.server.session.HashSessionIdManager; import org.eclipse.jetty.server.session.HashSessionManager; +import org.eclipse.jetty.util.StringUtil; import org.junit.After; import org.junit.Before; import org.junit.Test; @@ -74,6 +75,7 @@ public void init() throws Exception { server = new Server(); + server.setSendServerVersion(false); connector = new LocalConnector(); server.addConnector(connector); server.setHandler(new DumpHandler()); @@ -441,6 +443,25 @@ String location = response.getHeader("Location"); assertEquals("http://myhost:8888/path/test/other%2Fpath",location); } + + @Test + public void testSendServerVersion() throws Exception + { + ByteArrayEndPoint out=new ByteArrayEndPoint(new byte[]{},4096); + AbstractHttpConnection connection=new TestHttpConnection(connector,out, connector.getServer()); + Response response = new Response(connection); + Request request = connection.getRequest(); + request.setServerName("myhost"); + request.setServerPort(8888); + request.setRequestURI("/oops/"); + request.setContextPath("/"); + request.setServletPath("/"); + request.setPathInfo("/info/"); + + response.sendError(500, "Ooops"); + ByteArrayBuffer output = out.getOut(); + assertFalse("Contains jetty://", output.toString(StringUtil.__UTF8_CHARSET).contains("jetty://")); + } @Test public void testSendRedirect() diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/RFC2616Test.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/RFC2616Test.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/RFC2616Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/RFC2616Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelAsyncContextTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelAsyncContextTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelAsyncContextTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelAsyncContextTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelConnectorCloseTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelConnectorCloseTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelConnectorCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelConnectorCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelServerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelServerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ServerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ServerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/HashSessionManagerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/HashSessionManagerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/HashSessionManagerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/HashSessionManagerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionHandlerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionHandlerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/session/SessionHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ShutdownMonitorTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ShutdownMonitorTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ShutdownMonitorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ShutdownMonitorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SlowClientWithPipelinedRequestTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SlowClientWithPipelinedRequestTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SlowClientWithPipelinedRequestTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SlowClientWithPipelinedRequestTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketConnectorCloseTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketConnectorCloseTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketConnectorCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketConnectorCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketServerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketServerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SocketTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SocketTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SelectChannelServerSslTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SelectChannelServerSslTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SelectChannelServerSslTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SelectChannelServerSslTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLCloseTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLCloseTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLCloseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLCloseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLEngineTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLEngineTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLEngineTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLEngineTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslRenegotiateTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslRenegotiateTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslRenegotiateTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslRenegotiateTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLSelectChannelConnectorLoadTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLSelectChannelConnectorLoadTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLSelectChannelConnectorLoadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SSLSelectChannelConnectorLoadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSelectChannelTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSelectChannelTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSelectChannelTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSelectChannelTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketServerTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketServerTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketTimeoutTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketTimeoutTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslSocketTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslUploadTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslUploadTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslUploadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/ssl/SslUploadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/StressTest.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/StressTest.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/StressTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/StressTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SuspendHandler.java jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SuspendHandler.java --- jetty8-8.1.18/jetty-server/src/test/java/org/eclipse/jetty/server/SuspendHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-server/src/test/java/org/eclipse/jetty/server/SuspendHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/pom.xml jetty8-8.1.19/jetty-servlet/pom.xml --- jetty8-8.1.18/jetty-servlet/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-servlet diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/DefaultServlet.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/DefaultServlet.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/DefaultServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/DefaultServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ErrorPageErrorHandler.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ErrorPageErrorHandler.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ErrorPageErrorHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ErrorPageErrorHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterHolder.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterHolder.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterHolder.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterHolder.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterMapping.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterMapping.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterMapping.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/FilterMapping.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -173,6 +173,23 @@ } /* ------------------------------------------------------------ */ + public EnumSet getDispatcherTypes() + { + EnumSet dispatcherTypes = EnumSet.noneOf(DispatcherType.class); + if ((_dispatches & ERROR) == ERROR) + dispatcherTypes.add(DispatcherType.ERROR); + if ((_dispatches & FORWARD) == FORWARD) + dispatcherTypes.add(DispatcherType.FORWARD); + if ((_dispatches & INCLUDE) == INCLUDE) + dispatcherTypes.add(DispatcherType.INCLUDE); + if ((_dispatches & REQUEST) == REQUEST) + dispatcherTypes.add(DispatcherType.REQUEST); + if ((_dispatches & ASYNC) == ASYNC) + dispatcherTypes.add(DispatcherType.ASYNC); + return dispatcherTypes; + } + + /* ------------------------------------------------------------ */ /** * @param dispatches The dispatches to set. * @see #DEFAULT diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Holder.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Holder.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Holder.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Holder.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Invoker.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Invoker.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Invoker.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/Invoker.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/FilterMappingMBean.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/FilterMappingMBean.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/FilterMappingMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/FilterMappingMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/HolderMBean.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/HolderMBean.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/HolderMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/HolderMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/ServletMappingMBean.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/ServletMappingMBean.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/ServletMappingMBean.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/ServletMappingMBean.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/JspPropertyGroupServlet.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/JspPropertyGroupServlet.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/JspPropertyGroupServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/JspPropertyGroupServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/ELContextCleaner.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/ELContextCleaner.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/ELContextCleaner.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/ELContextCleaner.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -20,6 +20,7 @@ import java.lang.reflect.Field; import java.util.Iterator; +import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import javax.servlet.ServletContextEvent; @@ -105,7 +106,7 @@ if (!properties.isAccessible()) properties.setAccessible(true); - ConcurrentHashMap map = (ConcurrentHashMap) properties.get(null); + Map map = (Map) properties.get(null); if (map == null) return; diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/IntrospectorCleaner.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/IntrospectorCleaner.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/IntrospectorCleaner.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/IntrospectorCleaner.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/NoJspServlet.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/NoJspServlet.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/NoJspServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/NoJspServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletContextHandler.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletContextHandler.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletContextHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletContextHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -24,17 +24,15 @@ import java.util.Collections; import java.util.EnumSet; import java.util.HashMap; -import java.util.HashSet; -import java.util.ListIterator; -import java.util.Set; import java.util.List; +import java.util.ListIterator; import java.util.Map; import java.util.Queue; +import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ConcurrentMap; -import javax.servlet.AsyncContext; import javax.servlet.DispatcherType; import javax.servlet.Filter; import javax.servlet.FilterChain; @@ -60,7 +58,6 @@ import org.eclipse.jetty.server.AbstractHttpConnection; import org.eclipse.jetty.server.AsyncContinuation; import org.eclipse.jetty.server.Dispatcher; -import org.eclipse.jetty.server.AbstractHttpConnection; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.ServletRequestHttpWrapper; @@ -92,6 +89,7 @@ public class ServletHandler extends ScopedHandler { private static final Logger LOG = Log.getLogger(ServletHandler.class); + private static final Logger LOG_UNHANDLED = LOG.getLogger("unhandled"); /* ------------------------------------------------------------ */ public static final String __DEFAULT_SERVLET="default"; @@ -560,7 +558,11 @@ } else { - LOG.warn(request.getRequestURI(),th); + LOG.warn("Error Processing URI: {} - ({}) {}",request.getRequestURI(),th.getClass().getName(),th.getMessage()); + if (LOG_UNHANDLED.isDebugEnabled()) + { + LOG_UNHANDLED.debug(request.getRequestURI(),th); + } } request.setAttribute(RequestDispatcher.ERROR_EXCEPTION_TYPE,th.getClass()); @@ -666,7 +668,7 @@ if (_filterChainsCached) { if (LazyList.size(filters) > 0) - chain= new CachedChain(filters, servletHolder); + chain = newCachedChain(filters, servletHolder); final Map cache=_chainCache[dispatch]; final Queue lru=_chainLRU[dispatch]; @@ -819,6 +821,15 @@ } /* ------------------------------------------------------------ */ + /** + * Create a new CachedChain + */ + public CachedChain newCachedChain(Object filters, ServletHolder servletHolder) + { + return new CachedChain(filters, servletHolder); + } + + /* ------------------------------------------------------------ */ /** Convenience method to add a servlet Holder. public ServletHolder newServletHolder(Class servlet) { @@ -1432,20 +1443,20 @@ /* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */ - private class CachedChain implements FilterChain + protected class CachedChain implements FilterChain { FilterHolder _filterHolder; CachedChain _next; ServletHolder _servletHolder; /* ------------------------------------------------------------ */ - CachedChain(Object filters, ServletHolder servletHolder) + protected CachedChain(Object filters, ServletHolder servletHolder) { if (LazyList.size(filters)>0) { _filterHolder=(FilterHolder)LazyList.get(filters, 0); filters=LazyList.remove(filters,0); - _next=new CachedChain(filters,servletHolder); + _next=newCachedChain(filters,servletHolder); } else _servletHolder=servletHolder; diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHolder.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHolder.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHolder.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHolder.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletMapping.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletMapping.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletMapping.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletMapping.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/StatisticsServlet.java jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/StatisticsServlet.java --- jetty8-8.1.18/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/StatisticsServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/main/java/org/eclipse/jetty/servlet/StatisticsServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextDispatchWithQueryStrings.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextDispatchWithQueryStrings.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextDispatchWithQueryStrings.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextDispatchWithQueryStrings.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncContextTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncServletTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncServletTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/AsyncServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DefaultServletTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DefaultServletTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DefaultServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DefaultServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/DispatcherTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ErrorPageTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ErrorPageTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ErrorPageTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ErrorPageTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/HolderTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/HolderTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/HolderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/HolderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/InvokerTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/InvokerTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/InvokerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/InvokerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/SendErrorTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/SendErrorTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/SendErrorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/SendErrorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletContextHandlerTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletContextHandlerTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletContextHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletContextHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletHandlerTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletHandlerTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/ServletHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/StatisticsServletTest.java jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/StatisticsServletTest.java --- jetty8-8.1.18/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/StatisticsServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlet/src/test/java/org/eclipse/jetty/servlet/StatisticsServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/pom.xml jetty8-8.1.19/jetty-servlets/pom.xml --- jetty8-8.1.18/jetty-servlets/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-servlets diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/BalancerServlet.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/BalancerServlet.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/BalancerServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/BalancerServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CGI.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CGI.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CGI.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CGI.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CloseableDoSFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CloseableDoSFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CloseableDoSFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CloseableDoSFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ConcatServlet.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ConcatServlet.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ConcatServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ConcatServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CrossOriginFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CrossOriginFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CrossOriginFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CrossOriginFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/DoSFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/DoSFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/DoSFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/DoSFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/GzipFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/GzipFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/GzipFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/GzipFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/IncludableGzipFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/IncludableGzipFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/IncludableGzipFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/IncludableGzipFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PutFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PutFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PutFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PutFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/QoSFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/QoSFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/QoSFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/QoSFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/UserAgentFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/UserAgentFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/UserAgentFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/UserAgentFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/WelcomeFilter.java jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/WelcomeFilter.java --- jetty8-8.1.18/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/WelcomeFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/WelcomeFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractBalancerServletTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractBalancerServletTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractBalancerServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractBalancerServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractDoSFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractDoSFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractDoSFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractDoSFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AsyncProxyServer.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AsyncProxyServer.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AsyncProxyServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AsyncProxyServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/BalancerServletTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/BalancerServletTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/BalancerServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/BalancerServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CloseableDoSFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CloseableDoSFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CloseableDoSFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CloseableDoSFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CrossOriginFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CrossOriginFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CrossOriginFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/CrossOriginFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterJMXTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterJMXTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterJMXTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterJMXTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/GzipTester.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/GzipTester.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/GzipTester.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/GzipTester.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/Hex.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/Hex.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/Hex.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/Hex.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/NoOpOutputStream.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/NoOpOutputStream.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/NoOpOutputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/NoOpOutputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestDirContentServlet.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestDirContentServlet.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestDirContentServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestDirContentServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestMinGzipSizeServlet.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestMinGzipSizeServlet.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestMinGzipSizeServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestMinGzipSizeServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthStreamTypeWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthStreamTypeWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthStreamTypeWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthStreamTypeWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthTypeStreamWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthTypeStreamWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthTypeStreamWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletLengthTypeStreamWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWriteWithFlush.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWriteWithFlush.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWriteWithFlush.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamLengthTypeWriteWithFlush.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamTypeLengthWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamTypeLengthWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamTypeLengthWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletStreamTypeLengthWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeLengthStreamWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeLengthStreamWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeLengthStreamWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeLengthStreamWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeStreamLengthWrite.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeStreamLengthWrite.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeStreamLengthWrite.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestServletTypeStreamLengthWrite.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestStaticMimeTypeServlet.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestStaticMimeTypeServlet.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestStaticMimeTypeServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/gzip/TestStaticMimeTypeServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterContentLengthTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterContentLengthTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterContentLengthTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterContentLengthTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultNoRecompressTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultNoRecompressTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultNoRecompressTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultNoRecompressTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/GzipFilterDefaultTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterMinSizeTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterMinSizeTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterMinSizeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterMinSizeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/IncludableGzipFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/MultipartFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/MultipartFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/MultipartFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/MultipartFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PipelineHelper.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PipelineHelper.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PipelineHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PipelineHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/ProxyServletTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/ProxyServletTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/ProxyServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/ProxyServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PutFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PutFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PutFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/PutFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/QoSFilterTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/QoSFilterTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/QoSFilterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/QoSFilterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/TransparentProxyTest.java jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/TransparentProxyTest.java --- jetty8-8.1.18/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/TransparentProxyTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-servlets/src/test/java/org/eclipse/jetty/servlets/TransparentProxyTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/pom.xml jetty8-8.1.19/jetty-spdy/pom.xml --- jetty8-8.1.18/jetty-spdy/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/pom.xml jetty8-8.1.19/jetty-spdy/spdy-core/pom.xml --- jetty8-8.1.18/jetty-spdy/spdy-core/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.spdy spdy-parent - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ByteBufferDataInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ByteBufferDataInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ByteBufferDataInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ByteBufferDataInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/BytesDataInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/BytesDataInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/BytesDataInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/BytesDataInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/DataInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/DataInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/DataInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/DataInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/GoAwayInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/GoAwayInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/GoAwayInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/GoAwayInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/HeadersInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/HeadersInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/HeadersInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/HeadersInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Headers.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Headers.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Headers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Headers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/PingInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/PingInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/PingInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/PingInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ReplyInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ReplyInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ReplyInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/ReplyInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/RstInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/RstInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/RstInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/RstInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/server/ServerSessionFrameListener.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/server/ServerSessionFrameListener.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/server/ServerSessionFrameListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/server/ServerSessionFrameListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionFrameListener.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionFrameListener.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionFrameListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionFrameListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Session.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Session.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Session.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Session.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionStatus.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionStatus.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionStatus.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SessionStatus.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SettingsInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SettingsInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SettingsInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SettingsInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Settings.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Settings.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Settings.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Settings.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDYException.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDYException.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDYException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDYException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDY.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDY.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDY.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SPDY.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamFrameListener.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamFrameListener.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamFrameListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamFrameListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Stream.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Stream.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Stream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Stream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamStatus.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamStatus.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamStatus.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StreamStatus.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StringDataInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StringDataInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StringDataInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/StringDataInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SynInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SynInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SynInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/SynInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ByteBufferPool.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ByteBufferPool.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ByteBufferPool.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ByteBufferPool.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionDictionary.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionDictionary.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionDictionary.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionDictionary.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionFactory.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/CompressionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategy.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategy.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrameType.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrameType.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrameType.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/ControlFrameType.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/CredentialFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/CredentialFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/CredentialFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/CredentialFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/DataFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/DataFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/DataFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/DataFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/GoAwayFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/GoAwayFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/GoAwayFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/GoAwayFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/HeadersFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/HeadersFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/HeadersFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/HeadersFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/NoOpFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/NoOpFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/NoOpFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/NoOpFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/PingFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/PingFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/PingFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/PingFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/RstStreamFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/RstStreamFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/RstStreamFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/RstStreamFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SettingsFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SettingsFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SettingsFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SettingsFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynReplyFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynReplyFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynReplyFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynReplyFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynStreamFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynStreamFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynStreamFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/SynStreamFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/WindowUpdateFrame.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/WindowUpdateFrame.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/WindowUpdateFrame.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/frames/WindowUpdateFrame.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/ControlFrameGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/ControlFrameGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/ControlFrameGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/ControlFrameGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/CredentialGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/CredentialGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/CredentialGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/CredentialGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/DataFrameGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/DataFrameGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/DataFrameGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/DataFrameGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/Generator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/Generator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/Generator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/Generator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/GoAwayGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/GoAwayGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/GoAwayGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/GoAwayGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersBlockGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersBlockGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersBlockGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersBlockGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/HeadersGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/NoOpGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/NoOpGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/NoOpGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/NoOpGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/PingGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/PingGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/PingGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/PingGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/RstStreamGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/RstStreamGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/RstStreamGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/RstStreamGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SettingsGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SettingsGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SettingsGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SettingsGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynReplyGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynReplyGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynReplyGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynReplyGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynStreamGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynStreamGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynStreamGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/SynStreamGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/WindowUpdateGenerator.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/WindowUpdateGenerator.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/WindowUpdateGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/generator/WindowUpdateGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IdleListener.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IdleListener.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IdleListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IdleListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ISession.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ISession.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ISession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/ISession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IStream.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IStream.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/IStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/ControlFrameParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/CredentialBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/CredentialBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/CredentialBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/CredentialBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/DataFrameParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/DataFrameParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/DataFrameParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/DataFrameParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/GoAwayBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/GoAwayBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/GoAwayBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/GoAwayBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBlockParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBlockParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBlockParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBlockParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/HeadersBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/NoOpBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/NoOpBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/NoOpBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/NoOpBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/Parser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/Parser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/Parser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/Parser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/PingBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/PingBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/PingBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/PingBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/RstStreamBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/RstStreamBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/RstStreamBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/RstStreamBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SettingsBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SettingsBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SettingsBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SettingsBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynReplyBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynReplyBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynReplyBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynReplyBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynStreamBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynStreamBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynStreamBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/SynStreamBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/WindowUpdateBodyParser.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/WindowUpdateBodyParser.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/WindowUpdateBodyParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/parser/WindowUpdateBodyParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/PushSynInfo.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/PushSynInfo.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/PushSynInfo.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/PushSynInfo.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SessionException.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SessionException.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SessionException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SessionException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SPDYv3FlowControlStrategy.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SPDYv3FlowControlStrategy.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SPDYv3FlowControlStrategy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/SPDYv3FlowControlStrategy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardByteBufferPool.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardByteBufferPool.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardByteBufferPool.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardByteBufferPool.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardCompressionFactory.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardCompressionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardCompressionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardCompressionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardSession.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardSession.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardSession.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardSession.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StreamException.java jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StreamException.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StreamException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/StreamException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ClientUsageTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ClientUsageTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ClientUsageTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ClientUsageTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ServerUsageTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ServerUsageTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ServerUsageTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/api/ServerUsageTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/AsyncTimeoutTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/AsyncTimeoutTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/AsyncTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/AsyncTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/CredentialGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/CredentialGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/CredentialGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/CredentialGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/DataGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/DataGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/DataGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/DataGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/GoAwayGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/GoAwayGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/GoAwayGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/GoAwayGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/HeadersGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/HeadersGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/HeadersGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/HeadersGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/NoOpGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/NoOpGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/NoOpGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/NoOpGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/PingGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/PingGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/PingGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/PingGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/RstStreamGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/RstStreamGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/RstStreamGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/RstStreamGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SettingsGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SettingsGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SettingsGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SettingsGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynReplyGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynReplyGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynReplyGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynReplyGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynStreamGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynStreamGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynStreamGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/SynStreamGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/TestSPDYParserListener.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/TestSPDYParserListener.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/TestSPDYParserListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/TestSPDYParserListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/WindowUpdateGenerateParseTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/WindowUpdateGenerateParseTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/WindowUpdateGenerateParseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/frames/WindowUpdateGenerateParseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/LiveChromiumRequestParserTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/LiveChromiumRequestParserTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/LiveChromiumRequestParserTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/LiveChromiumRequestParserTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/ParseVersusCacheBenchmarkTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/ParseVersusCacheBenchmarkTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/ParseVersusCacheBenchmarkTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/ParseVersusCacheBenchmarkTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/parser/UnknownControlFrameTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardSessionTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardSessionTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardStreamTest.java jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardStreamTest.java --- jetty8-8.1.18/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardStreamTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-core/src/test/java/org/eclipse/jetty/spdy/StandardStreamTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/pom.xml jetty8-8.1.19/jetty-spdy/spdy-jetty/pom.xml --- jetty8-8.1.18/jetty-spdy/spdy-jetty/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.spdy spdy-parent - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 spdy-jetty diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/AsyncConnectionFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/AsyncConnectionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/AsyncConnectionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/AsyncConnectionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncConnection.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncConnection.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncEndPoint.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncEndPoint.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncEndPoint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/EmptyAsyncEndPoint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategyFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategyFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategyFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/FlowControlStrategyFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/ServerSPDYAsyncConnectionFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/ServerSPDYAsyncConnectionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/ServerSPDYAsyncConnectionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/ServerSPDYAsyncConnectionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYAsyncConnection.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYAsyncConnection.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYAsyncConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYAsyncConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYClient.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYClient.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYClient.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYClient.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYServerConnector.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYServerConnector.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYServerConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/main/java/org/eclipse/jetty/spdy/SPDYServerConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/AbstractTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/AbstractTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/AbstractTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/AbstractTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ClosedStreamTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ClosedStreamTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ClosedStreamTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ClosedStreamTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/FlowControlTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/FlowControlTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/FlowControlTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/FlowControlTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/GoAwayTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/GoAwayTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/GoAwayTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/GoAwayTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/HeadersTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/HeadersTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/HeadersTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/HeadersTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/IdleTimeoutTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/IdleTimeoutTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/IdleTimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/IdleTimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PingTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PingTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ProtocolViolationsTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ProtocolViolationsTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ProtocolViolationsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ProtocolViolationsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PushStreamTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PushStreamTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PushStreamTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/PushStreamTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ResetStreamTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ResetStreamTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ResetStreamTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/ResetStreamTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SettingsTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SettingsTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SettingsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SettingsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYClientFactoryTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYClientFactoryTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYClientFactoryTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYClientFactoryTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYServerConnectorTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYServerConnectorTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYServerConnectorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SPDYServerConnectorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLEngineLeakTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLEngineLeakTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLEngineLeakTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLEngineLeakTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLSynReplyTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLSynReplyTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLSynReplyTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SSLSynReplyTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynDataReplyDataLoadTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynDataReplyDataLoadTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynDataReplyDataLoadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynDataReplyDataLoadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynReplyTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynReplyTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynReplyTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/SynReplyTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/UnsupportedVersionTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/UnsupportedVersionTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/UnsupportedVersionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty/src/test/java/org/eclipse/jetty/spdy/UnsupportedVersionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/pom.xml jetty8-8.1.19/jetty-spdy/spdy-jetty-http/pom.xml --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.spdy spdy-parent - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 spdy-jetty-http diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYServerConnector.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYServerConnector.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYServerConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYServerConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYHeader.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYHeader.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYHeader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYHeader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYServerConnector.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYServerConnector.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYServerConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/HTTPSPDYServerConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/PushStrategy.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/PushStrategy.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/PushStrategy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/PushStrategy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategy.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategy.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategy.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategy.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPAsyncConnectionFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPAsyncConnectionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPAsyncConnectionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPAsyncConnectionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnectionFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnectionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnectionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnectionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/HTTPSPDYProxyConnector.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/HTTPSPDYProxyConnector.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/HTTPSPDYProxyConnector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/HTTPSPDYProxyConnector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngine.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngine.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngine.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngine.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngineSelector.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngineSelector.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngineSelector.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyEngineSelector.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPAsyncConnectionFactory.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPAsyncConnectionFactory.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPAsyncConnectionFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPAsyncConnectionFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYAsyncConnection.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYAsyncConnection.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYAsyncConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYAsyncConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/SPDYProxyEngine.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/SPDYProxyEngine.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/SPDYProxyEngine.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/proxy/SPDYProxyEngine.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/AbstractHTTPSPDYTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ConcurrentStreamsTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ConcurrentStreamsTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ConcurrentStreamsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ConcurrentStreamsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ProtocolNegotiationTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ProtocolNegotiationTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ProtocolNegotiationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ProtocolNegotiationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/PushStrategyBenchmarkTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/PushStrategyBenchmarkTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/PushStrategyBenchmarkTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/PushStrategyBenchmarkTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyUnitTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyUnitTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyUnitTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyUnitTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV2Test.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV2Test.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV2Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV2Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV3Test.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV3Test.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV3Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ReferrerPushStrategyV3Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv2Test.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv2Test.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv2Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv2Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv3Test.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv3Test.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv3Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYv3Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/SSLExternalServerTest.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/SSLExternalServerTest.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/SSLExternalServerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/http/SSLExternalServerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYv2Test.java jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYv2Test.java --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYv2Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http/src/test/java/org/eclipse/jetty/spdy/proxy/ProxyHTTPSPDYv2Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-spdy/spdy-jetty-http-webapp/pom.xml jetty8-8.1.19/jetty-spdy/spdy-jetty-http-webapp/pom.xml --- jetty8-8.1.18/jetty-spdy/spdy-jetty-http-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-spdy/spdy-jetty-http-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ org.eclipse.jetty.spdy spdy-parent - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 spdy-jetty-http-webapp diff -Nru jetty8-8.1.18/jetty-start/pom.xml jetty8-8.1.19/jetty-start/pom.xml --- jetty8-8.1.18/jetty-start/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-start diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Classpath.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Classpath.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Classpath.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Classpath.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/CommandLineBuilder.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/CommandLineBuilder.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/CommandLineBuilder.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/CommandLineBuilder.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Config.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Config.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Config.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Config.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/FilenameComparator.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/FilenameComparator.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/FilenameComparator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/FilenameComparator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/JarVersion.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/JarVersion.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/JarVersion.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/JarVersion.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Main.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Main.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Main.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Main.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Version.java jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Version.java --- jetty8-8.1.18/jetty-start/src/main/java/org/eclipse/jetty/start/Version.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/main/java/org/eclipse/jetty/start/Version.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/CommandLineBuilderTest.java jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/CommandLineBuilderTest.java --- jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/CommandLineBuilderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/CommandLineBuilderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/ConfigTest.java jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/ConfigTest.java --- jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/ConfigTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/ConfigTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/MainTest.java jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/MainTest.java --- jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/MainTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/MainTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/VersionTest.java jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/VersionTest.java --- jetty8-8.1.18/jetty-start/src/test/java/org/eclipse/jetty/start/VersionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-start/src/test/java/org/eclipse/jetty/start/VersionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/pom.xml jetty8-8.1.19/jetty-util/pom.xml --- jetty8-8.1.18/jetty-util/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-util diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertor.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertor.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONDateConvertor.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONDateConvertor.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONDateConvertor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONDateConvertor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONEnumConvertor.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONEnumConvertor.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONEnumConvertor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONEnumConvertor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSON.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSON.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSON.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSON.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONObjectConvertor.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONObjectConvertor.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONObjectConvertor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONObjectConvertor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactory.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactory.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertor.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertor.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ajax/JSONPojoConvertor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ArrayQueue.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ArrayQueue.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ArrayQueue.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ArrayQueue.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Atomics.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Atomics.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Atomics.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Atomics.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Attributes.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Attributes.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Attributes.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Attributes.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/AttributesMap.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/AttributesMap.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/AttributesMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/AttributesMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/B64Code.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/B64Code.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/B64Code.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/B64Code.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/BlockingArrayQueue.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/BlockingArrayQueue.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/BlockingArrayQueue.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/BlockingArrayQueue.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayISO8859Writer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayISO8859Writer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayISO8859Writer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayISO8859Writer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayOutputStream2.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayOutputStream2.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayOutputStream2.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ByteArrayOutputStream2.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/AbstractLifeCycle.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/AbstractLifeCycle.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/AbstractLifeCycle.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/AbstractLifeCycle.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/AggregateLifeCycle.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/AggregateLifeCycle.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/AggregateLifeCycle.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/AggregateLifeCycle.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Container.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Container.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Container.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Container.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Dumpable.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Dumpable.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/Dumpable.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/Dumpable.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileDestroyable.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileDestroyable.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileDestroyable.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileDestroyable.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileNoticeLifeCycleListener.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileNoticeLifeCycleListener.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileNoticeLifeCycleListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/FileNoticeLifeCycleListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/LifeCycle.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/LifeCycle.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/component/LifeCycle.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/component/LifeCycle.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ConcurrentHashSet.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ConcurrentHashSet.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ConcurrentHashSet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ConcurrentHashSet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/DateCache.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/DateCache.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/DateCache.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/DateCache.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/HostMap.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/HostMap.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/HostMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/HostMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IntrospectionUtil.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IntrospectionUtil.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IntrospectionUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IntrospectionUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IO.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IO.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IO.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IO.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IPAddressMap.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IPAddressMap.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/IPAddressMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/IPAddressMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/LazyList.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/LazyList.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/LazyList.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/LazyList.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -21,9 +21,11 @@ import java.io.File; import java.net.URL; import java.net.URLClassLoader; +import java.util.HashSet; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; +import java.util.Set; import org.eclipse.jetty.util.resource.Resource; @@ -95,7 +97,9 @@ ClassNotFoundException ex=null; Class c =null; ClassLoader loader=Thread.currentThread().getContextClassLoader(); - while (c==null && loader!=null ) + Set seen = new HashSet(); + + while (c==null && loader!=null && seen.add(loader)) { try { c=loader.loadClass(name); } catch (ClassNotFoundException e) {if(ex==null)ex=e;} @@ -103,14 +107,15 @@ } loader=loadClass==null?null:loadClass.getClassLoader(); - while (c==null && loader!=null ) + while (c==null && loader!=null && seen.add(loader)) { try { c=loader.loadClass(name); } catch (ClassNotFoundException e) {if(ex==null)ex=e;} loader=(c==null&&checkParents)?loader.getParent():null; } - if (c==null) + loader=Loader.class.getClassLoader(); + if (c==null && loader!=null && seen.add(loader)) { try { c=Class.forName(name); } catch (ClassNotFoundException e) {if(ex==null)ex=e;} @@ -130,7 +135,9 @@ MissingResourceException ex=null; ResourceBundle bundle =null; ClassLoader loader=Thread.currentThread().getContextClassLoader(); - while (bundle==null && loader!=null ) + Set seen = new HashSet(); + + while (bundle==null && loader!=null && seen.add(loader)) { try { bundle=ResourceBundle.getBundle(name, locale, loader); } catch (MissingResourceException e) {if(ex==null)ex=e;} @@ -138,14 +145,15 @@ } loader=loadClass==null?null:loadClass.getClassLoader(); - while (bundle==null && loader!=null ) + while (bundle==null && loader!=null && seen.add(loader)) { try { bundle=ResourceBundle.getBundle(name, locale, loader); } catch (MissingResourceException e) {if(ex==null)ex=e;} loader=(bundle==null&&checkParents)?loader.getParent():null; } - if (bundle==null) + loader = Loader.class.getClassLoader(); + if (bundle==null && loader!=null && seen.add(loader)) { try { bundle=ResourceBundle.getBundle(name, locale); } catch (MissingResourceException e) {if(ex==null)ex=e;} diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/AbstractLogger.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/AbstractLogger.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/AbstractLogger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/AbstractLogger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/JavaUtilLog.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/JavaUtilLog.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/JavaUtilLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/JavaUtilLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/JettyAwareLogger.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/JettyAwareLogger.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/JettyAwareLogger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/JettyAwareLogger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Logger.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/LoggerLog.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/LoggerLog.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/LoggerLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/LoggerLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Slf4jLog.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Slf4jLog.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/Slf4jLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/Slf4jLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiException.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiException.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiException.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiException.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiMap.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiMap.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartInputStream.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartInputStream.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartInputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartInputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -149,7 +149,12 @@ protected void createFile () throws IOException { + final boolean USER = true; + final boolean WORLD = false; + _file = File.createTempFile("MultiPart", "", MultiPartInputStream.this._tmpDir); + _file.setReadable(false,WORLD); // (reset) disable it for everyone first + _file.setReadable(true,USER); // enable for user only if (_deleteOnExit) _file.deleteOnExit(); FileOutputStream fos = new FileOutputStream(_file); @@ -513,7 +518,7 @@ line=(line==null?line:line.trim()); } - if (line == null) + if (line == null || line.length() == 0) throw new IOException("Missing initial multi part boundary"); // Read each part diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartOutputStream.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartOutputStream.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartOutputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartOutputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartWriter.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartWriter.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartWriter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartWriter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/PatternMatcher.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/PatternMatcher.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/PatternMatcher.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/PatternMatcher.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AbstractLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AbstractLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AbstractLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AbstractLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AppContextLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AppContextLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AppContextLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AppContextLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AWTLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AWTLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AWTLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/AWTLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DOMLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DOMLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DOMLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DOMLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DriverManagerLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DriverManagerLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DriverManagerLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/DriverManagerLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/GCThreadLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/GCThreadLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/GCThreadLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/GCThreadLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/Java2DLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/Java2DLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/Java2DLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/Java2DLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LDAPLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LDAPLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LDAPLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LDAPLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LoginConfigurationLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LoginConfigurationLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LoginConfigurationLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/LoginConfigurationLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/SecurityProviderLeakPreventer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/SecurityProviderLeakPreventer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/SecurityProviderLeakPreventer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/preventers/SecurityProviderLeakPreventer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/QuotedStringTokenizer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/QuotedStringTokenizer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/QuotedStringTokenizer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/QuotedStringTokenizer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ReadLineInputStream.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ReadLineInputStream.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ReadLineInputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ReadLineInputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/BadResource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/BadResource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/BadResource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/BadResource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/FileResource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/FileResource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/FileResource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/FileResource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarFileResource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarFileResource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarFileResource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarFileResource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarResource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarResource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarResource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/JarResource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceCollection.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceCollection.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceCollection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceCollection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceFactory.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceFactory.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/ResourceFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/Resource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/Resource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/Resource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/Resource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/URLResource.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/URLResource.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/resource/URLResource.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/resource/URLResource.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/RolloverFileOutputStream.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/RolloverFileOutputStream.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/RolloverFileOutputStream.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/RolloverFileOutputStream.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Scanner.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Scanner.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Scanner.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Scanner.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/B64Code.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/B64Code.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/B64Code.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/B64Code.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateUtils.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateUtils.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateUtils.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateUtils.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateValidator.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateValidator.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateValidator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateValidator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Constraint.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Constraint.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Constraint.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Constraint.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Credential.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Credential.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Credential.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Credential.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Password.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Password.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/security/Password.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/security/Password.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509ExtendedKeyManager.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509ExtendedKeyManager.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509ExtendedKeyManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509ExtendedKeyManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509KeyManager.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509KeyManager.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509KeyManager.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509KeyManager.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/CounterStatistic.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/CounterStatistic.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/CounterStatistic.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/CounterStatistic.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/SampleStatistic.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/SampleStatistic.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/SampleStatistic.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/statistic/SampleStatistic.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/StringMap.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/StringMap.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/StringMap.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/StringMap.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ExecutorThreadPool.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ExecutorThreadPool.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ExecutorThreadPool.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ExecutorThreadPool.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/QueuedThreadPool.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/QueuedThreadPool.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/QueuedThreadPool.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/QueuedThreadPool.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ShutdownThread.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ShutdownThread.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ShutdownThread.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ShutdownThread.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ThreadPool.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ThreadPool.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ThreadPool.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/ThreadPool.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/Timeout.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/Timeout.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/thread/Timeout.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/thread/Timeout.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/TypeUtil.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/TypeUtil.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/TypeUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/TypeUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/URIUtil.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/URIUtil.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/URIUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/URIUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/UrlEncoded.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/UrlEncoded.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/UrlEncoded.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/UrlEncoded.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -226,7 +226,7 @@ key = null; value=null; if (maxKeys>0 && map.size()>maxKeys) - throw new IllegalStateException("Form too many keys"); + throw new IllegalStateException(String.format("Form with too many keys [%d > %d]",map.size(),maxKeys)); break; case '=': if (key!=null) @@ -414,7 +414,7 @@ key = null; value=null; if (maxKeys>0 && map.size()>maxKeys) - throw new IllegalStateException("Form too many keys"); + throw new IllegalStateException(String.format("Form with too many keys [%d > %d]",map.size(),maxKeys)); break; case '=': @@ -515,7 +515,7 @@ key = null; value=null; if (maxKeys>0 && map.size()>maxKeys) - throw new IllegalStateException("Form too many keys"); + throw new IllegalStateException(String.format("Form with too many keys [%d > %d]",map.size(),maxKeys)); break; case '=': @@ -656,7 +656,7 @@ key = null; value=null; if (maxKeys>0 && map.size()>maxKeys) - throw new IllegalStateException("Form too many keys"); + throw new IllegalStateException(String.format("Form with too many keys [%d > %d]",map.size(),maxKeys)); break; case '=': if (key!=null) diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8Appendable.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8Appendable.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8Appendable.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8Appendable.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuffer.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuffer.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuffer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuffer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuilder.java jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuilder.java --- jetty8-8.1.18/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuilder.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/main/java/org/eclipse/jetty/util/Utf8StringBuilder.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertorTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertorTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONCollectionConvertorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactoryTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactoryTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactoryTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorFactoryTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONPojoConvertorTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ajax/JSONTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ArrayQueueTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ArrayQueueTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ArrayQueueTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ArrayQueueTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/B64CodeTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/B64CodeTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/B64CodeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/B64CodeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/BlockingArrayQueueTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/BlockingArrayQueueTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/BlockingArrayQueueTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/BlockingArrayQueueTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/component/AggregateLifeCycleTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/component/AggregateLifeCycleTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/component/AggregateLifeCycleTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/component/AggregateLifeCycleTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/component/LifeCycleListenerTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/component/LifeCycleListenerTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/component/LifeCycleListenerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/component/LifeCycleListenerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/DateCacheTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/DateCacheTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/DateCacheTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/DateCacheTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/IPAddressMapTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/IPAddressMapTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/IPAddressMapTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/IPAddressMapTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/LazyListTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/LazyListTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/LazyListTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/LazyListTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Blue.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Blue.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Blue.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Blue.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/CapturingJULHandler.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/CapturingJULHandler.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/CapturingJULHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/CapturingJULHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Green.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Green.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Green.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Green.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/JavaUtilLogTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/JavaUtilLogTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/JavaUtilLogTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/JavaUtilLogTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/LogTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/LogTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/LogTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/LogTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/NamedLogTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/NamedLogTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/NamedLogTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/NamedLogTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Red.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Red.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Red.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Red.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Slf4jHelper.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Slf4jHelper.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/Slf4jHelper.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/Slf4jHelper.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrCapture.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrCapture.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrCapture.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrCapture.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrLogTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrLogTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrLogTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/log/StdErrLogTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiExceptionTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiExceptionTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiExceptionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiExceptionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiMapTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiMapTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiMapTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiMapTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiPartInputStreamTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiPartInputStreamTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/MultiPartInputStreamTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/MultiPartInputStreamTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/QuotedStringTokenizerTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/QuotedStringTokenizerTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/QuotedStringTokenizerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/QuotedStringTokenizerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceCollectionTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceCollectionTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceCollectionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceCollectionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/resource/ResourceTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ScannerTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ScannerTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ScannerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ScannerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ssl/SslContextFactoryTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ssl/SslContextFactoryTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/ssl/SslContextFactoryTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/ssl/SslContextFactoryTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/statistic/SampleStatisticTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/statistic/SampleStatisticTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/statistic/SampleStatisticTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/statistic/SampleStatisticTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/StringMapTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/StringMapTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/StringMapTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/StringMapTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/StringUtilTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/StringUtilTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/StringUtilTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/StringUtilTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/TestIntrospectionUtil.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/TestIntrospectionUtil.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/TestIntrospectionUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/TestIntrospectionUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/thread/QueuedThreadPoolTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/thread/QueuedThreadPoolTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/thread/QueuedThreadPoolTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/thread/QueuedThreadPoolTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/thread/TimeoutTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/thread/TimeoutTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/thread/TimeoutTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/thread/TimeoutTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/TypeUtilTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/TypeUtilTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/TypeUtilTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/TypeUtilTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/URITest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/URITest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/URITest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/URITest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/URLEncodedTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/URLEncodedTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/URLEncodedTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/URLEncodedTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBufferTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBufferTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBufferTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBufferTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBuilderTest.java jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBuilderTest.java --- jetty8-8.1.18/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBuilderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-util/src/test/java/org/eclipse/jetty/util/Utf8StringBuilderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/pom.xml jetty8-8.1.19/jetty-webapp/pom.xml --- jetty8-8.1.18/jetty-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-webapp diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/AbstractConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/AbstractConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/AbstractConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/AbstractConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/ClasspathPattern.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/ClasspathPattern.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/ClasspathPattern.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/ClasspathPattern.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/CloneConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/CloneConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/CloneConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/CloneConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Configuration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Configuration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Configuration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Configuration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DefaultsDescriptor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DefaultsDescriptor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DefaultsDescriptor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DefaultsDescriptor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Descriptor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Descriptor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Descriptor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Descriptor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DescriptorProcessor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DescriptorProcessor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DescriptorProcessor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DescriptorProcessor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DiscoveredAnnotation.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DiscoveredAnnotation.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DiscoveredAnnotation.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/DiscoveredAnnotation.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentDescriptor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentDescriptor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentDescriptor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/FragmentDescriptor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/IterativeDescriptorProcessor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/IterativeDescriptorProcessor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/IterativeDescriptorProcessor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/IterativeDescriptorProcessor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JarScanner.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JarScanner.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JarScanner.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JarScanner.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JettyWebXmlConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JettyWebXmlConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JettyWebXmlConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/JettyWebXmlConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaDataComplete.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaDataComplete.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaDataComplete.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaDataComplete.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaData.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaData.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaData.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaData.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaInfConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaInfConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaInfConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/MetaInfConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Ordering.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Ordering.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Ordering.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Ordering.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Origin.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Origin.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Origin.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/Origin.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/OverrideDescriptor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/OverrideDescriptor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/OverrideDescriptor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/OverrideDescriptor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/StandardDescriptorProcessor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/StandardDescriptorProcessor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/StandardDescriptorProcessor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/StandardDescriptorProcessor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/TagLibConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/TagLibConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/TagLibConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/TagLibConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppClassLoader.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppClassLoader.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppClassLoader.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppClassLoader.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebDescriptor.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebDescriptor.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebDescriptor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebDescriptor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebInfConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebXmlConfiguration.java jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebXmlConfiguration.java --- jetty8-8.1.18/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebXmlConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebXmlConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/test/java/org/acme/webapp/ClassInJarA.java jetty8-8.1.19/jetty-webapp/src/test/java/org/acme/webapp/ClassInJarA.java --- jetty8-8.1.18/jetty-webapp/src/test/java/org/acme/webapp/ClassInJarA.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/test/java/org/acme/webapp/ClassInJarA.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/OrderingTest.java jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/OrderingTest.java --- jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/OrderingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/OrderingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppClassLoaderTest.java jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppClassLoaderTest.java --- jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppClassLoaderTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppClassLoaderTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppContextTest.java jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppContextTest.java --- jetty8-8.1.18/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppContextTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-webapp/src/test/java/org/eclipse/jetty/webapp/WebAppContextTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/pom.xml jetty8-8.1.19/jetty-websocket/pom.xml --- jetty8-8.1.18/jetty-websocket/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -3,7 +3,7 @@ jetty-project org.eclipse.jetty - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/AbstractExtension.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/AbstractExtension.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/AbstractExtension.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/AbstractExtension.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/DeflateFrameExtension.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/DeflateFrameExtension.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/DeflateFrameExtension.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/DeflateFrameExtension.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/Extension.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/Extension.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/Extension.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/Extension.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FixedMaskGen.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FixedMaskGen.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FixedMaskGen.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FixedMaskGen.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FragmentExtension.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FragmentExtension.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FragmentExtension.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FragmentExtension.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/IdentityExtension.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/IdentityExtension.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/IdentityExtension.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/IdentityExtension.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/MaskGen.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/MaskGen.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/MaskGen.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/MaskGen.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/RandomMaskGen.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/RandomMaskGen.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/RandomMaskGen.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/RandomMaskGen.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketBuffers.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketBuffers.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketBuffers.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketBuffers.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClientFactory.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClientFactory.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClientFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClientFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClient.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClient.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClient.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClient.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD00.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD00.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD00.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD00.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD06.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD06.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD06.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD06.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD08.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD08.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD08.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD08.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnection.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnection.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionRFC6455.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionRFC6455.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionRFC6455.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionRFC6455.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketFactory.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketFactory.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGenerator.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGenerator.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGenerator.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGenerator.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketHandler.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketHandler.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocket.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocket.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocket.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocket.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD00.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD00.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD00.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD00.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD06.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD06.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD06.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD06.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD08.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD08.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD08.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD08.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParser.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParser.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD00.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD00.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD00.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD00.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD06.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD06.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD06.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD06.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD08.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD08.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD08.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD08.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnection.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnection.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnection.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnection.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionRFC6455.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionRFC6455.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionRFC6455.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionRFC6455.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServlet.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServlet.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/ZeroMaskGen.java jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/ZeroMaskGen.java --- jetty8-8.1.18/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/ZeroMaskGen.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/main/java/org/eclipse/jetty/websocket/ZeroMaskGen.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/dummy/DummyServer.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/dummy/DummyServer.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/dummy/DummyServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/dummy/DummyServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoClientSocketExample.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoClientSocketExample.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoClientSocketExample.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoClientSocketExample.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoServerSocketExample.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoServerSocketExample.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoServerSocketExample.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/examples/EchoServerSocketExample.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/CaptureSocket.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/CaptureSocket.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/CaptureSocket.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/CaptureSocket.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/MessageSender.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/MessageSender.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/MessageSender.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/MessageSender.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/SafariD00.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/SafariD00.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/SafariD00.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/SafariD00.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/WebSocketCaptureServlet.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/WebSocketCaptureServlet.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/WebSocketCaptureServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/WebSocketCaptureServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/SafariWebsocketDraft0Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/SafariWebsocketDraft0Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/SafariWebsocketDraft0Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/SafariWebsocketDraft0Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestClient.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestClient.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestClient.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestClient.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestServer.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestServer.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TomcatServerQuirksTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TomcatServerQuirksTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TomcatServerQuirksTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TomcatServerQuirksTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketClientTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketClientTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketClientTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketClientTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketCommTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketCommTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketCommTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketCommTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadD08Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadD08Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadD08Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadD08Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadRFC6455Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadRFC6455Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadRFC6455Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadRFC6455Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD00Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD00Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD00Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD00Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD06Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD06Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD06Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD06Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD08Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD08Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD08Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD08Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageRFC6455Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageRFC6455Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageRFC6455Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageRFC6455Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMinVersionTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMinVersionTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMinVersionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMinVersionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketOverSSLTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketOverSSLTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketOverSSLTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketOverSSLTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD00Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD00Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD00Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD00Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD06Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD06Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD06Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD06Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD08Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD08Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD08Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD08Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455Test.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455Test.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455Test.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455Test.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketRedeployTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketRedeployTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketRedeployTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketRedeployTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketServletRFCTest.java jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketServletRFCTest.java --- jetty8-8.1.18/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketServletRFCTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketServletRFCTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/pom.xml jetty8-8.1.19/jetty-xml/pom.xml --- jetty8-8.1.18/jetty-xml/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 jetty-xml diff -Nru jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessorFactory.java jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessorFactory.java --- jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessorFactory.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessorFactory.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessor.java jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessor.java --- jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessor.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/ConfigurationProcessor.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java --- jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlParser.java jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlParser.java --- jetty8-8.1.18/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlParser.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlParser.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/ConstructorArgTestClass.java jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/ConstructorArgTestClass.java --- jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/ConstructorArgTestClass.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/ConstructorArgTestClass.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/TestConfiguration.java jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/TestConfiguration.java --- jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/TestConfiguration.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/TestConfiguration.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlConfigurationTest.java jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlConfigurationTest.java --- jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlConfigurationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlConfigurationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlParserTest.java jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlParserTest.java --- jetty8-8.1.18/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlParserTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlParserTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/NOTICE.txt jetty8-8.1.19/NOTICE.txt --- jetty8-8.1.18/NOTICE.txt 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/NOTICE.txt 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ ============================================================== Jetty Web Container - Copyright 1995-2015 Mort Bay Consulting Pty Ltd. + Copyright 1995-2016 Mort Bay Consulting Pty Ltd. ============================================================== The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd diff -Nru jetty8-8.1.18/pom.xml jetty8-8.1.19/pom.xml --- jetty8-8.1.18/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -6,7 +6,7 @@ 20 jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 Jetty :: Project http://www.eclipse.org/jetty pom @@ -22,7 +22,7 @@ scm:git:http://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git scm:git:ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree - jetty-8.1.18.v20150929 + jetty-8 install @@ -213,7 +213,7 @@ true true - ${project.inceptionYear}-2015 + ${project.inceptionYear}-2016 DOUBLESLASH_STYLE diff -Nru jetty8-8.1.18/test-continuation/pom.xml jetty8-8.1.19/test-continuation/pom.xml --- jetty8-8.1.18/test-continuation/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 test-continuation diff -Nru jetty8-8.1.18/test-continuation/src/main/java/org/eclipse/jetty/continuation/test/ContinuationBase.java jetty8-8.1.19/test-continuation/src/main/java/org/eclipse/jetty/continuation/test/ContinuationBase.java --- jetty8-8.1.18/test-continuation/src/main/java/org/eclipse/jetty/continuation/test/ContinuationBase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation/src/main/java/org/eclipse/jetty/continuation/test/ContinuationBase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation/src/test/java/org/eclipse/jetty/continuation/ContinuationTest.java jetty8-8.1.19/test-continuation/src/test/java/org/eclipse/jetty/continuation/ContinuationTest.java --- jetty8-8.1.18/test-continuation/src/test/java/org/eclipse/jetty/continuation/ContinuationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation/src/test/java/org/eclipse/jetty/continuation/ContinuationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java jetty8-8.1.19/test-continuation/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java --- jetty8-8.1.18/test-continuation/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/ContinuationBase.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/ContinuationBase.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/ContinuationBase.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/ContinuationBase.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/FauxContinuationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioFauxTest.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioFauxTest.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioFauxTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioFauxTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioTest.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioTest.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationBioTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioFauxTest.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioFauxTest.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioFauxTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioFauxTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioTest.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioTest.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/Jetty6ContinuationNioTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/TestProxyServer.java jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/TestProxyServer.java --- jetty8-8.1.18/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/TestProxyServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-continuation-jetty6/src/test/java/org/eclipse/jetty/continuation/TestProxyServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-nested/pom.xml jetty8-8.1.19/test-jetty-nested/pom.xml --- jetty8-8.1.18/test-jetty-nested/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-nested/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -4,7 +4,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 test-jetty-nested Jetty :: Nested Test diff -Nru jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/Dump.java jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/Dump.java --- jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/Dump.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/Dump.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedJettyServlet.java jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedJettyServlet.java --- jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedJettyServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/NestedJettyServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/TestServlet.java jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/TestServlet.java --- jetty8-8.1.18/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/TestServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-nested/src/main/java/org/eclipse/jetty/nested/TestServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-nested/src/test/java/org/eclipse/jetty/nested/NestedServer.java jetty8-8.1.19/test-jetty-nested/src/test/java/org/eclipse/jetty/nested/NestedServer.java --- jetty8-8.1.18/test-jetty-nested/src/test/java/org/eclipse/jetty/nested/NestedServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-nested/src/test/java/org/eclipse/jetty/nested/NestedServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-servlet/pom.xml jetty8-8.1.19/test-jetty-servlet/pom.xml --- jetty8-8.1.18/test-jetty-servlet/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 test-jetty-servlet diff -Nru jetty8-8.1.18/test-jetty-servlet/src/main/java/Jetty400Repro.java jetty8-8.1.19/test-jetty-servlet/src/main/java/Jetty400Repro.java --- jetty8-8.1.18/test-jetty-servlet/src/main/java/Jetty400Repro.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/src/main/java/Jetty400Repro.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/HttpTester.java jetty8-8.1.19/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/HttpTester.java --- jetty8-8.1.18/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/HttpTester.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/HttpTester.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/ServletTester.java jetty8-8.1.19/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/ServletTester.java --- jetty8-8.1.18/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/ServletTester.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/src/main/java/org/eclipse/jetty/testing/ServletTester.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/HttpTesterTest.java jetty8-8.1.19/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/HttpTesterTest.java --- jetty8-8.1.18/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/HttpTesterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/HttpTesterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/ServletTest.java jetty8-8.1.19/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/ServletTest.java --- jetty8-8.1.18/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/ServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-servlet/src/test/java/org/eclipse/jetty/testing/ServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/pom.xml jetty8-8.1.19/test-jetty-webapp/pom.xml --- jetty8-8.1.18/test-jetty-webapp/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -2,7 +2,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 test-jetty-webapp diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/CookieDump.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/CookieDump.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/CookieDump.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/CookieDump.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Counter.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Counter.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Counter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Counter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Date2Tag.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Date2Tag.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Date2Tag.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Date2Tag.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/DateTag.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/DateTag.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/DateTag.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/DateTag.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/DispatchServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/DispatchServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/DispatchServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/DispatchServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Dump.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Dump.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/Dump.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/Dump.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/HelloWorld.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/HelloWorld.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/HelloWorld.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/HelloWorld.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/LoginServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/LoginServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/LoginServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/LoginServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/RegTest.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/RegTest.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/RegTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/RegTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/RewriteServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/RewriteServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/RewriteServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/RewriteServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/SecureModeServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/SecureModeServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/SecureModeServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/SecureModeServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/SessionDump.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/SessionDump.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/SessionDump.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/SessionDump.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TagListener.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TagListener.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TagListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TagListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TestFilter.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TestFilter.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TestFilter.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TestFilter.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TestListener.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TestListener.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/TestListener.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/TestListener.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/WebSocketChatServlet.java jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/WebSocketChatServlet.java --- jetty8-8.1.18/test-jetty-webapp/src/main/java/com/acme/WebSocketChatServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/main/java/com/acme/WebSocketChatServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/test/java/org/eclipse/jetty/DispatchServletTest.java jetty8-8.1.19/test-jetty-webapp/src/test/java/org/eclipse/jetty/DispatchServletTest.java --- jetty8-8.1.18/test-jetty-webapp/src/test/java/org/eclipse/jetty/DispatchServletTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/test/java/org/eclipse/jetty/DispatchServletTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/test-jetty-webapp/src/test/java/org/eclipse/jetty/TestServer.java jetty8-8.1.19/test-jetty-webapp/src/test/java/org/eclipse/jetty/TestServer.java --- jetty8-8.1.18/test-jetty-webapp/src/test/java/org/eclipse/jetty/TestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/test-jetty-webapp/src/test/java/org/eclipse/jetty/TestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/pom.xml jetty8-8.1.19/tests/pom.xml --- jetty8-8.1.18/tests/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty jetty-project - 8.1.18.v20150929 + 8.1.19.v20160209 org.eclipse.jetty.tests tests-parent diff -Nru jetty8-8.1.18/tests/test-integration/pom.xml jetty8-8.1.19/tests/test-integration/pom.xml --- jetty8-8.1.18/tests/test-integration/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -20,7 +20,7 @@ org.eclipse.jetty.tests tests-parent - 8.1.18.v20150929 + 8.1.19.v20160209 4.0.0 test-integration diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/DefaultHandlerTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/DefaultHandlerTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/DefaultHandlerTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/DefaultHandlerTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/DigestPostTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/DigestPostTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/DigestPostTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/DigestPostTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/FakeJspServlet.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/FakeJspServlet.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/FakeJspServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/FakeJspServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithAliasesTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithAliasesTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithAliasesTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithAliasesTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithoutAliasesTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithoutAliasesTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithoutAliasesTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithoutAliasesTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JavaMonitorIntegrationTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JavaMonitorIntegrationTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JavaMonitorIntegrationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JavaMonitorIntegrationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JmxServiceTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JmxServiceTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JmxServiceTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JmxServiceTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/ProgramConfigTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/ProgramConfigTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/ProgramConfigTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/ProgramConfigTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/XmlConfigTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/XmlConfigTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/XmlConfigTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/XmlConfigTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BaseTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BaseTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BaseTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BaseTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpsTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpsTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpsTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpsTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpsTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpsTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/EchoHandler.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/EchoHandler.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/EchoHandler.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/EchoHandler.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/JettyDistro.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/JettyDistro.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/JettyDistro.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/JettyDistro.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTester.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTester.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTester.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTester.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTesterTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTesterTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTesterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTesterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTester.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTester.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTester.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTester.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTesterTest.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTesterTest.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTesterTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTesterTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocketImpl.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocketImpl.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocketImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocketImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocket.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocket.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocket.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocket.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpsSocketImpl.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpsSocketImpl.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpsSocketImpl.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpsSocketImpl.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpTesting.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpTesting.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpTesting.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpTesting.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/StringUtil.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/StringUtil.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/StringUtil.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/StringUtil.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/TestableJettyServer.java jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/TestableJettyServer.java --- jetty8-8.1.18/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/TestableJettyServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-integration/src/test/java/org/eclipse/jetty/test/support/TestableJettyServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-loginservice/pom.xml jetty8-8.1.19/tests/test-loginservice/pom.xml --- jetty8-8.1.18/tests/test-loginservice/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-loginservice/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests tests-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-loginservice Jetty Tests :: Login Service diff -Nru jetty8-8.1.18/tests/test-loginservice/src/test/java/org/eclipse/jetty/JdbcLoginServiceTest.java jetty8-8.1.19/tests/test-loginservice/src/test/java/org/eclipse/jetty/JdbcLoginServiceTest.java --- jetty8-8.1.18/tests/test-loginservice/src/test/java/org/eclipse/jetty/JdbcLoginServiceTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-loginservice/src/test/java/org/eclipse/jetty/JdbcLoginServiceTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/pom.xml jetty8-8.1.19/tests/test-sessions/pom.xml --- jetty8-8.1.18/tests/test-sessions/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests tests-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-sessions-parent Jetty Tests :: Sessions :: Parent diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/pom.xml jetty8-8.1.19/tests/test-sessions/test-hash-sessions/pom.xml --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests test-sessions-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-hash-sessions Jetty Tests :: Sessions :: Hash diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/HashTestServer.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/HashTestServer.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/HashTestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/HashTestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/IdleSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/IdleSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/IdleSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/IdleSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/LightLoadTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/LightLoadTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/LightLoadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/LightLoadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/RemoveSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/RemoveSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/RemoveSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/RemoveSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionCookieTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionInvalidateAndCreateTest.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionInvalidateAndCreateTest.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionInvalidateAndCreateTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionInvalidateAndCreateTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSharedSaving.java jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSharedSaving.java --- jetty8-8.1.18/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSharedSaving.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-hash-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSharedSaving.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/pom.xml jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/pom.xml --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests test-sessions-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-jdbc-sessions Jetty Tests :: Sessions :: JDBC diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ClientCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ImmortalSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/InvalidationSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/InvalidationSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/InvalidationSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/InvalidationSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/JdbcTestServer.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/JdbcTestServer.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/JdbcTestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/JdbcTestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LastAccessTimeTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LastAccessTimeTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LastAccessTimeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LastAccessTimeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LocalSessionScavengingTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LocalSessionScavengingTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LocalSessionScavengingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/LocalSessionScavengingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/MaxInactiveMigrationTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/MaxInactiveMigrationTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/MaxInactiveMigrationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/MaxInactiveMigrationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/NewSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/OrphanedSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReentrantRequestSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReloadedSessionMissingClassTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReloadedSessionMissingClassTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReloadedSessionMissingClassTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ReloadedSessionMissingClassTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SaveIntervalTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SaveIntervalTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SaveIntervalTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SaveIntervalTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/ServerCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionExpiryTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionExpiryTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionExpiryTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionExpiryTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionMigrationTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionMigrationTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionMigrationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionMigrationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSavingTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSavingTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSavingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/SessionValueSavingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/WebAppObjectInSessionTest.java jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/WebAppObjectInSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/WebAppObjectInSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-jdbc-sessions/src/test/java/org/eclipse/jetty/server/session/WebAppObjectInSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/pom.xml jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/pom.xml --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests test-sessions-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-mongodb-sessions Jetty Tests :: Sessions :: Mongo diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ClientCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ClientCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ClientCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ClientCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LastAccessTimeTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LastAccessTimeTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LastAccessTimeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LastAccessTimeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LightLoadTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LightLoadTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LightLoadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LightLoadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTestServer.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTestServer.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/NewSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/NewSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/NewSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/NewSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/OrphanedSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/OrphanedSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/OrphanedSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/OrphanedSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeInvalidSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeInvalidSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeInvalidSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeInvalidSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeValidSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeValidSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeValidSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/PurgeValidSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ReentrantRequestSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ReentrantRequestSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ReentrantRequestSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ReentrantRequestSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/RemoveSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/RemoveSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/RemoveSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/RemoveSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ServerCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ServerCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ServerCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/ServerCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionDump.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionDump.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionDump.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionDump.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionSavingValueTest.java jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionSavingValueTest.java --- jetty8-8.1.18/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionSavingValueTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionSavingValueTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/pom.xml jetty8-8.1.19/tests/test-sessions/test-sessions-common/pom.xml --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests test-sessions-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-sessions-common Jetty Tests :: Sessions :: Common diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractClientCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractClientCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractClientCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractClientCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractImmortalSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractImmortalSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractImmortalSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractImmortalSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractInvalidationSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractInvalidationSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractInvalidationSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractInvalidationSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLastAccessTimeTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLastAccessTimeTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLastAccessTimeTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLastAccessTimeTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLightLoadTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLightLoadTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLightLoadTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLightLoadTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLocalSessionScavengingTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLocalSessionScavengingTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLocalSessionScavengingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractLocalSessionScavengingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractNewSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractNewSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractNewSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractNewSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractOrphanedSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractOrphanedSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractOrphanedSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractOrphanedSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractReentrantRequestSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractReentrantRequestSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractReentrantRequestSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractReentrantRequestSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractRemoveSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractRemoveSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractRemoveSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractRemoveSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractServerCrossContextSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractServerCrossContextSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractServerCrossContextSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractServerCrossContextSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionCookieTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionCookieTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionCookieTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionCookieTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionExpiryTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionExpiryTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionExpiryTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionExpiryTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionInvalidateAndCreateTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionInvalidateAndCreateTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionInvalidateAndCreateTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionInvalidateAndCreateTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionMigrationTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionMigrationTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionMigrationTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionMigrationTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionValueSavingTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionValueSavingTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionValueSavingTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractSessionValueSavingTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractTestServer.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractTestServer.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractTestServer.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractTestServer.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractWebAppObjectInSessionTest.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractWebAppObjectInSessionTest.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractWebAppObjectInSessionTest.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractWebAppObjectInSessionTest.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/WebAppObjectInSessionServlet.java jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/WebAppObjectInSessionServlet.java --- jetty8-8.1.18/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/WebAppObjectInSessionServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/WebAppObjectInSessionServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/tests/test-webapps/pom.xml jetty8-8.1.19/tests/test-webapps/pom.xml --- jetty8-8.1.18/tests/test-webapps/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-webapps/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests tests-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-webapps-parent Jetty Tests :: WebApps :: Parent diff -Nru jetty8-8.1.18/tests/test-webapps/test-webapp-rfc2616/pom.xml jetty8-8.1.19/tests/test-webapps/test-webapp-rfc2616/pom.xml --- jetty8-8.1.18/tests/test-webapps/test-webapp-rfc2616/pom.xml 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-webapps/test-webapp-rfc2616/pom.xml 2016-02-09 17:13:30.000000000 +0000 @@ -21,7 +21,7 @@ org.eclipse.jetty.tests test-webapps-parent - 8.1.18.v20150929 + 8.1.19.v20160209 test-webapp-rfc2616 Jetty Tests :: WebApp :: RFC2616 diff -Nru jetty8-8.1.18/tests/test-webapps/test-webapp-rfc2616/src/main/java/org/eclipse/jetty/tests/webapp/HttpMethodsServlet.java jetty8-8.1.19/tests/test-webapps/test-webapp-rfc2616/src/main/java/org/eclipse/jetty/tests/webapp/HttpMethodsServlet.java --- jetty8-8.1.18/tests/test-webapps/test-webapp-rfc2616/src/main/java/org/eclipse/jetty/tests/webapp/HttpMethodsServlet.java 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/tests/test-webapps/test-webapp-rfc2616/src/main/java/org/eclipse/jetty/tests/webapp/HttpMethodsServlet.java 2016-02-09 17:13:30.000000000 +0000 @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 diff -Nru jetty8-8.1.18/VERSION.txt jetty8-8.1.19/VERSION.txt --- jetty8-8.1.18/VERSION.txt 2015-09-29 17:46:35.000000000 +0000 +++ jetty8-8.1.19/VERSION.txt 2016-02-09 17:13:30.000000000 +0000 @@ -1,3 +1,24 @@ +jetty-8.1.19.v20160209 - 09 February 2016 + + 426490 HttpServletResponse.setBufferSize(0) results in tight loop (100% cpu + hog) + + 480896 Response.sendError should honor Server.setSendServerVersion() + + 480897 Proxy use need Response.sendError(-1) to harshly close the endpoint + + 480898 Introduce FilterMapping.getDispatcherTypes() method + + 480903 Loader should avoid looking in same Classloader twice for + resource/class + + 482039 Create shaded jar for isolated jetty-client use + + 482041 Add ServletHandler.newCachedChain() to ease customization + + 482046 Allow finer control of ServletHandler logging of bad requests + + 482055 Increase visibility of ServletHandler.notFound() to public + + 482056 Compact path before using it in getRequestDispatcher() + + 482057 MultiPartInputStream temp file permissions should be limited to user + + 482058 MultiPartInputStream test initial part boundary incorrectly allows + empty string + + 482172 Report form key size count in UrlEncoded exceptions + + 482173 Track original Query string in Rewrite RuleContainer too + + 483422 Empty chunked body in 304 Response + + 486167 ServletInputStream.available() broken for pipelined requests. + jetty-8.1.18.v20150929 - 29 September 2015 + 467434 NPE in SslContextFactory + 475851 AbstractGenerator.setResponse can produce an invalid Response header