X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/5b07c7b5b515a3b89da2cd3cfc46e1842dbdc328..3860fda5909f0f756be78567e4961ea82a12c4a3:/forum_modules/openidauth/authentication.py diff --git a/forum_modules/openidauth/authentication.py b/forum_modules/openidauth/authentication.py index dfd337f..0afd4c6 100644 --- a/forum_modules/openidauth/authentication.py +++ b/forum_modules/openidauth/authentication.py @@ -33,14 +33,14 @@ class AolAuthConsumer(OpenIdAbstractAuthConsumer): return 'http://openid.aol.com/' + uname class AolAuthContext(ConsumerTemplateContext): - mode = 'BIGICON' + mode = 'SMALLICON' type = 'SIMPLE_FORM' simple_form_context = { 'your_what': 'AOL screen name' } - weight = 400 + weight = 200 human_name = 'AOL' - icon = '/media/images/openid/aol.gif' + icon = '/media/images/openid/aol.png' class MyOpenIdAuthConsumer(OpenIdAbstractAuthConsumer): @@ -56,14 +56,14 @@ class MyOpenIdAuthConsumer(OpenIdAbstractAuthConsumer): return "http://%s.myopenid.com/" % blog_name class MyOpenIdAuthContext(ConsumerTemplateContext): - mode = 'SMALLICON' + mode = 'BIGICON' type = 'SIMPLE_FORM' simple_form_context = { 'your_what': 'MyOpenID user name' } - weight = 200 + weight = 400 human_name = 'MyOpenID' - icon = '/media/images/openid/myopenid.png' + icon = '/media/images/openid/myopenid_big.png' class FlickrAuthConsumer(OpenIdAbstractAuthConsumer):