Remove deprecated "edbob" settings
This commit is contained in:
parent
b464db5722
commit
9149902c78
|
@ -55,13 +55,8 @@ def make_rattail_config(settings):
|
|||
# available for web requests later
|
||||
path = settings.get('rattail.config')
|
||||
if not path or not os.path.exists(path):
|
||||
path = settings.get('edbob.config')
|
||||
if not path or not os.path.exists(path):
|
||||
raise ConfigurationError("Please set 'rattail.config' in [app:main] section of config "
|
||||
"to the path of your config file. Lame, but necessary.")
|
||||
warnings.warn("[app:main] setting 'edbob.config' is deprecated; "
|
||||
"please use 'rattail.config' setting instead",
|
||||
DeprecationWarning)
|
||||
raise ConfigurationError("Please set 'rattail.config' in [app:main] section of config "
|
||||
"to the path of your config file. Lame, but necessary.")
|
||||
rattail_config = make_config(path)
|
||||
settings['rattail_config'] = rattail_config
|
||||
rattail_config.configure_logging()
|
||||
|
@ -146,14 +141,6 @@ def make_pyramid_config(settings, configure_csrf=True):
|
|||
config.add_directive('add_tailbone_permission_group', 'tailbone.auth.add_permission_group')
|
||||
config.add_directive('add_tailbone_permission', 'tailbone.auth.add_permission')
|
||||
|
||||
# TODO: This can finally be removed once all CRUD/index views have been
|
||||
# converted to use the new master view etc.
|
||||
for label, perms in settings.get('edbob.permissions', []):
|
||||
groupkey = label.lower().replace(' ', '_')
|
||||
config.add_tailbone_permission_group(groupkey, label)
|
||||
for key, label in perms:
|
||||
config.add_tailbone_permission(groupkey, key, label)
|
||||
|
||||
return config
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue