From 59d0c408f048eaf3c81fbb245c96ef140bd56d9f Mon Sep 17 00:00:00 2001 From: John Jarvis Date: Wed, 27 Jun 2012 13:12:55 -0400 Subject: [PATCH 1/2] collect static resources is now handled by the gunicorn upstart script --- collect_static_resources | 3 --- rakefile | 3 --- 2 files changed, 6 deletions(-) delete mode 100755 collect_static_resources diff --git a/collect_static_resources b/collect_static_resources deleted file mode 100755 index 34a98715ab..0000000000 --- a/collect_static_resources +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/bash - -cd $(dirname $0) && django-admin.py collectstatic --noinput --settings=envs.aws --pythonpath=. diff --git a/rakefile b/rakefile index a3d742cef1..061442cbba 100644 --- a/rakefile +++ b/rakefile @@ -115,15 +115,12 @@ task :package do set -x chown -R makeitso:makeitso #{INSTALL_DIR_PATH} - chmod +x #{INSTALL_DIR_PATH}/collect_static_resources service gunicorn stop || echo "Unable to stop gunicorn. Continuing" rm -f #{LINK_PATH} ln -s #{INSTALL_DIR_PATH} #{LINK_PATH} chown makeitso:makeitso #{LINK_PATH} - /opt/wwc/mitx/collect_static_resources - # Delete mako temp files rm -rf /tmp/tmp*mako From 03b6bd044ee793ee55ae93c6c7f1c429f12120d9 Mon Sep 17 00:00:00 2001 From: John Jarvis Date: Wed, 27 Jun 2012 18:06:29 -0400 Subject: [PATCH 2/2] setting quickedit to true --- lms/envs/edx4edx_aws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/edx4edx_aws.py b/lms/envs/edx4edx_aws.py index 85c3787e29..c9de1693bc 100644 --- a/lms/envs/edx4edx_aws.py +++ b/lms/envs/edx4edx_aws.py @@ -8,7 +8,7 @@ COURSE_TITLE = "edx4edx: edX Author Course" ### Dark code. Should be enabled in local settings for devel. ENABLE_MULTICOURSE = True # set to False to disable multicourse display (see lib.util.views.mitxhome) -QUICKEDIT = False +QUICKEDIT = True ###