From: Matías Aguirre Date: Wed, 4 Jul 2012 06:57:42 +0000 (-0300) Subject: Small docstring changes X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9943b1c0f5392ee84526f7659ca90fcf2b8c161c;p=django-social-auth.git Small docstring changes --- diff --git a/social_auth/backends/__init__.py b/social_auth/backends/__init__.py index a32b403..c518288 100644 --- a/social_auth/backends/__init__.py +++ b/social_auth/backends/__init__.py @@ -329,7 +329,7 @@ class BaseAuth(object): """Base authentication class, new authenticators should subclass and implement needed methods. - @AUTH_BACKEND Authorization backend related with this service + AUTH_BACKEND Authorization backend related with this service """ AUTH_BACKEND = None @@ -561,10 +561,10 @@ class ConsumerBasedOAuth(BaseOAuth): """Consumer based mechanism OAuth authentication, fill the needed parameters to communicate properly with authentication service. - @AUTHORIZATION_URL Authorization service url - @REQUEST_TOKEN_URL Request token URL - @ACCESS_TOKEN_URL Access token URL - @SERVER_URL Authorization server URL + AUTHORIZATION_URL Authorization service url + REQUEST_TOKEN_URL Request token URL + ACCESS_TOKEN_URL Access token URL + SERVER_URL Authorization server URL """ AUTHORIZATION_URL = '' REQUEST_TOKEN_URL = '' @@ -656,8 +656,10 @@ class BaseOAuth2(BaseOAuth): http://tools.ietf.org/html/draft-ietf-oauth-v2-10 Attributes: - @AUTHORIZATION_URL Authorization service url - @ACCESS_TOKEN_URL Token URL + AUTHORIZATION_URL Authorization service url + ACCESS_TOKEN_URL Token URL + FORCE_STATE_CHECK Ensure state argument check (check issue #386 + for further details) """ AUTHORIZATION_URL = None ACCESS_TOKEN_URL = None