aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor improvements to the processing panelJoar Wandborg2012-07-104-8/+33
| | | | | | - It is now possible to actually see what's processing, due to a bug fix where __getitem__ was called on the db model. - Removed DEPRECATED message from the docstring, it wasn't true.
* Merge branch 'master' into 201207-testfixesBrett Smith2012-07-0824-52/+892
|\
| * made the download links consistentJakob Kramer2012-07-074-11/+31
| |
| * put attachments into sidebarJakob Kramer2012-07-071-22/+26
| | | | | | | | also added {% trans %} tags
| * Added API documentationJoar Wandborg2012-07-0714-1/+731
| | | | | | | | | | | | | | | | | | - Applied the MediaGoblin docs theme to the API docs - Added api-docs/build to .gitignore - Configured api-docs/source/conf.py - Added /api-docs/source/mediagoblin* to .gitignore - Added apidoc directive to api docs Makefile, will build the API docs based on the source
| * Decoding EXIF strings as UTF-8 with replace in the ifd_tag_to_dictJoar Wandborg2012-07-071-1/+14
| | | | | | | | method.
| * Updated the media types documentation, added steps for audioJoar Wandborg2012-07-061-11/+62
| | | | | | | | | | | | | | | | | | - Added chapter about media type negotiation. - Added instructions on how to install dependencies for the audio media type. - Moved part about how to enable media types in your config to a single place at the top of the document named "Enable Media Types". - Renamed the "Enable Media Types" page to "Media Types".
| * Removed .ogg extension from audio MEDIA_MANAGER.Joar Wandborg2012-07-061-1/+1
| | | | | | | | | | | | | | There is some historical controversy about the .ogg extension and what you should expect from it. It's better to let the audio and video plugins take the sniffing-based route to find out what it really seems to be.
| * Switching the syntax of this exception-raiseChristopher Allan Webber2012-07-061-2/+1
| | | | | | | | | | | | | | It's nicer to raise exceptions like raise Exception("foo") than raise Exception, "foo"
| * Removing _jointhat()... not really needed.Christopher Allan Webber2012-07-061-14/+2
| |
| * one more noSuchFiles->no_such_filesChristopher Allan Webber2012-07-061-1/+1
| |
| * Merge remote-tracking branch 'refs/remotes/merge-requests/37'Christopher Allan Webber2012-07-062-5/+40
| |\
| | * changing NoSuchFiles for no_such_filesJorge Araya Navarro2012-07-051-4/+4
| | |
| | * fixing bug #255 as Joar and CWebber ask me to do :)Jorge Araya Navarro2012-06-283-11/+41
| | |
| | * Bug 255 fixedJorge Araya Navarro2012-06-221-1/+6
| | |
* | | Drop our scoped session sooner to prevent SQLAlchemy re-binding warnings.Brett Smith2012-07-081-3/+3
| | |
* | | Don't rely on app_config if common.TESTS_ENABLED.Brett Smith2012-07-081-3/+4
| | | | | | | | | | | | | | | app_config will be None in this case, so all of these subscripts will fail.
* | | Make filestorage available to code that only imports storage.Brett Smith2012-07-081-0/+2
| | | | | | | | | | | | The storage-related tests were relying on this, if nothing else.
* | | Prevent SQLAlchemy non-Unicode warnings from this test.Brett Smith2012-07-081-8/+8
| | |
* | | Prevent SQLAlchemy non-Unicode warnings in this test.Brett Smith2012-07-081-4/+4
| | |
* | | More Unicode titles to prevent non-Unicode SQLAlchemy warnings.Brett Smith2012-07-081-2/+6
| | |
* | | Fix docstring typo.Brett Smith2012-07-081-1/+1
| | |
* | | Prevent non-Unicode SQLAlchemy warnings in most submission tests.Brett Smith2012-07-087-32/+32
| | | | | | | | | | | | This commit makes test_submission mostly warning-clean.
* | | Level exits are Unicode too.Brett Smith2012-07-041-3/+3
| | |
* | | Make sure MigrationManagers always get Unicode names.Brett Smith2012-07-042-5/+5
|/ / | | | | | | | | If we fail to do this, SQLAlchemy complains that we're binding a non-Unicode value to a Unicode column.
* | Explicitly state that we need a webob version >= 1.1 also.Christopher Allan Webber2012-07-011-1/+1
| |
* | Changing mediagoblin theme font files over to be symlinks to extlibChristopher Allan Webber2012-07-015-97/+1
| |
* | Clarifying that all original documentation theme files are CC0'ed.Christopher Allan Webber2012-07-011-5/+6
| |
* | Added some security checks to attachment upload, it's still notJoar Wandborg2012-06-241-2/+29
| | | | | | | | waterproof.
* | Fixed EXIF longitude bugJoar Wandborg2012-06-232-4/+16
|/ | | | | - Negative or 'W' longitudes were not accounted for. - pyflakes fixes.
* First migration fix: commit after each migration.Elrond2012-06-141-0/+2
| | | | | | | | | | | | sqlite doesn't like complex changes (alter table) to happen inside a transaction that has already done other things. And really, each migration should say "I'm done" and commit its changes. This is not the full story, but it's the core of it. Specifially the migration framework should probably do a rollback "just in case" after each migration.
* Pull instance name from config in the notification email.Joar Wandborg2012-06-111-3/+3
|
* Now require sqlalchemy >= 0.7.0Christopher Allan Webber2012-06-111-1/+1
|
* FIXED SQL MIGRATION #2Joar Wandborg2012-06-102-3/+5
|
* Added SQL migrations for email notificationsJoar Wandborg2012-06-101-2/+14
|
* Fixed some comment notification code for compliance with SQLJoar Wandborg2012-06-102-12/+15
| | | | * Pulled instance name in notification email from config
* Merge remote-tracking branch ↵Joar Wandborg2012-06-109-33/+146
|\ | | | | | | | | | | | | 'is_derek/bug405_email_notifications_for_comments' into notifications-merge Conflicts: mediagoblin/db/mongo/migrations.py
| * Updates to send email comments, included translation, better validation.Derek Moore2012-03-253-52/+48
| |
| * Merge branch 'master' into derek-moore-bug405_email_notifications_for_commentsChristopher Allan Webber2012-03-1837-76/+4497
| |\ | | | | | | | | | | | | Conflicts: mediagoblin/db/mongo/migrations.py
| * | Added wants_comment_notification to sql modelDerek Moore2012-03-151-0/+1
| | |
| * | These are changes for issue #405, add email comment notification.Derek Moore2012-03-158-19/+133
| | |
* | | Fix problems from pyflakes outputWill Kahn-Greene2012-06-0314-32/+14
| | |
* | | Merge branch 'master' of gitorious.org:mediagoblin/mediagoblinChristopher Allan Webber2012-06-022-4/+14
|\ \ \
| * | | Add link to wiki on front page; fix aboutWill Kahn-Greene2012-06-022-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a summary and a link to the wiki for contributors to the front page. The "what is mediagoblin" section in the about chapter talkd about what it was, but it was buried--this slightly unburies it.
* | | | Committing extracted and compiled translationsChristopher Allan Webber2012-06-0145-70/+290
| | | |
* | | | Committing present MediaGoblin translations before pushing extracted messagesChristopher Allan Webber2012-06-016-74/+1435
|/ / /
* | | Added links to community-provied init scriptsJoar Wandborg2012-05-281-2/+16
| | |
* | | Add plugin writer's quickstart guideWill Kahn-Greene2012-05-232-0/+190
| | |
* | | Add build date to docsWill Kahn-Greene2012-05-231-0/+1
| | | | | | | | | | | | Makes it easier to spot when the docs aren't rebuilding correctly.
* | | Split docs into siteadmin and pluginwriter guidesWill Kahn-Greene2012-05-2315-25/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * create initial bits for plugin writer's guide * move siteadmin stuff to site administrator's guide * rework index.rst to support multiple guides * tweak some text * move files into subdirectories I verified that this still works with html and texinfo build targets. There's still a lot of work to do, but this is a good start.