aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/plugins/oauth/forms.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated oauth 2 pluginJessica Tallon2015-02-151-69/+0
|
* Merge branch 'master' into merge-python3-portChristopher Allan Webber2014-09-161-4/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Has some issues, will iteratively fix! Conflicts: mediagoblin/gmg_commands/__init__.py mediagoblin/gmg_commands/deletemedia.py mediagoblin/gmg_commands/users.py mediagoblin/oauth/views.py mediagoblin/plugins/api/views.py mediagoblin/tests/test_api.py mediagoblin/tests/test_edit.py mediagoblin/tests/test_oauth1.py mediagoblin/tests/test_util.py mediagoblin/tools/mail.py mediagoblin/webfinger/views.py setup.py
| * Fixes #899 : DeprecationWarning about Required going away in WTForms 3.0. ↵Loïc Le Ninan2014-06-131-4/+4
| | | | | | | | Replaced Required with InputRequired.
* | Use six.moves.urllib.parse instead of the urlparse module.Berker Peksag2014-05-261-1/+1
|/
* Fix-bug-667-Use-lazy_pass_to_ugettext-for-forms.Aditi Mittal2013-04-241-1/+1
|
* Fixed hidden fields in oauth client authorizationJoar Wandborg2013-03-021-4/+3
| | | | | | Removed the translation marking and passed in empty strings to avoid WTForms automagically creating the labels from the field names (i.e. client_id => 'Client Id').
* Correcting a couple of spelling errors. Thanks elesa, for finding them!Christopher Allan Webber2012-09-241-1/+1
|
* Fixed typos visisble, appplicationJoar Wandborg2012-09-221-2/+2
|
* Added client registration caps to OAuth pluginJoar Wandborg2012-09-211-0/+70
THE MIGRATIONS SUPPLIED WITH THIS COMMIT WILL DROP AND RE-CREATE YOUR oauth__tokens AND oauth__codes TABLES. ALL YOUR OAUTH CODES AND TOKENS WILL BE LOST. - Fixed pylint issues in db/sql/migrations. - Added __repr__ to the User model. - Added _disable_cors option to json_response. - Added crude error handling to the api.tools.api_auth decorator - Updated the OAuth README. - Added client registration, client overview, connection overview, client authorization views and templates. - Added error handling to the OAuthAuth Auth object. - Added AuthorizationForm, ClientRegistrationForm in oauth/forms. - Added migrations for OAuth, added client registration migration. - Added OAuthClient, OAuthUserClient models. - Added oauth/tools with require_client_auth decorator method.