bloritsch 01/05/31 08:31:35
Modified: src/org/apache/cocoon/environment/http HttpEnvironment.java
Log:
fix for hiding the class "context" variable.
Revision Changes Path
1.3 +3 -3
xml-cocoon2/src/org/apache/cocoon/environment/http/HttpEnvironment.java
Index: HttpEnvironment.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/org/apache/cocoon/environment/http/HttpEnvironment.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HttpEnvironment.java 2001/05/25 16:01:47 1.2
+++ HttpEnvironment.java 2001/05/31 15:31:29 1.3
@@ -36,7 +36,7 @@
private HttpResponse response = null;
/** The HttpContext */
- private HttpContext context = null;
+ private HttpContext webcontext = null;
/** The OutputStream */
private OutputStream outputStream = null;
@@ -56,11 +56,11 @@
this.request = new HttpRequest (req, this);
this.response = new HttpResponse (res);
- this.context = context;
+ this.webcontext = context;
this.outputStream = response.getOutputStream();
this.objectModel.put(Constants.REQUEST_OBJECT, this.request);
this.objectModel.put(Constants.RESPONSE_OBJECT, this.response);
- this.objectModel.put(Constants.CONTEXT_OBJECT, this.context);
+ this.objectModel.put(Constants.CONTEXT_OBJECT, this.webcontext);
// This is a hack for the Php Generator
this.objectModel.put(HTTP_REQUEST_OBJECT, req);
this.objectModel.put(HTTP_RESPONSE_OBJECT, res);
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]