urls.py 335 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
"""
URL patterns for Javascript files used to load all of the XModule JS in one wad.
"""
from django.conf.urls import url, patterns

urlpatterns = patterns('pipeline_js.views',  # nopep8
    url(r'^files\.json$', 'xmodule_js_files', name='xmodule_js_files'),
    url(r'^xmodule\.js$', 'requirejs_xmodule', name='requirejs_xmodule'),
)