Return-Path: Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 11044 invoked by uid 500); 23 Feb 2000 00:48:43 -0000 Delivered-To: apmail-xml-cocoon-cvs@apache.org Received: (qmail 11040 invoked by uid 1010); 23 Feb 2000 00:48:43 -0000 Date: 23 Feb 2000 00:48:43 -0000 Message-ID: <20000223004843.11039.qmail@locus.apache.org> From: stefano@locus.apache.org To: xml-cocoon-cvs@apache.org Subject: cvs commit: xml-cocoon/src/org/apache/cocoon/processor/xsp xsp-java.xsl stefano 00/02/22 16:48:42 Modified: src/org/apache/cocoon/processor/xsp xsp-java.xsl Log: fixed session problem pointed out by Mike Revision Changes Path 1.10 +7 -7 xml-cocoon/src/org/apache/cocoon/processor/xsp/xsp-java.xsl Index: xsp-java.xsl =================================================================== RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/xsp-java.xsl,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- xsp-java.xsl 2000/02/13 18:29:35 1.9 +++ xsp-java.xsl 2000/02/23 00:48:42 1.10 @@ -53,8 +53,8 @@ - @@ -105,7 +105,7 @@ Stack xspNodeStack = new Stack(); // Make session object readily available - HttpSession session = request.getSession(true); + HttpSession session = request.getSession(false); document.appendChild( @@ -130,9 +130,9 @@ xspCurrentNode = document.createElement(""); xspParentNode.appendChild(xspCurrentNode); - + - + ((Element) xspCurrentNode).normalize(); xspCurrentNode = (Node) xspNodeStack.pop(); @@ -204,10 +204,10 @@ xspCurrentNode = document.createElement(""); xspParentNode.appendChild(xspCurrentNode); - + - + ((Element) xspCurrentNode).normalize(); xspCurrentNode = (Node) xspNodeStack.pop();