From 0888eed9066eee49dbe9669c797e835d1060d3de Mon Sep 17 00:00:00 2001 From: Piotr Mitros Date: Mon, 20 Feb 2012 13:06:13 -0500 Subject: [PATCH] Post-merge cleanup --- settings2/common.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/settings2/common.py b/settings2/common.py index 386f3b0fa8..6e9c98b41c 100644 --- a/settings2/common.py +++ b/settings2/common.py @@ -61,6 +61,12 @@ sys.path.append(PROJECT_ROOT / 'lib') ################################## MITXWEB ##################################### # This is where we stick our compiled template files MAKO_MODULE_DIR = tempfile.mkdtemp('mako') +MAKO_TEMPLATES = {} +MAKO_TEMPLATES['course'] = [DATA_DIR] +MAKO_TEMPLATES['sections'] = [DATA_DIR+'/sections'] +MAKO_TEMPLATES['custom_tags'] = [DATA_DIR+'/custom_tags'] +MAKO_TEMPLATES['main'] = [ENV_ROOT+'/templates/'] + TEXTBOOK_DIR = ENV_ROOT / "books" / "circuits_agarwal_lang" # FIXME ???????? --