Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e6db0af1
Commit
e6db0af1
authored
Apr 24, 2015
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use current OpaqueKeys methods when loading a block for the XQueue callback
parent
8d9d6ce0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lms/djangoapps/courseware/module_render.py
+4
-3
No files found.
lms/djangoapps/courseware/module_render.py
View file @
e6db0af1
...
...
@@ -728,11 +728,12 @@ def load_single_xblock(request, user_id, course_id, usage_key_string):
"""
Load a single XBlock identified by usage_key_string.
"""
course_id
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id
)
usage_key
=
course_id
.
make_usage_key_from_deprecated_string
(
usage_key_string
)
usage_key
=
UsageKey
.
from_string
(
usage_key_string
)
course_key
=
CourseKey
.
from_string
(
course_id
)
usage_key
=
usage_key
.
map_into_course
(
course_key
)
user
=
User
.
objects
.
get
(
id
=
user_id
)
field_data_cache
=
FieldDataCache
.
cache_for_descriptor_descendents
(
course_
id
,
course_
key
,
user
,
modulestore
()
.
get_item
(
usage_key
),
depth
=
0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment