Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
7de2c6fa
Commit
7de2c6fa
authored
Jan 20, 2012
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update settings to remove server split between askbot and courseware
parent
4bc58c56
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
57 deletions
+55
-57
settings.py
+2
-2
settings_new_askbot.py
+53
-55
No files found.
settings.py
View file @
7de2c6fa
settings_old_askbot
.
py
\ No newline at end of file
settings_new_askbot
.
py
\ No newline at end of file
settings_new_askbot.py
View file @
7de2c6fa
CSRF_COOKIE_DOMAIN
=
'127.0.0.1'
import
os
import
sys
import
djcelery
import
askbot
import
site
if
'COURSEWARE_ENABLED'
not
in
locals
():
COURSEWARE_ENABLED
=
True
if
'ASKBOT_ENABLED'
not
in
locals
():
ASKBOT_ENABLED
=
True
if
not
COURSEWARE_ENABLED
:
ASKBOT_ENABLED
=
False
COURSEWARE_ENABLED
=
True
ASKBOT_ENABLED
=
True
CSRF_COOKIE_DOMAIN
=
'127.0.0.1'
# Defaults to be overridden
EMAIL_BACKEND
=
'django.core.mail.backends.console.EmailBackend'
...
...
@@ -59,7 +63,6 @@ STATIC_URL = '/static/'
# Examples: "http://foo.com/static/admin/", "/static/admin/".
ADMIN_MEDIA_PREFIX
=
'/static/admin/'
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS
=
(
...
...
@@ -140,7 +143,12 @@ TRACK_MAX_EVENT = 1000
# Maximum length of log file before starting a new one.
MAXLOG
=
500
execfile
(
"../settings.py"
)
# Our parent dir (mitx_all) is the BASE_DIR
BASE_DIR
=
os
.
path
.
abspath
(
os
.
path
.
join
(
__file__
,
".."
,
".."
))
# Make sure we execute correctly regardless of where we're called from
execfile
(
os
.
path
.
join
(
BASE_DIR
,
"settings.py"
))
if
PERFSTATS
:
MIDDLEWARE_CLASSES
=
(
'perfstats.middleware.ProfileMiddleware'
,)
+
MIDDLEWARE_CLASSES
...
...
@@ -167,31 +175,24 @@ if 'STATICFILES_DIRS' not in locals():
BASE_DIR
+
'/static'
,
)
if
ASKBOT_ENABLED
:
import
sys
if
'ASKBOT_EXTRA_SKINS_DIR'
not
in
locals
():
if
'ASKBOT_EXTRA_SKINS_DIR'
not
in
locals
():
ASKBOT_EXTRA_SKINS_DIR
=
BASE_DIR
+
'/askbot-devel/askbot/skins'
if
'ASKBOT_DIR'
not
in
locals
():
if
'ASKBOT_DIR'
not
in
locals
():
ASKBOT_DIR
=
BASE_DIR
+
'/askbot-devel'
STATICFILES_DIRS
=
STATICFILES_DIRS
+
(
ASKBOT_DIR
+
'/askbot/skins'
,)
STATICFILES_DIRS
=
STATICFILES_DIRS
+
(
ASKBOT_DIR
+
'/askbot/skins'
,)
# Needed for Askbot
# Critical TODO: Move to S3
MEDIA_URL
=
'/discussion/upfiles/'
MEDIA_ROOT
=
ASKBOT_DIR
+
'/askbot/upfiles'
# Needed for Askbot
# Critical TODO: Move to S3
MEDIA_URL
=
'/discussion/upfiles/'
MEDIA_ROOT
=
ASKBOT_DIR
+
'/askbot/upfiles'
print
"!!!"
,
ASKBOT_DIR
sys
.
path
.
append
(
ASKBOT_DIR
)
import
os
import
askbot
ASKBOT_ROOT
=
os
.
path
.
dirname
(
askbot
.
__file__
)
import
site
site
.
addsitedir
(
os
.
path
.
join
(
os
.
path
.
dirname
(
askbot
.
__file__
),
'deps'
))
TEMPLATE_LOADERS
=
TEMPLATE_LOADERS
+
(
'askbot.skins.loaders.filesystem_load_template_source'
,)
ASKBOT_ROOT
=
os
.
path
.
dirname
(
askbot
.
__file__
)
MIDDLEWARE_CLASSES
=
MIDDLEWARE_CLASSES
+
(
site
.
addsitedir
(
os
.
path
.
join
(
os
.
path
.
dirname
(
askbot
.
__file__
),
'deps'
))
TEMPLATE_LOADERS
=
TEMPLATE_LOADERS
+
(
'askbot.skins.loaders.filesystem_load_template_source'
,)
MIDDLEWARE_CLASSES
=
MIDDLEWARE_CLASSES
+
(
'askbot.middleware.anon_user.ConnectToSessionMessagesMiddleware'
,
'askbot.middleware.forum_mode.ForumModeMiddleware'
,
'askbot.middleware.cancel.CancelActionMiddleware'
,
...
...
@@ -199,33 +200,31 @@ if ASKBOT_ENABLED:
#'debug_toolbar.middleware.DebugToolbarMiddleware',
'askbot.middleware.view_log.ViewLogMiddleware'
,
'askbot.middleware.spaceless.SpacelessMiddleware'
,
)
'askbot.middleware.pagesize.QuestionsPageSizeMiddleware'
,
)
FILE_UPLOAD_TEMP_DIR
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'tmp'
)
.
replace
(
'
\\
'
,
'/'
)
FILE_UPLOAD_HANDLERS
=
(
FILE_UPLOAD_TEMP_DIR
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'tmp'
)
.
replace
(
'
\\
'
,
'/'
)
FILE_UPLOAD_HANDLERS
=
(
'django.core.files.uploadhandler.MemoryFileUploadHandler'
,
'django.core.files.uploadhandler.TemporaryFileUploadHandler'
,
)
ASKBOT_ALLOWED_UPLOAD_FILE_TYPES
=
(
'.jpg'
,
'.jpeg'
,
'.gif'
,
'.bmp'
,
'.png'
,
'.tiff'
)
ASKBOT_MAX_UPLOAD_FILE_SIZE
=
1024
*
1024
#result in bytes
)
ASKBOT_ALLOWED_UPLOAD_FILE_TYPES
=
(
'.jpg'
,
'.jpeg'
,
'.gif'
,
'.bmp'
,
'.png'
,
'.tiff'
)
ASKBOT_MAX_UPLOAD_FILE_SIZE
=
1024
*
1024
#result in bytes
# ASKBOT_FILE_UPLOAD_DIR = os.path.join(os.path.dirname(__file__), 'askbot', 'upfiles')
DEFAULT_FILE_STORAGE
=
'django.core.files.storage.FileSystemStorage'
DEFAULT_FILE_STORAGE
=
'django.core.files.storage.FileSystemStorage'
PROJECT_ROOT
=
os
.
path
.
dirname
(
__file__
)
PROJECT_ROOT
=
os
.
path
.
dirname
(
__file__
)
TEMPLATE_CONTEXT_PROCESSORS
=
(
TEMPLATE_CONTEXT_PROCESSORS
=
(
'django.core.context_processors.request'
,
'askbot.context.application_settings'
,
#'django.core.context_processors.i18n',
'askbot.user_messages.context_processors.user_messages'
,
#must be before auth
'django.core.context_processors.auth'
,
#this is required for admin
'django.core.context_processors.csrf'
,
#necessary for csrf protection
)
)
INSTALLED_APPS
=
INSTALLED_APPS
+
(
INSTALLED_APPS
=
INSTALLED_APPS
+
(
'django.contrib.sitemaps'
,
'django.contrib.admin'
,
'south'
,
...
...
@@ -237,21 +236,20 @@ if ASKBOT_ENABLED:
'djcelery'
,
'djkombu'
,
'followit'
,
)
)
CACHE_MIDDLEWARE_ANONYMOUS_ONLY
=
True
ASKBOT_URL
=
'discussion/'
LOGIN_REDIRECT_URL
=
'/'
LOGIN_URL
=
'/'
CACHE_MIDDLEWARE_ANONYMOUS_ONLY
=
True
ASKBOT_URL
=
'discussion/'
LOGIN_REDIRECT_URL
=
'/'
LOGIN_URL
=
'/'
# ASKBOT_UPLOADED_FILES_URL = '%s%s' % (ASKBOT_URL, 'upfiles/')
ALLOW_UNICODE_SLUGS
=
False
ASKBOT_USE_STACKEXCHANGE_URLS
=
False
#mimic url scheme of stackexchange
ASKBOT_CSS_DEVEL
=
True
ALLOW_UNICODE_SLUGS
=
False
ASKBOT_USE_STACKEXCHANGE_URLS
=
False
#mimic url scheme of stackexchange
ASKBOT_CSS_DEVEL
=
True
#
Celery Settings
BROKER_TRANSPORT
=
"djkombu.transport.DatabaseTransport"
CELERY_ALWAYS_EAGER
=
True
#
Celery Settings
BROKER_TRANSPORT
=
"djkombu.transport.DatabaseTransport"
CELERY_ALWAYS_EAGER
=
True
import
djcelery
djcelery
.
setup_loader
()
djcelery
.
setup_loader
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment