Commit e4eea6cc by Chris Dodge

some additional comments to clarify the partially bogus course_id.

parent aa8b0545
...@@ -12,10 +12,12 @@ def get_module_info(store, location, rewrite_static_links=False): ...@@ -12,10 +12,12 @@ def get_module_info(store, location, rewrite_static_links=False):
data = module.data data = module.data
if rewrite_static_links: if rewrite_static_links:
# we pass a partially bogus course_id as we don't have the RUN information passed yet
# through the CMS. Also the contentstore is also not RUN-aware at this point in time.
data = replace_static_urls( data = replace_static_urls(
module.data, module.data,
None, None,
course_id=module.location.org + '/' + module.location.course + '/REPLACE_WITH_RUN_WHEN_IMPLEMENTED' course_id=module.location.org + '/' + module.location.course + '/BOGUS_RUN_REPLACE_WHEN_AVAILABLE'
) )
return { return {
......
...@@ -155,10 +155,12 @@ def load_preview_module(request, preview_id, descriptor): ...@@ -155,10 +155,12 @@ def load_preview_module(request, preview_id, descriptor):
"xmodule_display.html", "xmodule_display.html",
) )
# we pass a partially bogus course_id as we don't have the RUN information passed yet
# through the CMS. Also the contentstore is also not RUN-aware at this point in time.
module.get_html = replace_static_urls( module.get_html = replace_static_urls(
module.get_html, module.get_html,
getattr(module, 'data_dir', module.location.course), getattr(module, 'data_dir', module.location.course),
course_id=module.location.org+'/'+module.location.course+'/REPLACE_WITH_RUN' course_id=module.location.org+'/'+module.location.course+'/BOGUS_RUN_REPLACE_WHEN_AVAILABLE'
) )
module.get_html = save_module( module.get_html = save_module(
......
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