Skip to content

Commit

Permalink
Merge pull request #70 from bird-house/skip-unused-config
Browse files Browse the repository at this point in the history
removed unused config module
  • Loading branch information
cehbrecht authored May 16, 2019
2 parents ad623c0 + 9e2a2fb commit 6e7425f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 43 deletions.
2 changes: 0 additions & 2 deletions development.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ twitcher.ows_security = true
twitcher.ows_proxy = true
twitcher.ows_proxy_delegate = false
twitcher.ows_proxy_protected_path = /ows
twitcher.workdir =
twitcher.prefix =

###
# wsgi server configuration
Expand Down
1 change: 0 additions & 1 deletion twitcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ def main(global_config, **settings):
with Configurator(settings=settings) as config:
# include twitcher components
config.include('.models')
config.include('.config')
config.include('.frontpage')
config.include('.rpcinterface')
config.include('.owsproxy')
Expand Down
34 changes: 0 additions & 34 deletions twitcher/config.py

This file was deleted.

3 changes: 0 additions & 3 deletions twitcher/owsproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,6 @@ def owsproxy_defaultconfig(config):
config.add_view(owsproxy_delegate_view, route_name='owsproxy')
config.add_view(owsproxy_delegate_view, route_name='owsproxy_secured')
else:
config.include('twitcher.config')
# include mongodb
# config.include('twitcher.db')
config.add_view(owsproxy_view, route_name='owsproxy')
config.add_view(owsproxy_view, route_name='owsproxy_secured')
config.add_view(owsproxy_view, route_name='owsproxy_extra')
Expand Down
3 changes: 0 additions & 3 deletions twitcher/rpcinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ def includeme(config):
if asbool(settings.get('twitcher.rpcinterface', True)):
LOGGER.debug('Twitcher XML-RPC Interface enabled.')

# include twitcher config
config.include('twitcher.config')

# using basic auth
config.include('twitcher.basicauth')

Expand Down

0 comments on commit 6e7425f

Please sign in to comment.