[Jifty-commit] r4551 - jifty/trunk/lib/Jifty/Plugin/OpenID

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Wed Nov 28 05:45:27 EST 2007


Author: gugod
Date: Wed Nov 28 05:45:03 2007
New Revision: 4551

Modified:
   jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm

Log:
revert its previous revision for it's fixed earler in classloader.


Modified: jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm	Wed Nov 28 05:45:03 2007
@@ -20,7 +20,7 @@
 
 before qr'^/openid/login' => run {
     set action => Jifty->web->new_action(
-        class   => 'Jifty::Plugin::OpenID::Action::AuthenticateOpenID',
+        class   => 'AuthenticateOpenID',
         moniker => 'authenticateopenid'
     );
 };
@@ -97,7 +97,7 @@
         redirect '/';
     }
 
-    set action => Jifty->web->new_action( class => 'Jifty::Plugin::OpenID::Action::CreateOpenIDUser', parameters => { openid => Jifty->web->session->get("openid") } );
+    set action => Jifty->web->new_action( class => 'CreateOpenIDUser', parameters => { openid => Jifty->web->session->get("openid") } );
     set 'next' => Jifty->web->request->continuation ||
                   Jifty::Continuation->new( request => Jifty::Request->new( path => "/" ) );
 };


More information about the Jifty-commit mailing list