aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/storage
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Fix problems from pyflakes outputWill Kahn-Greene2012-06-033-5/+6
|
* Also make sure mimetype here is set correctly via mimetype[0] (Thanks Shackra!)Christopher Allan Webber2012-04-181-1/+1
|
* Save the MIMEtype to cloudfiles correctly.Shackra2012-04-161-0/+6
|
* It's 2012 all up in hereChristopher Allan Webber2012-02-024-4/+4
|
* Merge branch 'video_gstreamer-only'Joar Wandborg2011-11-211-2/+8
|\ | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/submit/views.py
| * Multimedia support - Commiting from a not yet finished state - Details belowJoar Wandborg2011-09-231-2/+8
| | | | | | | | | | | | | | | | | | | | | | * DONE Initially testing with arista ** DONE Video display templates *** TODO Multi-browser support ** TODO Video thumbnails ** TODO Link to original video ** TODO Video cropping Also contains a lot of "debug" print's
* | Slightly clearer docs on copy_local_to_storageChristopher Allan Webber2011-11-201-0/+4
| |
* | copy_local_to_storage, both general and specialized-for-BasicFileStorage ↵Christopher Allan Webber2011-11-202-0/+22
| | | | | | | | | | | | | | versions This utility should allow for easy copying from a local filesystem to the storage instance.
* | Merge remote-tracking branch 'remotes/nyergler/pep8-ification'Christopher Allan Webber2011-11-131-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/db/models.py mediagoblin/user_pages/views.py mediagoblin/util.py
| * | Whitespace and formatting cleanup.Nathan Yergler2011-10-011-0/+1
| |/ | | | | | | | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, =
* | Merge remote branch 'remotes/aaronw/bug444_fix_utils_py_redux'Christopher Allan Webber2011-10-011-2/+2
|\ \ | | | | | | | | | | | | Conflicts: mediagoblin/util.py
| * | Finished splitting util.py into separate files.Aaron Williamson2011-10-011-2/+2
| |/
* / mountstorage - Changed typo in importJoar Wandborg2011-09-151-1/+1
|/
* Feature #587 - Split storage.py into submodulesJoar Wandborg2011-09-124-0/+630
* Removed storage.py * Created submodules for filestorage, cloudfiles, mountstorage * Changed test_storage to reflect the changes made in the storage module structure * Added mediagoblin.storage.filestorage.BasicFileStorage as a default for both publicstore and queuestore's `storage_class`