runtime.py 827 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
"""
XBlock runtime implementations for edX Studio
"""

from django.core.urlresolvers import reverse


def handler_url(block, handler_name, suffix='', query='', thirdparty=False):
    """
    Handler URL function for Studio
    """

    if thirdparty:
        raise NotImplementedError("edX Studio doesn't support third-party xblock handler urls")

    url = reverse('component_handler', kwargs={
17
        'usage_key_string': unicode(block.scope_ids.usage_id).encode('utf-8'),
18 19 20 21 22 23 24 25 26
        'handler': handler_name,
        'suffix': suffix,
    }).rstrip('/')

    if query:
        url += '?' + query

    return url

27 28 29 30 31 32 33 34 35

def local_resource_url(block, uri):
    """
    local_resource_url for Studio
    """
    return reverse('xblock_resource_url', kwargs={
        'block_type': block.scope_ids.block_type,
        'uri': uri,
    })