Commit 51fc7b73 by Diana Huang Committed by GitHub

Merge pull request #15457 from edx/diana/replace-updates-urls

Replace urls in html updates.
parents ea7b14eb 378b1f86
...@@ -79,11 +79,14 @@ class CourseUpdatesFragmentView(EdxFragmentView): ...@@ -79,11 +79,14 @@ class CourseUpdatesFragmentView(EdxFragmentView):
info_module = get_course_info_section_module(request, request.user, course, 'updates') info_module = get_course_info_section_module(request, request.user, course, 'updates')
updates = info_module.items if info_module else [] updates = info_module.items if info_module else []
info_block = getattr(info_module, '_xmodule', info_module) if info_module else None
ordered_updates = [update for update in updates if update.get('status') == self.STATUS_VISIBLE] ordered_updates = [update for update in updates if update.get('status') == self.STATUS_VISIBLE]
ordered_updates.sort( ordered_updates.sort(
key=lambda item: (self.safe_parse_date(item['date']), item['id']), key=lambda item: (self.safe_parse_date(item['date']), item['id']),
reverse=True reverse=True
) )
for update in ordered_updates:
update['content'] = info_block.system.replace_urls(update['content'])
return ordered_updates return ordered_updates
@classmethod @classmethod
...@@ -98,7 +101,8 @@ class CourseUpdatesFragmentView(EdxFragmentView): ...@@ -98,7 +101,8 @@ class CourseUpdatesFragmentView(EdxFragmentView):
a single html object representing all the updates. a single html object representing all the updates.
""" """
info_module = get_course_info_section_module(request, request.user, course, 'updates') info_module = get_course_info_section_module(request, request.user, course, 'updates')
return info_module.data if info_module else '' info_block = getattr(info_module, '_xmodule', info_module)
return info_block.system.replace_urls(info_module.data) if info_module else ''
@staticmethod @staticmethod
def safe_parse_date(date): def safe_parse_date(date):
......
...@@ -57,9 +57,7 @@ class WelcomeMessageFragmentView(EdxFragmentView): ...@@ -57,9 +57,7 @@ class WelcomeMessageFragmentView(EdxFragmentView):
ordered_updates = CourseUpdatesFragmentView.get_ordered_updates(request, course) ordered_updates = CourseUpdatesFragmentView.get_ordered_updates(request, course)
content = None content = None
if ordered_updates: if ordered_updates:
info_module = get_course_info_section_module(request, request.user, course, 'updates') content = ordered_updates[0]['content']
info_block = getattr(info_module, '_xmodule', info_module)
content = info_block.system.replace_urls(ordered_updates[0]['content'])
return content return content
......
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