taylor 2002/07/29 22:45:21
Modified: src/java/org/apache/jetspeed/modules/actions JLoginUser.java
webapp/WEB-INF/conf JetspeedSecurity.properties
Log:
- Removing check for relogon altogether. After checking the logic and running tests,
it appears it isn;t necessary
Revision Changes Path
1.28 +1 -12
jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/JLoginUser.java
Index: JLoginUser.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/JLoginUser.java,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- JLoginUser.java 30 Jul 2002 02:44:32 -0000 1.27
+++ JLoginUser.java 30 Jul 2002 05:45:21 -0000 1.28
@@ -185,18 +185,6 @@
public void doPerform( RunData rundata ) throws Exception
{
JetspeedRunData data = (JetspeedRunData)rundata;
-
- // This prevents a db hit on second Action call during page
- // generation. Turbine removes everything from the Session
- // before calling this method, so in this case we should
- // continue on with the Login procedure.
- if ( data.getUserFromSession() != null )
- {
- if (data.getUser().hasLoggedIn())
- {
- return;
- }
- }
String username = data.getParameters().getString("username", "");
String password = data.getParameters().getString("password", "");
@@ -398,4 +386,5 @@
}
}
+
}
1.25 +0 -0 jakarta-jetspeed/webapp/WEB-INF/conf/JetspeedSecurity.properties
Index: JetspeedSecurity.properties
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/conf/JetspeedSecurity.properties,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>