} # Load the pluggable dashboard settings from openstack_dashboard.utils import settings dashboard_module_names = [ 'openstack_dashboard.enabled', 'openstack_dashboard.local.enabled', 'neutron_lbaas_dashboard.enabled', ] dashboard_modules = [] # All dashboards must be enabled for the namespace to get registered, which is # needed by the unit tests. for module_name in dashboard_module_names: module = importlib.import_module(module_name) dashboard_modules.append(module) for submodule in six.itervalues(settings.import_submodules(module)): if getattr(submodule, 'DISABLED', None): delattr(submodule, 'DISABLED') INSTALLED_APPS = list(INSTALLED_APPS) # Make sure it's mutable settings.update_dashboards(dashboard_modules, HORIZON_CONFIG, INSTALLED_APPS) # Set to True to allow users to upload images to glance via Horizon server. # When enabled, a file form field will appear on the create image form. # See documentation for deployment considerations. HORIZON_IMAGES_ALLOW_UPLOAD = True AVAILABLE_REGIONS = [ ('http://localhost/identity', 'local'), ('http://remote/identity', 'remote'), ]
'js_files': [], } # Load the pluggable dashboard settings from openstack_dashboard.utils import settings dashboard_module_names = [ 'openstack_dashboard.enabled', 'openstack_dashboard.local.enabled', ] dashboard_modules = [] # All dashboards must be enabled for the namespace to get registered, which is # needed by the unit tests. for module_name in dashboard_module_names: module = importlib.import_module(module_name) dashboard_modules.append(module) for submodule in six.itervalues(settings.import_submodules(module)): if getattr(submodule, 'DISABLED', None): delattr(submodule, 'DISABLED') INSTALLED_APPS = list(INSTALLED_APPS) # Make sure it's mutable settings.update_dashboards(dashboard_modules, HORIZON_CONFIG, INSTALLED_APPS) # Set to True to allow users to upload images to glance via Horizon server. # When enabled, a file form field will appear on the create image form. # See documentation for deployment considerations. HORIZON_IMAGES_ALLOW_UPLOAD = True AVAILABLE_REGIONS = [ ('http://localhost:5000/v2.0', 'local'), ('http://remote:5000/v2.0', 'remote'), ]