aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed pylint/pep8 warnings in test/tools.pyJoar Wandborg2012-09-291-2/+2
|
* Switch from webob.Request to werkzeug.wrappers.RequestJoar Wandborg2012-09-295-27/+382
|
* Grammar re: libasound2-devJoar Wandborg2012-09-291-4/+4
|
* Added note about libasound2-dev to docs.Joar Wandborg2012-09-291-0/+7
|
* Added cascade all, delete-orphan to ProcessingMetaDataJoar Wandborg2012-09-271-5/+7
|
* Added tests for HTTP callbacksJoar Wandborg2012-09-274-3/+85
|
* Added some OAuth plugin testsJoar Wandborg2012-09-263-2/+138
|
* HTTP callback fixesJoar Wandborg2012-09-263-6/+21
| | | | | | | | | | | - Added HTTPError catching around the callback request, to not mark the entry as failed, just log the exception. - Fixed bug where I forgot to actually fetch the entry before passing it to json_processing_callback. - Changed __main__ migration #6 to create the ProcessingMetaData table as it is currently, to prevent possible breakage if a siteadmin is lagging behind with his db migrations and more than one migration wants to fix stuff with the ProcessingMetaData table.
* Added support for http callbacks on processingJoar Wandborg2012-09-265-2/+111
| | | | | Sends an HTTP POST request back to an URL given on submission to the API submit view.
* Committing extracted and compiled translationsChristopher Allan Webber2012-09-2448-261/+169
|
* Committing present MediaGoblin translations before pushing extracted messagesChristopher Allan Webber2012-09-243-99/+99
|
* Too much was marked for translation this gettext message.Christopher Allan Webber2012-09-241-1/+3
| | | | Thanks for catching AVRS!
* Changed a <p/> to </p> in user.html. Removed the <p></p> wrappers in ↵LotusEcho2012-09-242-2/+2
| | | | profile.html which was included in user.html.
* Committing extracted and compiled translationsChristopher Allan Webber2012-09-2448-91/+91
|
* Committing present MediaGoblin translations before pushing extracted messagesChristopher Allan Webber2012-09-243-139/+140
|
* Correcting a couple of spelling errors. Thanks elesa, for finding them!Christopher Allan Webber2012-09-241-1/+1
|
* Removed logging entry from sniff_handlerJoar Wandborg2012-09-221-5/+0
| | | | | The logging entry caused the submit page to crash if you tried to upload an SVG with a non-ascii filename.
* Fixed typos visisble, appplicationJoar Wandborg2012-09-221-2/+2
|
* Committing extracted and compiled translationsChristopher Allan Webber2012-09-2151-1399/+7953
|
* Added name kwarg to Column(Enum(...)) in OAuth modelsJoar Wandborg2012-09-211-2/+4
|
* Added flask-wtf html5 fields to extlibJoar Wandborg2012-09-213-0/+157
|
* Added client registration caps to OAuth pluginJoar Wandborg2012-09-2114-44/+602
| | | | | | | | | | | | | | | | | | | 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.
* Fixed typo in OAuth READMEJoar Wandborg2012-09-191-1/+1
|
* Added security warning to OAuth READMEJoar Wandborg2012-09-191-0/+5
|
* Fixed a horrible security issue in the OAuth plugin.Joar Wandborg2012-09-191-3/+6
| | | | Also added some real triggering logic to the OAuthAuth Auth object.
* Added some more helpful links to the OAuth docsJoar Wandborg2012-09-181-1/+7
| | | | | | - OAuth v2.25 draft - IRC channel - OAuth plugin source code
* Fixed typo in OAuth docs, recieve => receiveJoar Wandborg2012-09-181-1/+1
|
* Added documentation for the OAuth pluginJoar Wandborg2012-09-183-0/+132
|
* Style fixesJoar Wandborg2012-09-182-21/+34
|
* Fixed post-collect redirect to always take user to image collected.Aaron Williamson2012-09-181-1/+1
|
* Fixed collection sidebar for media_home to user collection.url_for_self ↵Aaron Williamson2012-09-182-10/+4
| | | | instead of incorrectly getting the session user
* Reference collection creator through already-existing collection_item's ↵Aaron Williamson2012-09-181-1/+1
| | | | foreign key
* Removed unnecessary reference to may_edit_collection in edit views.pyAaron Williamson2012-09-181-1/+1
|
* Added default for 'collected' column to migrationAaron Williamson2012-09-181-1/+1
|
* Fixed migrations for Collection and CollectionItem tablesAaron Williamson2012-09-181-2/+5
|
* Added migrations for Collection and CollectionItem tablesAaron Williamson2012-09-181-1/+30
|
* Fixed collections migration to add 'collected' column to media_entries ↵Aaron Williamson2012-09-181-2/+2
| | | | instead of 'collections'
* Added new files for collectionsAaron Williamson2012-09-1811-0/+548
|
* Added basic collection functionalityAaron Williamson2012-09-1818-15/+712
|
* Fixed validation in API post_entry.Joar Wandborg2012-09-172-1/+11
| | | | Added state to API get_entry_serializable
* API: Fixed media file URLs, limitsJoar Wandborg2012-09-152-4/+15
| | | | | - Added default limit and limit arg to get_entries - Fixed URL generation for BasicFileStorage files in API
* Added CORS headers to API json_responseJoar Wandborg2012-09-151-0/+5
|
* Fixed ?next=<url> argument for require_active_loginJoar Wandborg2012-09-153-5/+17
| | | | It now includes the full URI, including GET args, not just the path.
* Fixed testsJoar Wandborg2012-09-153-3/+3
| | | | | - Adapt tests to new global_config arg for run_dbupdate - Account for [plugins] not being set in config
* Fixed typo in API post_entryJoar Wandborg2012-09-151-1/+1
|
* Added post_entry at /api/submitJoar Wandborg2012-09-152-1/+94
|
* Added fields to /api/entries, wrote docstrings for api.toolsJoar Wandborg2012-09-152-6/+40
|
* Added /api/entries viewJoar Wandborg2012-09-154-23/+80
|
* Created API plugin, moved api_auth to the API pluginJoar Wandborg2012-09-136-43/+126
|
* Add OAuth models, plugin DB migrations, api_authJoar Wandborg2012-09-136-9/+342
|