Commit 69e45796 by Calen Pennington

Remove some unused code from content_parser

parent d502dce1
...@@ -19,12 +19,10 @@ from django.conf import settings ...@@ -19,12 +19,10 @@ from django.conf import settings
from student.models import UserProfile from student.models import UserProfile
from student.models import UserTestGroup from student.models import UserTestGroup
from courseware.models import StudentModuleCache
from mitxmako.shortcuts import render_to_string from mitxmako.shortcuts import render_to_string
from util.cache import cache from util.cache import cache
from multicourse import multicourse_settings from multicourse import multicourse_settings
import xmodule import xmodule
from keystore.django import keystore
''' This file will eventually form an abstraction layer between the ''' This file will eventually form an abstraction layer between the
course XML file and the rest of the system. course XML file and the rest of the system.
...@@ -35,22 +33,11 @@ course XML file and the rest of the system. ...@@ -35,22 +33,11 @@ course XML file and the rest of the system.
# util.memcache.fasthash (which does not depend on memcache at all) # util.memcache.fasthash (which does not depend on memcache at all)
# #
class ContentException(Exception):
pass
log = logging.getLogger("mitx.courseware") log = logging.getLogger("mitx.courseware")
def format_url_params(params): def format_url_params(params):
return [ urllib.quote(string.replace(' ','_')) for string in params ] return [ urllib.quote(string.replace(' ','_')) for string in params ]
def xpath_remove(tree, path):
''' Remove all items matching path from lxml tree. Works in
place.'''
items = tree.xpath(path)
for item in items:
item.getparent().remove(item)
return tree
def id_tag(course): def id_tag(course):
''' Tag all course elements with unique IDs ''' ''' Tag all course elements with unique IDs '''
default_ids = xmodule.get_default_ids() default_ids = xmodule.get_default_ids()
......
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