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
28bc63f1
Commit
28bc63f1
authored
Jan 23, 2012
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added logging setup for settings_new_askbot.py
parent
dda92908
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
315 additions
and
3 deletions
+315
-3
courseware/views.py
+1
-1
settings_new_askbot.py
+0
-2
settings_new_askbot.py
+314
-0
No files found.
courseware/views.py
View file @
28bc63f1
...
@@ -35,7 +35,7 @@ def profile(request):
...
@@ -35,7 +35,7 @@ def profile(request):
log
.
info
(
"Profile called"
)
log
.
info
(
"Profile called"
)
logging
.
info
(
"Now the root"
)
logging
.
info
(
"Now the root"
)
logging
.
getLogger
(
"tracking"
)
.
info
(
"
something
"
)
logging
.
getLogger
(
"tracking"
)
.
info
(
"
this should be unformatted
"
)
dom
=
content_parser
.
course_file
(
request
.
user
)
dom
=
content_parser
.
course_file
(
request
.
user
)
hw
=
[]
hw
=
[]
...
...
settings_new_askbot.py
deleted
120000 → 0
View file @
dda92908
settings_old_askbot
.
py
\ No newline at end of file
settings_new_askbot.py
0 → 100644
View file @
28bc63f1
import
os
import
sys
import
djcelery
# Our parent dir (mitx_all) is the BASE_DIR
BASE_DIR
=
os
.
path
.
abspath
(
os
.
path
.
join
(
__file__
,
".."
,
".."
))
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'
SITE_NAME
=
"localhost:8000"
DEFAULT_FROM_EMAIL
=
'registration@mitx.mit.edu'
DEFAULT_FEEDBACK_EMAIL
=
'feedback@mitx.mit.edu'
GENERATE_RANDOM_USER_CREDENTIALS
=
False
WIKI_REQUIRE_LOGIN_EDIT
=
True
WIKI_REQUIRE_LOGIN_VIEW
=
True
PERFSTATS
=
False
HTTPS
=
'on'
MEDIA_URL
=
''
MEDIA_ROOT
=
''
DEBUG
=
True
TEMPLATE_DEBUG
=
DEBUG
ADMINS
=
(
(
'Piotr Mitros'
,
'pmitros@csail.mit.edu'
),
)
MANAGERS
=
ADMINS
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
TIME_ZONE
=
'America/New_York'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE
=
'en'
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
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING
=
{
'version'
:
1
,
'disable_existing_loggers'
:
True
,
'formatters'
:
{
'standard'
:
{
'format'
:
'
%(levelname)
s
%(asctime)
s PID:
%(process)
d
%(name)
s
%(filename)
s:
%(lineno)
d
%(message)
s'
,
},
'raw'
:
{
'format'
:
'
%(message)
s'
,
}
},
'handlers'
:
{
'console'
:
{
'level'
:
'DEBUG'
if
DEBUG
else
'INFO'
,
'class'
:
'logging.StreamHandler'
,
'formatter'
:
'standard'
,
'stream'
:
sys
.
stdout
,
},
'console_err'
:
{
'level'
:
'ERROR'
,
'class'
:
'logging.StreamHandler'
,
'formatter'
:
'standard'
,
'stream'
:
sys
.
stderr
,
},
# 'app' : {
# 'level' : 'INFO',
# 'class' : 'logging.handlers.TimedRotatingFileHandler',
# 'formatter' : 'standard',
# 'filename' : '/tmp/mitx.log', # temporary location for proof of concept
# 'when' : 'midnight',
# 'utc' : True,
# 'encoding' : 'utf-8',
# },
# We should actually use this for tracking:
# http://pypi.python.org/pypi/ConcurrentLogHandler/0.8.2
'tracking'
:
{
'level'
:
'INFO'
,
'class'
:
'logging.handlers.TimedRotatingFileHandler'
,
'formatter'
:
'raw'
,
'filename'
:
BASE_DIR
+
'/track_dir/tracking.log'
,
'when'
:
'midnight'
,
'utc'
:
True
,
'encoding'
:
'utf-8'
,
},
'mail_admins'
:
{
'level'
:
'ERROR'
,
'class'
:
'django.utils.log.AdminEmailHandler'
,
},
},
'loggers'
:
{
'django.request'
:
{
'handlers'
:
[
'mail_admins'
,
'console'
,
'console_err'
],
'level'
:
'INFO'
,
'propagate'
:
True
,
},
'tracking'
:
{
'handlers'
:
[
'tracking'
],
'level'
:
'DEBUG'
,
'propagate'
:
False
,
},
'root'
:
{
'handlers'
:
[
'console'
,
'console_err'
],
'level'
:
'DEBUG'
,
'propagate'
:
False
},
'mitx'
:
{
'handlers'
:
[
'console'
,
'console_err'
],
'level'
:
'DEBUG'
,
'propagate'
:
False
},
}
}
STATIC_URL
=
'/static/'
# URL prefix for admin static files -- CSS, JavaScript and images.
# Make sure to use a trailing slash.
# 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
=
(
'django.contrib.staticfiles.finders.FileSystemFinder'
,
'django.contrib.staticfiles.finders.AppDirectoriesFinder'
,
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
# 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',
)
MIDDLEWARE_CLASSES
=
(
'django.middleware.common.CommonMiddleware'
,
'django.contrib.sessions.middleware.SessionMiddleware'
,
'django.middleware.csrf.CsrfViewMiddleware'
,
'django.contrib.auth.middleware.AuthenticationMiddleware'
,
'django.contrib.messages.middleware.MessageMiddleware'
,
'track.middleware.TrackMiddleware'
,
'djangomako.middleware.MakoMiddleware'
,
#'debug_toolbar.middleware.DebugToolbarMiddleware',
)
ROOT_URLCONF
=
'mitx.urls'
INSTALLED_APPS
=
(
'django.contrib.auth'
,
'django.contrib.contenttypes'
,
'django.contrib.sessions'
,
'django.contrib.sites'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'courseware'
,
'auth'
,
'django.contrib.humanize'
,
'static_template_view'
,
'staticbook'
,
'simplewiki'
,
'track'
,
'circuit'
,
'perfstats'
,
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)
#TRACK_DIR = None
DEBUG_TRACK_LOG
=
False
# Maximum length of a tracking string. We don't want e.g. a file upload in our log
TRACK_MAX_EVENT
=
1000
# Maximum length of log file before starting a new one.
MAXLOG
=
500
# 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
if
'TRACK_DIR'
not
in
locals
():
TRACK_DIR
=
BASE_DIR
+
'/track_dir/'
if
'STATIC_ROOT'
not
in
locals
():
STATIC_ROOT
=
BASE_DIR
+
'/staticroot/'
if
'DATA_DIR'
not
in
locals
():
DATA_DIR
=
BASE_DIR
+
'/data/'
if
'TEXTBOOK_DIR'
not
in
locals
():
TEXTBOOK_DIR
=
BASE_DIR
+
'/textbook/'
if
'TEMPLATE_DIRS'
not
in
locals
():
TEMPLATE_DIRS
=
(
BASE_DIR
+
'/templates/'
,
DATA_DIR
+
'/templates'
,
TEXTBOOK_DIR
,
)
if
'STATICFILES_DIRS'
not
in
locals
():
STATICFILES_DIRS
=
(
BASE_DIR
+
'/3rdParty/static'
,
BASE_DIR
+
'/static'
,
)
if
'ASKBOT_EXTRA_SKINS_DIR'
not
in
locals
():
ASKBOT_EXTRA_SKINS_DIR
=
BASE_DIR
+
'/askbot-devel/askbot/skins'
if
'ASKBOT_DIR'
not
in
locals
():
ASKBOT_DIR
=
BASE_DIR
+
'/askbot-devel'
sys
.
path
.
append
(
ASKBOT_DIR
)
import
askbot
import
site
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'
ASKBOT_ROOT
=
os
.
path
.
dirname
(
askbot
.
__file__
)
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'
,
'django.middleware.transaction.TransactionMiddleware'
,
#'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
=
(
'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_FILE_UPLOAD_DIR = os.path.join(os.path.dirname(__file__), 'askbot', 'upfiles')
DEFAULT_FILE_STORAGE
=
'django.core.files.storage.FileSystemStorage'
PROJECT_ROOT
=
os
.
path
.
dirname
(
__file__
)
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
+
(
'django.contrib.sitemaps'
,
'django.contrib.admin'
,
'south'
,
'askbot.deps.livesettings'
,
'askbot'
,
#'keyedcache', # TODO: Main askbot tree has this installed, but we get intermittent errors if we include it.
'robots'
,
'django_countries'
,
'djcelery'
,
'djkombu'
,
'followit'
,
)
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
# Celery Settings
BROKER_TRANSPORT
=
"djkombu.transport.DatabaseTransport"
CELERY_ALWAYS_EAGER
=
True
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