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!
This commit is contained in:
Christopher Allan Webber 2011-06-19 11:36:52 -05:00
parent 0a7805f913
commit 3c7d11ff28
3 changed files with 7 additions and 7 deletions

View File

@ -75,9 +75,9 @@ class MediaGoblinApp(object):
app_config.get('user_template_path')) app_config.get('user_template_path'))
# Set up storage systems # Set up storage systems
self.public_store = storage.storage_system_from_paste_config( self.public_store = storage.storage_system_from_config(
app_config, 'publicstore') app_config, 'publicstore')
self.queue_store = storage.storage_system_from_paste_config( self.queue_store = storage.storage_system_from_config(
app_config, 'queuestore') app_config, 'queuestore')
# set up routing # set up routing

View File

@ -247,7 +247,7 @@ def clean_listy_filepath(listy_filepath):
return cleaned_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. 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. An instantiated storage system.
Example: Example:
storage_system_from_paste_config( storage_system_from_config(
{'publicstore_base_url': '/media/', {'publicstore_base_url': '/media/',
'publicstore_base_dir': '/var/whatever/media/'}, 'publicstore_base_dir': '/var/whatever/media/'},
'publicstore') 'publicstore')

View File

@ -58,8 +58,8 @@ class FakeRemoteStorage(storage.BasicFileStorage):
local_storage = False local_storage = False
def test_storage_system_from_paste_config(): def test_storage_system_from_config():
this_storage = storage.storage_system_from_paste_config( this_storage = storage.storage_system_from_config(
{'somestorage_base_url': 'http://example.org/moodia/', {'somestorage_base_url': 'http://example.org/moodia/',
'somestorage_base_dir': '/tmp/', 'somestorage_base_dir': '/tmp/',
'somestorage_garbage_arg': 'garbage_arg', '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.base_dir == '/tmp/'
assert this_storage.__class__ is storage.BasicFileStorage 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_foobie': 'eiboof',
'somestorage_blech': 'hcelb', 'somestorage_blech': 'hcelb',
'somestorage_garbage_arg': 'garbage_arg', 'somestorage_garbage_arg': 'garbage_arg',