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
c91fa2f4
Commit
c91fa2f4
authored
May 21, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add in some comments
parent
956669de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
lms/djangoapps/open_ended_grading/views.py
+4
-0
No files found.
lms/djangoapps/open_ended_grading/views.py
View file @
c91fa2f4
...
...
@@ -165,6 +165,7 @@ def student_problem_list(request, course_id):
base_course_url
=
reverse
(
'courses'
)
try
:
#Get list of all open ended problems that the grading server knows about
problem_list_json
=
controller_qs
.
get_grading_status_list
(
course_id
,
unique_id_for_user
(
request
.
user
))
problem_list_dict
=
json
.
loads
(
problem_list_json
)
success
=
problem_list_dict
[
'success'
]
...
...
@@ -176,8 +177,11 @@ def student_problem_list(request, course_id):
for
i
in
xrange
(
0
,
len
(
problem_list
)):
try
:
#Try to load each problem in the courseware to get links to them
problem_url_parts
=
search
.
path_to_location
(
modulestore
(),
course
.
id
,
problem_list
[
i
][
'location'
])
except
:
#If the problem cannot be found at the location received from the grading controller server, it has been deleted by the course author.
#Continue with the rest of the location to construct the list
error_message
=
"Could not find module for course {0} at location {1}"
.
format
(
course
.
id
,
problem_list
[
i
][
'location'
])
log
.
error
(
error_message
)
continue
...
...
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