hns
e2dad09d4c
* Update to today's CVS snapshot, including support for const keyword
...
and get/set in object initializers.
2007-04-04 22:55:25 +00:00
hns
83add89edb
* Update with patches from http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
...
including patch to allow access to public java methods in non-public classes.
2007-03-29 09:26:23 +00:00
hns
4575142c60
* Update to new Rhino CVS snapshot with the patches from
...
http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
including fixes for rhino bugs 359358 and 359359
2007-03-28 11:48:03 +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
b233ad0d4d
* Updated snapshot with patch for rhino bug 375081
...
https://bugzilla.mozilla.org/show_bug.cgi?id=375081
2007-03-23 14:05:45 +00:00
hns
18f79fd12a
* Update to new Rhino CVS snapshot with the patches from
...
http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
including Rhino bug https://bugzilla.mozilla.org/show_bug.cgi?id=373897
2007-03-15 17:22:59 +00:00
hns
4eb70e7b2e
* Scale back to minimal apache-dom.jar that only contains org.apache.html.dom.HTMLBuilder class,
...
allowing Helma to compile, but throwing an exception when getHtmlDocument is invoked. This is
the only way we can avoid potential conflicts with different Xerces versions in the classpath.
2007-02-21 14:32:34 +00:00
hns
0667f13290
* Adding tagsoup.jar version 1.0.4 for use with getHtmlDocument().
2007-02-21 13:47:38 +00:00
hns
0f7cd80500
* Update to new Rhino snapshot with patches from
...
http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
2007-02-09 16:02:19 +00:00
hns
b1a958a394
* Upgrade to Jetty 4.2.27.
2007-02-07 11:04:16 +00:00
hns
2041c54dfe
* Remove crimson.jar at last, it isn't needed for JDK 1.4 and later.
2007-02-07 09:46:33 +00:00
hns
4f7765259a
* Update with patches from http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
...
including new patch https://bugzilla.mozilla.org/show_bug.cgi?id=360964#c7
2006-12-14 14:20:46 +00:00
hns
f3ce79f6c4
* Update with patches from http://dev.helma.org/wiki/Rhino+Bugs+%26+Patches/
...
including https://bugzilla.mozilla.org/show_bug.cgi?id=363058
2006-12-07 12:10:14 +00:00
hns
5d5315f623
* Commit CVS snapshot from 2006-11-29 with added patch for chaining in
...
ScriptableObject slot hashtable.
http://dev.helma.org/Wiki/Rhino+Bugs+%26+Patches/
2006-11-29 09:32:51 +00:00
hns
4e4cae0534
* Commit CVS snapshot from 2006-11-20 with added patch for Parser.parseTokens():
...
http://dev.helma.org/Wiki/Rhino+Bugs+%26+Patches/
2006-11-20 10:45:48 +00:00
hns
192f0b1df6
Checked apache-dom back in as it obviously is still needed.
...
Original log message was:
Apache DOM classes necessary for using and building
getHtmlDocument() functionality. Extracted from Xerces-J 2.0.1
2006-11-20 09:17:39 +00:00
hns
bc8653a873
* Work on DocFunction to make it work with Rhino 1.6.
...
* Make DocFunction not a RuntimeException, and throw it only where needed.
* Add TokenStreamInjector class to rhino to make TokenStream publicly available
* Add StringUtils.splitLines()
2006-11-15 15:48:46 +00:00
hns
578ecb148b
* Removing Apache DOM implementation, not needed anymore with modern JDKs.
2006-11-15 15:41:25 +00:00
hns
377752ae02
* Update to Rhino CVS snapshot from 2006/11/12 including the patches
...
from http://dev.helma.org/Wiki/Rhino+Bugs+%26+Patches/ :
- Rethrown exceptions rendered as [object Error]
- Provide protected callback methods in Rhino debugger SwingGui
- Bug in tail call optimization that cripples Rhino debugger
2006-11-13 16:24:22 +00:00
hns
ac544fe0dd
* Update to Rhino CVS snapshot from 2006/11/12 including the patches
...
from http://dev.helma.org/Wiki/Rhino+Bugs+%26+Patches/
2006-11-13 09:46:28 +00:00
hns
59d38d2ea8
* Update to Rhino CVS snapshot from 2006-08-21 to fix JavaBean property bug in 1.6R3
...
(see <https://bugzilla.mozilla.org/show_bug.cgi?id=343976#c4 >)
2006-08-21 10:19:39 +00:00
hns
e5033685db
* Update Rhino to 1.6R3.
...
* Remove old Rhino 1.5 classes, make Helma debugger subclass Rhino 1.6 classes
(not fully functional yet, needs patches to Rhino debugger).
* Make helma.doc.DocFunction compile with Rhino 1.6 by introducing intermediary
DockenStream class that proxies TokenStream using java reflection.
2006-08-18 20:09:37 +00:00
hns
e85a87f8d2
* Update to jakarta commons-fileupload 1.1.1.
2006-06-21 08:55:03 +00:00
hns
ddb6119b4d
* Update to jakarta commons-io 1.2.
2006-06-21 08:54:44 +00:00
hns
9eb4285880
* Update to Javamail 1.4.
2006-06-07 12:44:17 +00:00
hns
5910237039
* Update to Java Activation Framework 1.1.
2006-06-07 12:43:25 +00:00
hns
d1279f6d41
* Rhino 1.5R5 with patch for bug 309957
...
https://bugzilla.mozilla.org/show_bug.cgi?id=309957
2006-02-03 12:11:18 +00:00
hns
bea5a4a0d0
* Updating commons-fileupload to release 1.1
...
* Adding commons-io which is needed bz commons-fileupload 1.1
2006-01-30 16:12:14 +00:00
hns
e758330257
* Upgrading to Apache XML-RPC 2.0, with minor patch to throw
...
an exception when encountering an unknown element name.
2005-10-18 15:34:17 +00:00
hns
d0762a608c
* Adding jakarta commons-codec 1.3 (from xml-rpc 2.0)
2005-10-18 15:33:18 +00:00
hns
904acb7b17
Adding Jakarta Commons FileUpload 1.0
2005-07-29 11:31:03 +00:00
hns
8e96cfb709
Remove ominous apache-michi.jar from jar contents
2005-04-12 09:53:27 +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
8459618f36
Remove commons-codec.jar since we're back to the JDK URL encoding/decoding.
2004-09-15 12:15:28 +00:00
hns
e3eed21f50
Adding Jakarta Commons Codec 1.3 jar
2004-09-06 13:24:56 +00:00
hns
cf1b70d48a
Update to Rhino 1.5R5 final
2004-04-01 15:02:35 +00:00
hns
1e80a31348
Update to Jetty 4.2.19 (fixes DOS attack problem)
2004-04-01 15:02:15 +00:00
hns
4d5e555051
Upgrade to official Rhino 1.5R5 release candidate 1.
2004-03-11 11:36:15 +00:00
hns
5f327ae473
Upgrade to servlet jar from Jetty 4.2.18
2004-03-11 11:33:26 +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
a68eb60c94
Update to official 1.5R5pre snapshot from 2004/02/17.
2004-02-18 14:41:02 +00:00
hns
b64d52a118
Updating to current CVS snapshot to fix bug #233274
...
http://bugzilla.mozilla.org/show_bug.cgi?id=233274
2004-02-11 16:45:36 +00:00
hns
82c0524e00
Update to Jetty 4.2.17
2004-02-10 23:01:15 +00:00
hns
b379b9050e
Updating to new CVS snapshot which fixes bug 245:
...
http://www.helma.org/bugs/show_bug.cgi?id=245
2004-01-29 17:54:24 +00:00
hns
529a6e7e8c
Updated to current CVS snapshot
2004-01-22 16:01:49 +00:00
hns
ebb39d0d9e
Updating to Rhino snapshot from 2004/01/15.
2004-01-16 14:51:57 +00:00
hns
224085c159
Upgrade to Rhino snapshot from 2003/12/01
2003-12-02 15:18:28 +00:00
hns
8da0efb7c0
Adding Jakarta Commons Logging 1.0.3 jar
2003-11-28 18:04:09 +00:00