Commit 3b36fbf9 by Calen Pennington

Move mitxmako out of common lib, and pass template rendering function into MongoModuleStore

parent 73623ed9
...@@ -24,6 +24,7 @@ MODULESTORE = { ...@@ -24,6 +24,7 @@ MODULESTORE = {
'db': 'xmodule', 'db': 'xmodule',
'collection': 'modulestore', 'collection': 'modulestore',
'fs_root': GITHUB_REPO_ROOT, 'fs_root': GITHUB_REPO_ROOT,
'render_template': 'mitxmako.shortcuts.render_to_string',
} }
} }
} }
......
...@@ -47,6 +47,7 @@ MODULESTORE = { ...@@ -47,6 +47,7 @@ MODULESTORE = {
'db': 'test_xmodule', 'db': 'test_xmodule',
'collection': 'modulestore', 'collection': 'modulestore',
'fs_root': GITHUB_REPO_ROOT, 'fs_root': GITHUB_REPO_ROOT,
'render_template': 'mitxmako.shortcuts.render_to_string',
} }
} }
} }
......
from setuptools import setup, find_packages
setup(
name="mitxmako",
version="0.1",
packages=find_packages(exclude=["tests"]),
install_requires=['distribute'],
)
...@@ -10,7 +10,6 @@ setup( ...@@ -10,7 +10,6 @@ setup(
}, },
requires=[ requires=[
'capa', 'capa',
'mitxmako'
], ],
# See http://guide.python-distribute.org/creation.html#entry-points # See http://guide.python-distribute.org/creation.html#entry-points
......
...@@ -12,15 +12,28 @@ from django.conf import settings ...@@ -12,15 +12,28 @@ from django.conf import settings
_MODULESTORES = {} _MODULESTORES = {}
FUNCTION_KEYS = ['render_template']
def load_function(path):
module_path, _, name = path.rpartition('.')
return getattr(import_module(module_path), name)
def modulestore(name='default'): def modulestore(name='default'):
global _MODULESTORES global _MODULESTORES
if name not in _MODULESTORES: if name not in _MODULESTORES:
class_path = settings.MODULESTORE[name]['ENGINE'] class_ = load_function(settings.MODULESTORE[name]['ENGINE'])
module_path, _, class_name = class_path.rpartition('.')
class_ = getattr(import_module(module_path), class_name) options = {}
options.update(settings.MODULESTORE[name]['OPTIONS'])
for key in FUNCTION_KEYS:
if key in options:
options[key] = load_function(options[key])
_MODULESTORES[name] = class_( _MODULESTORES[name] = class_(
**settings.MODULESTORE[name]['OPTIONS']) **options
)
return _MODULESTORES[name] return _MODULESTORES[name]
...@@ -9,7 +9,6 @@ from importlib import import_module ...@@ -9,7 +9,6 @@ from importlib import import_module
from xmodule.errortracker import null_error_tracker from xmodule.errortracker import null_error_tracker
from xmodule.x_module import XModuleDescriptor from xmodule.x_module import XModuleDescriptor
from xmodule.mako_module import MakoDescriptorSystem from xmodule.mako_module import MakoDescriptorSystem
from mitxmako.shortcuts import render_to_string
from . import ModuleStoreBase, Location from . import ModuleStoreBase, Location
from .exceptions import (ItemNotFoundError, from .exceptions import (ItemNotFoundError,
...@@ -82,7 +81,8 @@ class MongoModuleStore(ModuleStoreBase): ...@@ -82,7 +81,8 @@ class MongoModuleStore(ModuleStoreBase):
""" """
# TODO (cpennington): Enable non-filesystem filestores # TODO (cpennington): Enable non-filesystem filestores
def __init__(self, host, db, collection, fs_root, port=27017, default_class=None, def __init__(self, host, db, collection, fs_root, render_template,
port=27017, default_class=None,
error_tracker=null_error_tracker): error_tracker=null_error_tracker):
ModuleStoreBase.__init__(self) ModuleStoreBase.__init__(self)
...@@ -108,6 +108,7 @@ class MongoModuleStore(ModuleStoreBase): ...@@ -108,6 +108,7 @@ class MongoModuleStore(ModuleStoreBase):
self.default_class = None self.default_class = None
self.fs_root = path(fs_root) self.fs_root = path(fs_root)
self.error_tracker = error_tracker self.error_tracker = error_tracker
self.render_template = render_template
def _clean_item_data(self, item): def _clean_item_data(self, item):
""" """
...@@ -160,7 +161,7 @@ class MongoModuleStore(ModuleStoreBase): ...@@ -160,7 +161,7 @@ class MongoModuleStore(ModuleStoreBase):
self.default_class, self.default_class,
resource_fs, resource_fs,
self.error_tracker, self.error_tracker,
render_to_string, self.render_template,
) )
return system.load_item(item['location']) return system.load_item(item['location'])
......
...@@ -26,6 +26,7 @@ DB = 'test' ...@@ -26,6 +26,7 @@ DB = 'test'
COLLECTION = 'modulestore' COLLECTION = 'modulestore'
FS_ROOT = DATA_DIR # TODO (vshnayder): will need a real fs_root for testing load_item FS_ROOT = DATA_DIR # TODO (vshnayder): will need a real fs_root for testing load_item
DEFAULT_CLASS = 'xmodule.raw_module.RawDescriptor' DEFAULT_CLASS = 'xmodule.raw_module.RawDescriptor'
RENDER_TEMPLATE = lambda t_n, d, ctx=None, nsp='main': ''
class TestMongoModuleStore(object): class TestMongoModuleStore(object):
...@@ -48,7 +49,7 @@ class TestMongoModuleStore(object): ...@@ -48,7 +49,7 @@ class TestMongoModuleStore(object):
@staticmethod @staticmethod
def initdb(): def initdb():
# connect to the db # connect to the db
store = MongoModuleStore(HOST, DB, COLLECTION, FS_ROOT, default_class=DEFAULT_CLASS) store = MongoModuleStore(HOST, DB, COLLECTION, FS_ROOT, RENDER_TEMPLATE, default_class=DEFAULT_CLASS)
# Explicitly list the courses to load (don't want the big one) # Explicitly list the courses to load (don't want the big one)
courses = ['toy', 'simple'] courses = ['toy', 'simple']
import_from_xml(store, DATA_DIR, courses) import_from_xml(store, DATA_DIR, courses)
......
...@@ -56,6 +56,7 @@ def mongo_store_config(data_dir): ...@@ -56,6 +56,7 @@ def mongo_store_config(data_dir):
'db': 'xmodule', 'db': 'xmodule',
'collection': 'modulestore', 'collection': 'modulestore',
'fs_root': data_dir, 'fs_root': data_dir,
'render_template': 'mitxmako.shortcuts.render_to_string',
} }
} }
} }
......
...@@ -14,6 +14,7 @@ MODULESTORE = { ...@@ -14,6 +14,7 @@ MODULESTORE = {
'db': 'xmodule', 'db': 'xmodule',
'collection': 'modulestore', 'collection': 'modulestore',
'fs_root': GITHUB_REPO_ROOT, 'fs_root': GITHUB_REPO_ROOT,
'render_template': 'mitxmako.shortcuts.render_to_string',
} }
} }
} }
-e common/lib/capa -e common/lib/capa
-e common/lib/mitxmako
-e common/lib/xmodule -e common/lib/xmodule
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