1721ba9c4a
Implements blueprint scaffolding. Using custom management commands you can now create the majority of the boilerplate code for a new dashboard or panel from a set of basic templates with a single command. See the docs for more info. Additionally, in support of the new commands (and inherent codified directory structure) there's a new template loader included which can load templates from "templates" directories in any registered panel. Change-Id: I1df5eb152cb18694dc89d562799c8d3e8950ca6f
137 lines
3.9 KiB
Python
137 lines
3.9 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright 2012 Nebula, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import logging
|
|
import os
|
|
import sys
|
|
|
|
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
if ROOT_PATH not in sys.path:
|
|
sys.path.append(ROOT_PATH)
|
|
|
|
DEBUG = False
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
SITE_ID = 1
|
|
SITE_BRANDING = 'OpenStack'
|
|
SITE_NAME = 'openstack'
|
|
ENABLE_VNC = True
|
|
|
|
LOGIN_URL = '/auth/login'
|
|
LOGIN_REDIRECT_URL = '/'
|
|
|
|
MEDIA_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'media'))
|
|
MEDIA_URL = '/media/'
|
|
STATIC_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'static'))
|
|
STATIC_URL = '/static/'
|
|
ADMIN_MEDIA_PREFIX = '/static/admin/'
|
|
|
|
CREDENTIAL_AUTHORIZATION_DAYS = '5'
|
|
|
|
ROOT_URLCONF = 'openstack_dashboard.urls'
|
|
|
|
HORIZON_CONFIG = {
|
|
'dashboards': ('nova', 'syspanel', 'settings',),
|
|
'default_dashboard': 'nova',
|
|
'user_home': 'openstack_dashboard.views.user_home',
|
|
'ajax_queue_limit': 10
|
|
}
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'openstack_dashboard.middleware.DashboardLogUnhandledExceptionsMiddleware',
|
|
'horizon.middleware.HorizonMiddleware',
|
|
'django.middleware.doc.XViewMiddleware',
|
|
'django.middleware.locale.LocaleMiddleware',
|
|
)
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
'django.core.context_processors.debug',
|
|
'django.core.context_processors.i18n',
|
|
'django.core.context_processors.request',
|
|
'django.core.context_processors.media',
|
|
'django.core.context_processors.static',
|
|
'django.contrib.messages.context_processors.messages',
|
|
'horizon.context_processors.horizon',
|
|
)
|
|
|
|
TEMPLATE_LOADERS = (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader',
|
|
'horizon.loaders.TemplateLoader'
|
|
)
|
|
|
|
TEMPLATE_DIRS = (
|
|
os.path.join(ROOT_PATH, 'templates'),
|
|
)
|
|
|
|
STATICFILES_DIRS = (
|
|
os.path.join(ROOT_PATH, 'static'),
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
'openstack_dashboard',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'horizon',
|
|
'horizon.dashboards.nova',
|
|
'horizon.dashboards.syspanel',
|
|
'horizon.dashboards.settings',
|
|
)
|
|
|
|
AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',)
|
|
MESSAGE_STORAGE = 'django.contrib.messages.storage.cookie.CookieStorage'
|
|
|
|
SESSION_ENGINE = 'django.contrib.sessions.backends.signed_cookies'
|
|
SESSION_COOKIE_HTTPONLY = True
|
|
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
|
|
SESSION_COOKIE_SECURE = False
|
|
|
|
TIME_ZONE = None
|
|
gettext_noop = lambda s: s
|
|
LANGUAGES = (
|
|
('en', gettext_noop('English')),
|
|
('it', gettext_noop('Italiano')),
|
|
('es', gettext_noop('Spanish')),
|
|
('fr', gettext_noop('French')),
|
|
('ja', gettext_noop('Japanese')),
|
|
('pt', gettext_noop('Portuguese')),
|
|
('pl', gettext_noop('Polish')),
|
|
('zh-cn', gettext_noop('Simplified Chinese')),
|
|
('zh-tw', gettext_noop('Traditional Chinese')),
|
|
)
|
|
LANGUAGE_CODE = 'en'
|
|
USE_I18N = True
|
|
|
|
OPENSTACK_KEYSTONE_DEFAULT_ROLE = 'Member'
|
|
|
|
try:
|
|
from local.local_settings import *
|
|
except ImportError:
|
|
logging.warning("No local_settings file found.")
|
|
|
|
if DEBUG:
|
|
logging.basicConfig(level=logging.DEBUG)
|