From: Christopher Allan Webber Date: Sun, 19 Jun 2011 16:36:52 +0000 (-0500) Subject: renaming storage_system_from_paste_config()->storage_system_from_config() X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3c7d11ff2840fdc40be8cf916aef1ae7f532c309;p=mediagoblin.git renaming storage_system_from_paste_config()->storage_system_from_config() As Elrond points out, this name doesn't make sense anymore since this isn't based on the paste config. Thanks Elrond! --- diff --git a/mediagoblin/app.py b/mediagoblin/app.py index d2a0695e..b27b5761 100644 --- a/mediagoblin/app.py +++ b/mediagoblin/app.py @@ -75,9 +75,9 @@ class MediaGoblinApp(object): app_config.get('user_template_path')) # Set up storage systems - self.public_store = storage.storage_system_from_paste_config( + self.public_store = storage.storage_system_from_config( app_config, 'publicstore') - self.queue_store = storage.storage_system_from_paste_config( + self.queue_store = storage.storage_system_from_config( app_config, 'queuestore') # set up routing diff --git a/mediagoblin/storage.py b/mediagoblin/storage.py index ba6ac017..5d6faa4c 100644 --- a/mediagoblin/storage.py +++ b/mediagoblin/storage.py @@ -247,7 +247,7 @@ def clean_listy_filepath(listy_filepath): return cleaned_filepath -def storage_system_from_paste_config(paste_config, storage_prefix): +def storage_system_from_config(paste_config, storage_prefix): """ Utility for setting up a storage system from the paste app config. @@ -266,7 +266,7 @@ def storage_system_from_paste_config(paste_config, storage_prefix): An instantiated storage system. Example: - storage_system_from_paste_config( + storage_system_from_config( {'publicstore_base_url': '/media/', 'publicstore_base_dir': '/var/whatever/media/'}, 'publicstore') diff --git a/mediagoblin/tests/test_storage.py b/mediagoblin/tests/test_storage.py index 55b66e84..1800c29d 100644 --- a/mediagoblin/tests/test_storage.py +++ b/mediagoblin/tests/test_storage.py @@ -58,8 +58,8 @@ class FakeRemoteStorage(storage.BasicFileStorage): local_storage = False -def test_storage_system_from_paste_config(): - this_storage = storage.storage_system_from_paste_config( +def test_storage_system_from_config(): + this_storage = storage.storage_system_from_config( {'somestorage_base_url': 'http://example.org/moodia/', 'somestorage_base_dir': '/tmp/', 'somestorage_garbage_arg': 'garbage_arg', @@ -69,7 +69,7 @@ def test_storage_system_from_paste_config(): assert this_storage.base_dir == '/tmp/' assert this_storage.__class__ is storage.BasicFileStorage - this_storage = storage.storage_system_from_paste_config( + this_storage = storage.storage_system_from_config( {'somestorage_foobie': 'eiboof', 'somestorage_blech': 'hcelb', 'somestorage_garbage_arg': 'garbage_arg',