r9602 - helma-ng/trunk/modules/helma
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090410121842.8604D3D0D6@mia> |
Author: hannes
Date: 2009-04-10 14:18:42 +0200 (Fri, 10 Apr 2009)
New Revision: 9602
Modified:
helma-ng/trunk/modules/helma/webapp.js
Log:
Keep supporting deprectated handleRequest() function
Details at http://dev.helma.org/trac/helma/changeset/9602
Modified: helma-ng/trunk/modules/helma/webapp.js
===================================================================
--- helma-ng/trunk/modules/helma/webapp.js 2009-04-10 12:10:56 UTC (rev 9601)
+++ helma-ng/trunk/modules/helma/webapp.js 2009-04-10 12:18:42 UTC (rev 9602)
@@ -19,6 +19,11 @@
function handleJackRequest(env) {}
+// support old name
+function handleRequest(req, res) {
+ return handleServletRequest(req, res);
+}
+
/**
* Handler function called by the Helma servlet.
*