cziegeler 2003/05/07 13:50:05
Modified: . status.xml src/blocks/jsp/java/org/apache/cocoon/components/jsp JSPEngineImpl.java Log: Fixing bug 14564 Revision Changes Path 1.24 +6 -0 cocoon-2.1/status.xml Index: status.xml =================================================================== RCS file: /home/cvs/cocoon-2.1/status.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- status.xml 7 May 2003 20:35:43 -0000 1.23 +++ status.xml 7 May 2003 20:50:05 -0000 1.24 @@ -191,6 +191,12 @@ <changes> <release version="@version@" date="@date@"> + <action dev="CZ" type="fix" fixes-bug="14564"> + Fixing NPE in JspEngineImpl. + </action> + <action dev="CZ" type="fix" fixes-bug="14117"> + Obtain handler and application name from paramters for internal requests if handler could not be resolved from the request object . + </action> <action dev="CZ" type="fix" fixes-bug="17612"> Delaying getting of the output stream from the http response until it is really needed. </action> 1.2 +2 -2 cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/components/jsp/JSPEngineImpl.java Index: JSPEngineImpl.java =================================================================== RCS file: /home/cvs/cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/components/jsp/JSPEngineImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- JSPEngineImpl.java 9 Mar 2003 00:04:13 -0000 1.1 +++ JSPEngineImpl.java 7 May 2003 20:50:05 -0000 1.2 @@ -141,7 +141,7 @@ public Enumeration getInitParameterNames() { return c.getInitParameterNames(); } public ServletContext getServletContext() { return c; } - public String getInitParameter(String name) { return null; } + public String getInitParameter(String name) { return c.getInitParameter(name); } } /**