hns
|
5a95d1730a
|
Update jetty to version 6.1.22
|
2009-11-27 15:17:33 +00:00 |
|
hns
|
6d0427ff55
|
Update jetty to 6.1.18 release.
|
2009-06-17 14:57:19 +00:00 |
|
hns
|
ed6db227cc
|
Merge branch jetty6 back into trunk.
|
2009-06-17 12:41:22 +00:00 |
|
hns
|
9395ebcd06
|
* Update lib/jetty.jar to Jetty 5.1.14 and lib/servlet.jar with the following patch for AJP13 request paths:
--- jetty-5.1.14/src/org/mortbay/http/ajp/AJP13Connection.java 2007-03-05 01:15:05.000000000 +0100
+++ jetty-5.1.14-patched/src/org/mortbay/http/ajp/AJP13Connection.java 2007-09-20 17:28:17.000000000 +0200
@@ -208,12 +208,9 @@
log.warn(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-09-20 15:33:41 +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
|
4220bf13f1
|
Use JDK 1.2 compatible version of Jetty 4.2.22 (extra/lib/org.mortbay.jetty-jdk1.2.jar)
|
2005-03-09 13:53:40 +00:00 |
|
hns
|
0620912aa2
|
Update to Jetty 4.2.22
|
2004-12-07 13:12:48 +00:00 |
|
hns
|
1e80a31348
|
Update to Jetty 4.2.19 (fixes DOS attack problem)
|
2004-04-01 15:02:15 +00:00 |
|
hns
|
fd7b12c906
|
Upgrade to Jetty 4.2.18 (JDK 1.2 compatible).
Fixes bug with Java 1.3 java.util.Calendar in Jetty 4.2.17
|
2004-03-11 11:33:04 +00:00 |
|
hns
|
82ed2fccd5
|
JDK 1.2 compatible jar from Jetty 4.2.17
|
2004-02-19 09:55:43 +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
|
3d7af041bd
|
Moved back to 4.1 line. Update to org.mortbay.jetty-jdk1.2.jar from Jetty 4.1.4.
|
2002-12-05 14:35:35 +00:00 |
|
hns
|
91101092f4
|
Updated to org.mortbay.jetty-jdk1.2.jar from the Jetty 4.2.2 distribution.
|
2002-11-28 15:34:17 +00:00 |
|
hns
|
6945dc3774
|
Updated to org.mortbay.jetty-jdk1.2.jar from the Jetty 4.1.3 distribution.
|
2002-11-14 16:43:13 +00:00 |
|
hns
|
930d50d427
|
Updated to Jetty 4.1.1
|
2002-10-01 19:51:08 +00:00 |
|
hns
|
93685a87af
|
Updated to Jetty 4.1.0RC6, which adds support for AJP1.3 (mod_jk)
|
2002-09-20 14:11:09 +00:00 |
|
hns
|
e17c0367e8
|
Added Jetty 3.1.8 ad new embedded web server
|
2002-07-24 18:30:10 +00:00 |
|