You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2002/05/23 21:06:29 UTC

cvs commit: jakarta-cactus/framework/web jspRedirector.jsp

vmassol     02/05/23 12:06:29

  Modified:    documentation/docs/xdocs changes.xml
               framework/web jspRedirector.jsp
  Log:
  improved jspRedirector by automatically creating a session. It fixes 2 reported bugs
  
  Revision  Changes    Path
  1.18      +14 -0     jakarta-cactus/documentation/docs/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/changes.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- changes.xml	22 May 2002 19:53:51 -0000	1.17
  +++ changes.xml	23 May 2002 19:06:29 -0000	1.18
  @@ -48,6 +48,20 @@
       </devs>
   
       <release version="1.4 in CVS">
  +      <action dev="VMA" type="fix" due-to="Marc Brette" due-to-email="Marc.Brette@mkms.xerox.com">
  +        (<link href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8640">
  +         Bug #8640</link>. It also solves bug
  +         <link href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8640">
  +         Bug #4167</link> reported by
  +         <link href="mailto:eqwalker@yahoo.com">Eric Walker</link>).
  +         Modified the <code>jspRedirector.jsp</code> so that
  +         it initializes an HTTP Session (<code>session="true"</code>). There
  +         is no way I know to make this parameter dynamic so we set it to true
  +         as this is the most used case. If one of your test must not have a
  +         session created for it, then you can always use the Redirector
  +         overriding feature (<code>WebRequest.setRedirectorName(String
  +         redirectorName)</code>).
  +      </action>
         <action dev="VMA" type="fix" due-to="Patrick Lightbody" due-to-email="plightbo@hotmail.com">
           Fixed bug where the Test Result object which is put in the Servlet
           Context was not serializable. This might cause some trouble with some
  
  
  
  1.3       +1 -1      jakarta-cactus/framework/web/jspRedirector.jsp
  
  Index: jspRedirector.jsp
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/framework/web/jspRedirector.jsp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jspRedirector.jsp	10 Mar 2002 13:58:25 -0000	1.2
  +++ jspRedirector.jsp	23 May 2002 19:06:29 -0000	1.3
  @@ -1,5 +1,5 @@
   <%@page import="org.apache.cactus.server.*,
  -                org.apache.cactus.util.log.LogService" session="false" %><%
  +                org.apache.cactus.util.log.LogService" session="true" %><%
   
       /**                                                
        *                                                 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>