Commit graph

12 commits

Author SHA1 Message Date
Robert Gaggl
390231e8dd updated to jetty 9.4.3.v20170317 2017-03-27 14:17:46 +02:00
hns
5a95d1730a Update jetty to version 6.1.22 2009-11-27 15:17:33 +00:00
hns
ed6db227cc Merge branch jetty6 back into trunk. 2009-06-17 12:41:22 +00:00
hns
a961a2d6cb * Update lib/jetty.jar to Jetty 5.1.14 and lib/servlet.jar to Servlet API 2.4.
* Remove LongSink code from helma.main.Server.
Fixes bug 550 http://helma.org/bugs/show_bug.cgi?id=550
2007-09-20 14:55:00 +00:00
hns
bb03265ec0 * Compiled Jetty 4.2.27 with the following patch for AJP13 request paths:
diff -Nur jetty-4.2.27/src/org/mortbay/http/ajp/AJP13Connection.java jetty-4.2.27-patched/src/org/mortbay/http/ajp/AJP13Connection.java
--- jetty-4.2.27/src/org/mortbay/http/ajp/AJP13Connection.java  2006-11-23 11:44:50.000000000 +0100
+++ jetty-4.2.27-patched/src/org/mortbay/http/ajp/AJP13Connection.java  2007-03-28 13:34:52.000000000 +0200
@@ -194,12 +194,9 @@
                         Code.warning(packet.toString());
                     }

-                    String path=packet.getString();
-                    int sc=path.lastIndexOf(";");
-                    if (sc<0)
-                        request.setPath(URI.encodePath(path));
-                    else
-                        request.setPath(URI.encodePath(path.substring(0,sc))+path.substring(sc));
+                    // fix request path encoding issue, see
+                    // http://grazia.helma.at/pipermail/helma-user/2007-March/006911.html
+                    request.setPath(packet.getString());

                     _remoteAddr=packet.getString();
                     _remoteHost=packet.getString();
2007-03-28 11:45:41 +00:00
hns
b1a958a394 * Upgrade to Jetty 4.2.27. 2007-02-07 11:04:16 +00:00
hns
0620912aa2 Update to Jetty 4.2.22 2004-12-07 13:12:48 +00:00
hns
5f327ae473 Upgrade to servlet jar from Jetty 4.2.18 2004-03-11 11:33:26 +00:00
hns
82c0524e00 Update to Jetty 4.2.17 2004-02-10 23:01:15 +00:00
hns
2c44477ede Update to Jetty 4.2.14 2003-11-06 14:30:38 +00:00
hns
5123d254d4 Update to Servlet 2.3 API 2002-11-14 16:48:21 +00:00
hns
2fc9706c87 Added Servlet 2.2 API 2002-07-24 18:30:58 +00:00