""" Django settings for shelfzilla project. For more information on this file, see https://docs.djangoproject.com/en/1.6/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.6/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) _ = lambda x: x # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '0123456789' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True TEMPLATE_DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( 'longerusername', # Admin 'suit', 'django.contrib.admin', 'solo', # Django 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', # Files "filer", "mptt", "easy_thumbnails", # DDBB 'reversion', 'south', 'import_export', # Staticfiles "compressor", # Apps 'shelfzilla.apps._admin', 'shelfzilla.apps.config', 'shelfzilla.apps.users', 'shelfzilla.apps.homepage', 'shelfzilla.apps.landing', 'shelfzilla.apps.manga', 'shelfzilla.apps.pjax', ) TEMPLATE_CONTEXT_PROCESSORS = ( 'django.contrib.auth.context_processors.auth', 'django.core.context_processors.debug', 'django.core.context_processors.i18n', 'django.core.context_processors.media', 'django.core.context_processors.static', 'django.core.context_processors.tz', 'django.contrib.messages.context_processors.messages', 'django.core.context_processors.request', 'shelfzilla.apps.pjax.context_processors.pjax', 'shelfzilla.apps.manga.context_processors.user_have_volumes', 'shelfzilla.apps.manga.context_processors.user_wishlisted_volumes', 'shelfzilla.apps.users.context_processors.auth', 'shelfzilla.apps.users.context_processors.user_is_staff', 'shelfzilla.apps.users.context_processors.user_configuration', ) MIDDLEWARE_CLASSES = ( 'reversion.middleware.RevisionMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.locale.LocaleMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'shelfzilla.middleware.BetaMiddleware', ) TEMPLATE_DIRS = ( os.path.join(BASE_DIR, "themes", "_base"), os.path.join(BASE_DIR, "themes", "bootflat", "templates"), ) ROOT_URLCONF = 'shelfzilla.urls' WSGI_APPLICATION = 'shelfzilla.wsgi.application' # Database # https://docs.djangoproject.com/en/1.6/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Internationalization # https://docs.djangoproject.com/en/1.6/topics/i18n/ LANGUAGES = ( ('es', _('Spanish')), ) LANGUAGE_CODE = 'es' LOCALE_PATHS = ( os.path.join(BASE_DIR, 'locale'), ) TIME_ZONE = 'Europe/Madrid' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ STATIC_ROOT = os.path.join(BASE_DIR, "static") STATIC_URL = "/static/" MEDIA_ROOT = os.path.join(BASE_DIR, "media") MEDIA_URL = '/media/' # Additional locations of static files STATICFILES_DIRS = ( os.path.join(BASE_DIR, "themes", "bootflat", "static"), ) STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'compressor.finders.CompressorFinder', ) COMPRESS_PRECOMPILERS = ( ('text/less', 'lessc {infile} {outfile}'), ('text/coffeescript', 'coffee --compile --stdio --no-header'), ) # Max username length (longerusername) MAX_USERNAME_LENGTH = 75 # Beta settings BETA_ACCESS_GROUP_ID = 1 BETA_ACCESS_ALLOW_URLS = ( '/landing/', '/login/', '/messages/', ) # filer THUMBNAIL_PROCESSORS = ( 'easy_thumbnails.processors.colorspace', 'easy_thumbnails.processors.autocrop', #'easy_thumbnails.processors.scale_and_crop', 'filer.thumbnail_processors.scale_and_crop_with_subject_location', 'easy_thumbnails.processors.filters', ) COVER_FOLDER_PK = 1 COVER_FOLDER_OWNER_PK = 1 FILER_STORAGES = { 'public': { 'main': { 'ENGINE': 'django.core.files.storage.FileSystemStorage', 'OPTIONS': { 'location': os.path.abspath( os.path.join(MEDIA_ROOT, 'filer/public/')), 'base_url': '/files/', }, 'UPLOAD_TO': 'shelfzilla.utils.filer_generate_randomized', 'UPLOAD_TO_PREFIX': '', }, 'thumbnails': { 'ENGINE': 'django.core.files.storage.FileSystemStorage', 'OPTIONS': { 'location': os.path.abspath( os.path.join(MEDIA_ROOT, 'filer/public/')), 'base_url': '/files/', }, 'THUMBNAIL_OPTIONS': { 'base_dir': 'thumbnails', }, 'UPLOAD_TO_PREFIX': '', }, }, 'private': { 'main': { 'ENGINE': 'filer.storage.PrivateFileSystemStorage', 'OPTIONS': { 'location': os.path.abspath( os.path.join(MEDIA_ROOT, 'filer/private')), 'base_url': '/smedia/private/', }, 'UPLOAD_TO': 'shelfzilla.utils.filer_generate_randomized', 'UPLOAD_TO_PREFIX': '', }, 'thumbnails': { 'ENGINE': 'filer.storage.PrivateFileSystemStorage', 'OPTIONS': { 'location': os.path.abspath( os.path.join(MEDIA_ROOT, 'filer/private_thumbnails')), 'base_url': '/smedia/private_thumbnails/', }, 'THUMBNAIL_OPTIONS': {}, }, }, } SOUTH_MIGRATION_MODULES = { 'easy_thumbnails': 'easy_thumbnails.south_migrations', } # # ADMIN # SUIT_CONFIG = { 'ADMIN_NAME': 'Shelfzilla', 'SEARCH_URL': '', 'MENU': ( { 'app': 'auth', 'label': 'Authorization', 'icon': 'icon-lock', 'models': ('user', 'group') }, { 'app': 'config', 'label': 'Settings', 'icon': 'icon-cog', }, { 'app': 'manga', 'label': 'Manga', 'icon': 'icon-book', }, { 'label': 'Files', 'icon': 'icon-file', 'app': 'filer', }, ), }