Commit 51318181 by Julia Hansbrough

Merge pull request #2597 from edx/release

Release
parents b980ed37 3a7b265c
...@@ -47,7 +47,7 @@ __all__ = [ ...@@ -47,7 +47,7 @@ __all__ = [
'choose_transcripts', 'choose_transcripts',
'replace_transcripts', 'replace_transcripts',
'rename_transcripts', 'rename_transcripts',
'save_transcripts' 'save_transcripts',
] ]
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
......
...@@ -251,7 +251,7 @@ STATICFILES_DIRS = [ ...@@ -251,7 +251,7 @@ STATICFILES_DIRS = [
LMS_ROOT / "static", LMS_ROOT / "static",
# This is how you would use the textbook images locally # This is how you would use the textbook images locally
# ("book", ENV_ROOT / "book_images") # ("book", ENV_ROOT / "book_images"),
] ]
# Locale/Internationalization # Locale/Internationalization
......
...@@ -28,7 +28,7 @@ LOGFIELDS = [ ...@@ -28,7 +28,7 @@ LOGFIELDS = [
'agent', 'agent',
'page', 'page',
'time', 'time',
'host' 'host',
] ]
......
...@@ -54,7 +54,7 @@ html_problem_semantics = [ ...@@ -54,7 +54,7 @@ html_problem_semantics = [
"script", "script",
"hintgroup", "hintgroup",
"openendedparam", "openendedparam",
"openendedrubric" "openendedrubric",
] ]
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
......
...@@ -3,7 +3,7 @@ import logging ...@@ -3,7 +3,7 @@ import logging
# Silence noisy loggers # Silence noisy loggers
LOG_OVERRIDES = [ LOG_OVERRIDES = [
('requests.packages.urllib3.connectionpool', logging.ERROR), ('requests.packages.urllib3.connectionpool', logging.ERROR),
('django.db.backends', logging.ERROR) ('django.db.backends', logging.ERROR),
] ]
for log_name, log_level in LOG_OVERRIDES: for log_name, log_level in LOG_OVERRIDES:
......
...@@ -9,10 +9,10 @@ from django.utils.translation import ugettext as _ ...@@ -9,10 +9,10 @@ from django.utils.translation import ugettext as _
HTML5_SOURCES = [ HTML5_SOURCES = [
'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp4', 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp4',
'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.webm', 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.webm',
'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.ogv' 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.ogv',
] ]
HTML5_SOURCES_INCORRECT = [ HTML5_SOURCES_INCORRECT = [
'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp99' 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp99',
] ]
VIDEO_BUTTONS = { VIDEO_BUTTONS = {
......
...@@ -756,8 +756,8 @@ main_vendor_js = [ ...@@ -756,8 +756,8 @@ main_vendor_js = [
'js/vendor/ova/jquery-Watch.js', 'js/vendor/ova/jquery-Watch.js',
'js/vendor/ova/ova.js', 'js/vendor/ova/ova.js',
'js/vendor/ova/catch/js/catch.js', 'js/vendor/ova/catch/js/catch.js',
'js/vendor/ova/catch/js/handlebars-1.1.2.js' 'js/vendor/ova/catch/js/handlebars-1.1.2.js',
'js/vendor/URI.min.js' 'js/vendor/URI.min.js',
] ]
discussion_js = sorted(rooted_glob(COMMON_ROOT / 'static', 'coffee/src/discussion/**/*.js')) discussion_js = sorted(rooted_glob(COMMON_ROOT / 'static', 'coffee/src/discussion/**/*.js'))
......
...@@ -34,7 +34,7 @@ STATICFILES_DIRS = [ ...@@ -34,7 +34,7 @@ STATICFILES_DIRS = [
("subs", DATA_DIR / "subs"), ("subs", DATA_DIR / "subs"),
# This is how you would use the textbook images locally # This is how you would use the textbook images locally
# ("book", ENV_ROOT / "book_images") # ("book", ENV_ROOT / "book_images"),
] ]
MAKO_TEMPLATES['course'] = [DATA_DIR, EDX4EDX_ROOT] MAKO_TEMPLATES['course'] = [DATA_DIR, EDX4EDX_ROOT]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment