ovidiu 01/12/21 10:50:13
Modified: scratchpad/schecoon/src/org/apache/cocoon/scheme/servlet
REPLGenericServlet.java
Log:
Made the context name a static public.
Revision Changes Path
1.4 +2 -2 xml-cocoon2/scratchpad/schecoon/src/org/apache/cocoon/scheme/servlet/REPLGenericServlet.java
Index: REPLGenericServlet.java
===================================================================
RCS file: /home/cvs/xml-cocoon2/scratchpad/schecoon/src/org/apache/cocoon/scheme/servlet/REPLGenericServlet.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- REPLGenericServlet.java 2001/12/17 07:02:37 1.3
+++ REPLGenericServlet.java 2001/12/21 18:50:13 1.4
@@ -39,7 +39,7 @@
*/
public class REPLGenericServlet extends HttpServlet
{
- static final String appCtxAttrName = "sisc scheme interpreter context";
+ public static final String appCtxAttrName = "sisc scheme interpreter context";
protected ServletContext servletContext;
protected String initExpression;
protected String destroyExpression;
@@ -88,7 +88,7 @@
}
else {
interp = getInterpreter();
- }
+ }
}
initExpression = config.getInitParameter("init-expression");
----------------------------------------------------------------------
In case of troubles, e-mail: webmaster@xml.apache.org
To unsubscribe, e-mail: cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org
|