greenrd 00/12/08 03:50:47
Modified: src/org/apache/cocoon Engine.java
Log:
commented out contentlength, will fix later
Revision Changes Path
1.43 +4 -2 xml-cocoon/src/org/apache/cocoon/Engine.java
Index: Engine.java
===================================================================
RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/Engine.java,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- Engine.java 2000/12/07 00:07:26 1.42
+++ Engine.java 2000/12/08 11:50:45 1.43
@@ -1,4 +1,4 @@
-/*-- $Id: Engine.java,v 1.42 2000/12/07 00:07:26 balld Exp $ --
+/*-- $Id: Engine.java,v 1.43 2000/12/08 11:50:45 greenrd Exp $ --
============================================================================
The Apache Software License, Version 1.1
@@ -77,7 +77,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Robin Green</a>
- * @version $Revision: 1.42 $ $Date: 2000/12/07 00:07:26 $
+ * @version $Revision: 1.43 $ $Date: 2000/12/08 11:50:45 $
*/
public class Engine implements Defaults {
@@ -439,6 +439,7 @@
}
}
+ /* will fix later
if (!VERBOSE && page.isText()) {
if (encoding == null) {
response.setContentLength(page.getContent().getBytes().length);
@@ -446,6 +447,7 @@
response.setContentLength(page.getContent().getBytes(encoding).length);
}
}
+ */
// get the output writer
PrintWriter out = response.getWriter();