Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
3a29d260
Commit
3a29d260
authored
12 years ago
by
Diana Huang
Browse files
Options
Downloads
Plain Diff
Merge branch 'diana/peer-grading-views' into diana/peer-grading-improvements
parents
393ee353
19bc6574
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/open_ended_grading/staff_grading_service.py
+5
-4
5 additions, 4 deletions
lms/djangoapps/open_ended_grading/staff_grading_service.py
lms/djangoapps/open_ended_grading/views.py
+2
-1
2 additions, 1 deletion
lms/djangoapps/open_ended_grading/views.py
with
7 additions
and
5 deletions
lms/djangoapps/open_ended_grading/staff_grading_service.py
+
5
−
4
View file @
3a29d260
...
...
@@ -16,6 +16,7 @@ from django.http import HttpResponse, Http404
from
courseware.access
import
has_access
from
util.json_request
import
expect_json
from
xmodule.course_module
import
CourseDescriptor
from
student.models
import
unique_id_for_user
log
=
logging
.
getLogger
(
__name__
)
...
...
@@ -206,11 +207,11 @@ def get_next(request, course_id):
if
len
(
missing
)
>
0
:
return
_err_response
(
'
Missing required keys {0}
'
.
format
(
'
,
'
.
join
(
missing
)))
grader_id
=
request
.
user
.
id
grader_id
=
unique_id_for_user
(
request
.
user
)
p
=
request
.
POST
location
=
p
[
'
location
'
]
return
HttpResponse
(
_get_next
(
course_id
,
request
.
us
er
.
id
,
location
),
return
HttpResponse
(
_get_next
(
course_id
,
grad
er
_
id
,
location
),
mimetype
=
"
application/json
"
)
...
...
@@ -238,7 +239,7 @@ def get_problem_list(request, course_id):
"""
_check_access
(
request
.
user
,
course_id
)
try
:
response
=
staff_grading_service
().
get_problem_list
(
course_id
,
request
.
user
.
id
)
response
=
staff_grading_service
().
get_problem_list
(
course_id
,
unique_id_for_user
(
request
.
user
)
)
return
HttpResponse
(
response
,
mimetype
=
"
application/json
"
)
except
GradingServiceError
:
...
...
@@ -287,7 +288,7 @@ def save_grade(request, course_id):
return
_err_response
(
'
Missing required keys {0}
'
.
format
(
'
,
'
.
join
(
missing
)))
grader_id
=
request
.
user
.
id
grader_id
=
unique_id_for_user
(
request
.
user
)
p
=
request
.
POST
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/open_ended_grading/views.py
+
2
−
1
View file @
3a29d260
...
...
@@ -21,6 +21,7 @@ from django_comment_client.models import Role, FORUM_ROLE_ADMINISTRATOR, FORUM_R
from
django_comment_client.utils
import
has_forum_access
from
psychometrics
import
psychoanalyze
from
student.models
import
CourseEnrollment
from
student.models
import
unique_id_for_user
from
xmodule.course_module
import
CourseDescriptor
from
xmodule.modulestore
import
Location
from
xmodule.modulestore.django
import
modulestore
...
...
@@ -78,7 +79,7 @@ def peer_grading(request, course_id):
error_text
=
""
problem_list
=
[]
try
:
problem_list_text
=
peer_gs
.
get_problem_list
(
course_id
,
request
.
user
.
id
)
problem_list_text
=
peer_gs
.
get_problem_list
(
course_id
,
unique_id_for_user
(
request
.
user
)
)
problem_list_json
=
json
.
loads
(
problem_list_text
)
success
=
problem_list_json
[
'
success
'
]
if
'
error
'
in
problem_list_json
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment