> The bit of code that decides this is the AuthenticateAction,
> org.dspace.app.xmlui.aspect.eperson.AuthenticateAction. The act()
> method builds a redirect URL, first it checks to see if there was an
> interrupted request. If so then in redirects to that url otherwise it
> defaults to the home page. you'll just want to add an else to that
> check to redirect to another page.

Got it, I think. Thanks! Tossing out what I think is the solution in
case anyone else wants it (this will make Manakin behave more or less
the way the JSPUI does, reducing confusion for existing repository
users):

Starting at line 110:

                        if 
(AuthenticationUtil.isInterupptedRequest(objectModel))
                        {
                                // Resume the request and set the redirect 
target URL to
                                // that of the originaly interrupted request.
                                redirectURL +=
AuthenticationUtil.resumeInterruptedRequest(objectModel);
                        }
                        else
                        {
                                redirectURL += "/profile";
                        }

Dorothea

-- 
Dorothea Salo                [EMAIL PROTECTED]
Digital Repository Librarian      AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to