i read the discussion on openID using Janrain (janrain.com) and i tried implementing it on my blog built with InstantPressit . it worked just well but i discovered it disabled my registration page(for new users) and also my default sign in page was disabled
from gluon.contrib.login_methods.rpx_account import RPXAccount 2 auth.settings.actions_disabled=['register','change_password',' request_reset_password'] 3 auth.settings.login_form = RPXAccount(request, 4 api_key='...', 5 domain='...', 6 url = "http://localhost:8000/%s/default/user/login" % request.application) i am aware dat line 2 disables the default login but is there a way one can make this openID optional thereby reserving your default login page and the registration page many thanks

