# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
-TIME_ZONE = 'Europe/Warsaw Poland'
+TIME_ZONE = 'Europe/Warsaw'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django_cas.middleware.CASMiddleware',
- 'django.middleware.doc.XViewMiddleware',
+ 'django.middleware.doc.XViewMiddleware',
'maintenancemode.middleware.MaintenanceModeMiddleware',
# 'debug_toolbar.middleware.DebugToolbarMiddleware' #
)
'django_cas.backends.CASBackend',
)
-ROOT_URLCONF = 'urls'
+ROOT_URLCONF = 'platforma.urls'
TEMPLATE_DIRS = (
PROJECT_ROOT + '/templates',
#
# Central Auth System
#
-## Set this to where the CAS server lives
+## Set this to where the CAS server lives
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_ADMIN_PREFIX = "/admin/"
CAS_LOGOUT_COMPLETELY = True
'detail': {
'source_filenames': (
'css/master.css',
- 'css/gallery.css',
- 'css/history.css',
+ 'css/gallery.css',
+ 'css/history.css',
'css/summary.css',
- 'css/html.css',
+ 'css/html.css',
'css/jquery.autocomplete.css',
'css/dialogs.css',
),
},
'listing': {
'source_filenames': (
- 'css/filelist.css',
- ),
+ 'css/filelist.css',
+ ),
'output_filename': 'compressed/listing_styles_?.css',
}
}
-
+
COMPRESS_JS = {
- # everything except codemirror and jquery (which we take from google)
+ # everything except codemirror
'detail': {
'source_filenames': (
- #'js/jquery-1.4.2.min.js',
- 'js/jquery.autocomplete.js',
+ 'js/jquery-1.4.2.min.js',
+ 'js/jquery.autocomplete.js',
'js/jquery.blockui.js',
'js/jquery.elastic.js',
'js/button_scripts.js',
'js/slugify.js',
-
+
# wiki scripts
'js/wiki/wikiapi.js',
'js/wiki/base.js',
'js/wiki/xslt.js',
+
+ # dialogs
+ 'js/wiki/save_dialog.js',
+
+ # views
'js/wiki/history_view.js',
'js/wiki/summary_view.js',
'js/wiki/source_editor.js',
'js/wiki/wysiwyg_editor.js',
- 'js/wiki/scan_gallery.js',
+ 'js/wiki/scan_gallery.js',
+ 'js/wiki/diff_view.js',
+
+ # bootstrap
'js/wiki/main.js',
- ),
+ ),
'output_filename': 'compressed/detail_scripts_?.js',
},
'listing': {
'source_filenames': (
- # 'js/jquery-1.4.2.min.js',
- 'js/slugify.js',
- ),
+ 'js/jquery-1.4.2.min.js',
+ 'js/slugify.js',
+ ),
'output_filename': 'compressed/listing_scripts_?.js',
}
}
-
+
COMPRESS = True
COMPRESS_CSS_FILTERS = None
COMPRESS_JS_FILTERS = None
'django.contrib.admin',
'django.contrib.admindocs',
- 'django_nose',
- 'debug_toolbar',
-
'compress',
'south',
'sorl.thumbnail',
'filebrowser',
- 'wiki',
+ 'wiki',
'toolbar',
)
'--cover-package=' + ','.join(TEST_MODULES),
'-d',
'--with-coverage',
- '--with-doctest'
+ '--with-doctest',
)
pass
try:
- LOGGING_CONFIG_FILE
+ LOGGING_CONFIG_FILE
except NameError:
- LOGGING_CONFIG_FILE = os.path.join(PROJECT_ROOT, 'config',
+ LOGGING_CONFIG_FILE = os.path.join(PROJECT_ROOT, 'config',
('logging.cfg' if not DEBUG else 'logging.cfg.dev'))
try:
import logging
import logging.config
-
- logging.config.fileConfig(LOGGING_CONFIG_FILE)
+
+ logging.config.fileConfig(LOGGING_CONFIG_FILE)
except ImportError, exc:
- raise
\ No newline at end of file
+ raise