DEBUG = True
TEMPLATE_DEBUG = DEBUG
DEFAULT_CHARSET = 'utf-8'

ADMINS = (
     ('$admin_name', '$admin_email'),
)

MANAGERS = ADMINS

# Ximpia Config
XIMPIA_BACKEND_HOST = 'localhost:8000'
XIMPIA_SCHEME = 'http'
XIMPIA_HOME = XIMPIA_SCHEME + '://' + XIMPIA_BACKEND_HOST
XIMPIA_WEBMASTER_EMAIL = '"Webmaster" <$admin_email>'
XIMPIA_MAIL_HOST = '127.0.0.1:8000'

XIMPIA_DEFAULT_APP = '$app_name'
XiMPIA_DEFAULT_VIEW = ''

# <CACHE>
CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'default'
    }
}
# </CACHE>

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# On Unix systems, a value of None will cause Django to use the same
# timezone as the operating system.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = '$time_zone'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = '$language_code'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True

# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale
USE_L10N = True

# Grappelli
GRAPPELLI_INDEX_DASHBOARD = '$project_name.dashboard.CustomIndexDashboard'
GRAPPELLI_ADMIN_TITLE = '$project_title'

# FileBrowser
FILEBROWSER_MEDIA_URL = '/static/media/'
FILEBROWSER_DIRECTORY = ''
FILEBROWSER_SHOW_PLACEHOLDER = True

# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = '/static/media/'

# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".
ADMIN_MEDIA_PREFIX = '/media/'

# <STATIC>
STATIC_URL = '/static/'
STATICFILES_FINDERS = (
                       "django.contrib.staticfiles.finders.FileSystemFinder",
                       "django.contrib.staticfiles.finders.AppDirectoriesFinder"
)
# </STATIC>

# <SESSION>
SESSION_COOKIE_DOMAIN = ''
SESSION_COOKIE_AGE = 5200000
SESSION_COOKIE_NAME = 'sessionid'
# </SESSION>

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    'django.template.loaders.eggs.Loader',
)

AUTH_PROFILE_MODULE = 'ximpia.xpsite.UserProfile'
AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
    'ximpia.xpcore.backends.auth.SocialNetBackend'
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.middleware.transaction.TransactionMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.gzip.GZipMiddleware',
    'django.middleware.locale.LocaleMiddleware',    
)

ROOT_URLCONF = '$project_name.urls'

# Make this unique, and don't share it with anybody.
SECRET_KEY = '$secret_key'

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.core.context_processors.debug',
    'django.core.context_processors.i18n',
    'django.core.context_processors.media',
    'django.core.context_processors.static',
    "django.core.context_processors.request",
    'django.contrib.auth.context_processors.auth',
    'django.contrib.messages.context_processors.messages',
)

INSTALLED_APPS = (
    'grappelli.dashboard',
    'grappelli',
    'filebrowser',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.admin',
    'django.contrib.admindocs',
    'django.contrib.humanize',
    'django.contrib.staticfiles',
    'south',
    'gunicorn',
    'ximpia.xpcore',
    'ximpia.xpsite',
    # <APPS>
    '$app_name',
    # </APPS>
)

try:
    from settings_local import *
except ImportError:
    pass
