You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/07/20 02:06:45 UTC

svn commit: r423671 - in /incubator/roller/branches/roller_3.0/web/roller-ui: index.jsp logout-redirect.jsp

Author: agilliland
Date: Wed Jul 19 17:06:44 2006
New Revision: 423671

URL: http://svn.apache.org/viewvc?rev=423671&view=rev
Log:
need to add trailing slash to logout redirect, otherwise it doesn't work properly when app is at root context.

adding roller-ui index jsp which just redirects to the login.


Added:
    incubator/roller/branches/roller_3.0/web/roller-ui/index.jsp
Modified:
    incubator/roller/branches/roller_3.0/web/roller-ui/logout-redirect.jsp

Added: incubator/roller/branches/roller_3.0/web/roller-ui/index.jsp
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/web/roller-ui/index.jsp?rev=423671&view=auto
==============================================================================
--- incubator/roller/branches/roller_3.0/web/roller-ui/index.jsp (added)
+++ incubator/roller/branches/roller_3.0/web/roller-ui/index.jsp Wed Jul 19 17:06:44 2006
@@ -0,0 +1 @@
+<% response.sendRedirect("login-redirect.jsp"); %>
\ No newline at end of file

Modified: incubator/roller/branches/roller_3.0/web/roller-ui/logout-redirect.jsp
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/web/roller-ui/logout-redirect.jsp?rev=423671&r1=423670&r2=423671&view=diff
==============================================================================
--- incubator/roller/branches/roller_3.0/web/roller-ui/logout-redirect.jsp (original)
+++ incubator/roller/branches/roller_3.0/web/roller-ui/logout-redirect.jsp Wed Jul 19 17:06:44 2006
@@ -29,6 +29,6 @@
 terminate.setMaxAge(0);
 response.addCookie(terminate);
 
-response.sendRedirect(request.getContextPath()); 
+response.sendRedirect(request.getContextPath()+"/"); 
 %>