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
d52b959f
Commit
d52b959f
authored
Dec 16, 2013
by
e0d
Browse files
Options
Browse Files
Download
Plain Diff
fixing merge conflicts
parents
3cf75198
25958e87
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
325 additions
and
18 deletions
+325
-18
common/lib/xmodule/xmodule/modulestore/loc_mapper_store.py
+0
-1
common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py
+17
-2
common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py
+39
-1
common/lib/xmodule/xmodule/tests/test_combined_open_ended.py
+175
-3
common/lib/xmodule/xmodule/tests/test_util_open_ended.py
+0
-0
lms/djangoapps/courseware/roles.py
+39
-11
lms/templates/instructor/staff_grading.html
+11
-0
lms/templates/open_ended_problems/combined_notifications.html
+11
-0
lms/templates/open_ended_problems/open_ended_flagged_problems.html
+11
-0
lms/templates/open_ended_problems/open_ended_problems.html
+11
-0
lms/templates/peer_grading/peer_grading.html
+11
-0
No files found.
common/lib/xmodule/xmodule/modulestore/loc_mapper_store.py
View file @
d52b959f
...
...
@@ -136,7 +136,6 @@ class LocMapperStore(object):
if
cached_value
:
return
cached_value
maps
=
self
.
location_map
.
find
(
location_id
)
maps
=
list
(
maps
)
if
len
(
maps
)
==
0
:
...
...
common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py
View file @
d52b959f
...
...
@@ -258,8 +258,23 @@ class CombinedOpenEndedV1Module():
if
not
task_states
:
return
(
0
,
0
,
state_values
[
OpenEndedChild
.
INITIAL
],
idx
)
final_child_state
=
json
.
loads
(
task_states
[
-
1
])
scores
=
[
attempt
.
get
(
'score'
,
0
)
for
attempt
in
final_child_state
.
get
(
'child_history'
,
[])]
final_task_xml
=
self
.
task_xml
[
-
1
]
final_child_state_json
=
task_states
[
-
1
]
final_child_state
=
json
.
loads
(
final_child_state_json
)
tag_name
=
self
.
get_tag_name
(
final_task_xml
)
children
=
self
.
child_modules
()
task_descriptor
=
children
[
'descriptors'
][
tag_name
](
self
.
system
)
task_parsed_xml
=
task_descriptor
.
definition_from_xml
(
etree
.
fromstring
(
final_task_xml
),
self
.
system
)
task
=
children
[
'modules'
][
tag_name
](
self
.
system
,
self
.
location
,
task_parsed_xml
,
task_descriptor
,
self
.
static_data
,
instance_state
=
final_child_state_json
,
)
scores
=
task
.
all_scores
()
if
scores
:
best_score
=
max
(
scores
)
else
:
...
...
common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py
View file @
d52b959f
...
...
@@ -679,7 +679,7 @@ class OpenEndedModule(openendedchild.OpenEndedChild):
return
{
'success'
:
success
,
'error'
:
error_message
,
'student_response'
:
data
[
'student_answer'
]
.
replace
(
"
\n
"
,
"<br/>"
)
'student_response'
:
data
[
'student_answer'
]
.
replace
(
"
\n
"
,
"<br/>"
)
}
def
update_score
(
self
,
data
,
system
):
...
...
@@ -738,6 +738,44 @@ class OpenEndedModule(openendedchild.OpenEndedChild):
html
=
system
.
render_template
(
'{0}/open_ended.html'
.
format
(
self
.
TEMPLATE_DIR
),
context
)
return
html
def
latest_score
(
self
):
"""None if not available"""
if
not
self
.
child_history
:
return
None
return
self
.
score_for_attempt
(
-
1
)
def
all_scores
(
self
):
"""None if not available"""
if
not
self
.
child_history
:
return
None
return
[
self
.
score_for_attempt
(
index
)
for
index
in
xrange
(
0
,
len
(
self
.
child_history
))]
def
score_for_attempt
(
self
,
index
):
"""
Return sum of rubric scores for ML grading otherwise return attempt["score"].
"""
attempt
=
self
.
child_history
[
index
]
score
=
attempt
.
get
(
'score'
)
post_assessment_data
=
self
.
_parse_score_msg
(
attempt
.
get
(
'post_assessment'
),
self
.
system
)
grader_types
=
post_assessment_data
.
get
(
'grader_types'
)
# According to _parse_score_msg in ML grading there should be only one grader type.
if
len
(
grader_types
)
==
1
and
grader_types
[
0
]
==
'ML'
:
rubric_scores
=
post_assessment_data
.
get
(
"rubric_scores"
)
# Similarly there should be only one list of rubric scores.
if
len
(
rubric_scores
)
==
1
:
rubric_scores_sum
=
sum
(
rubric_scores
[
0
])
log
.
debug
(
"""Score normalized for location={loc}, old_score={old_score},
new_score={new_score}, rubric_score={rubric_score}"""
.
format
(
loc
=
self
.
location_string
,
old_score
=
score
,
new_score
=
rubric_scores_sum
,
rubric_score
=
rubric_scores
))
return
rubric_scores_sum
return
score
class
OpenEndedDescriptor
():
"""
...
...
common/lib/xmodule/xmodule/tests/test_combined_open_ended.py
View file @
d52b959f
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/tests/test_util_open_ended.py
View file @
d52b959f
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/roles.py
View file @
d52b959f
...
...
@@ -8,6 +8,9 @@ from abc import ABCMeta, abstractmethod
from
django.contrib.auth.models
import
User
,
Group
from
xmodule.modulestore
import
Location
from
xmodule.modulestore.exceptions
import
InvalidLocationError
,
ItemNotFoundError
from
xmodule.modulestore.django
import
loc_mapper
from
xmodule.modulestore.locator
import
CourseLocator
class
CourseContextRequired
(
Exception
):
...
...
@@ -134,20 +137,45 @@ class CourseRole(GroupBasedRole):
A named role in a particular course
"""
def
__init__
(
self
,
role
,
location
,
course_context
=
None
):
# pylint: disable=no-member
loc
=
Location
(
location
)
legacy_group_name
=
'{0}_{1}'
.
format
(
role
,
loc
.
course
)
if
loc
.
category
.
lower
()
==
'course'
:
course_id
=
loc
.
course_id
else
:
"""
Location may be either a Location, a string, dict, or tuple which Location will accept
in its constructor, or a CourseLocator. Handle all these giving some preference to
the preferred naming.
"""
# TODO: figure out how to make the group name generation lazy so it doesn't force the
# loc mapping?
if
not
hasattr
(
location
,
'course_id'
):
location
=
Location
(
location
)
# direct copy from auth.authz.get_all_course_role_groupnames will refactor to one impl asap
groupnames
=
[]
try
:
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
course_id
))
except
InvalidLocationError
:
# will occur on old locations where location is not of category course
if
course_context
is
None
:
raise
CourseContextRequired
()
course_id
=
course_context
group_name
=
'{0}_{1}'
.
format
(
role
,
course_id
)
else
:
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
course_context
))
super
(
CourseRole
,
self
)
.
__init__
([
group_name
,
legacy_group_name
])
# pylint: disable=no-member
if
isinstance
(
location
,
Location
):
try
:
locator
=
loc_mapper
()
.
translate_location
(
location
.
course_id
,
location
,
False
,
False
)
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
locator
.
course_id
))
except
(
InvalidLocationError
,
ItemNotFoundError
):
# if it's never been mapped, the auth won't be via the Locator syntax
pass
# least preferred legacy role_course format
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
course
))
elif
isinstance
(
location
,
CourseLocator
):
# handle old Location syntax
old_location
=
loc_mapper
()
.
translate_locator_to_location
(
location
,
get_course
=
True
)
if
old_location
:
# the slashified version of the course_id (myu/mycourse/myrun)
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
old_location
.
course_id
))
# add the least desirable but sometimes occurring format.
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
old_location
.
course
))
super
(
CourseRole
,
self
)
.
__init__
(
groupnames
)
class
OrgRole
(
GroupBasedRole
):
...
...
lms/templates/instructor/staff_grading.html
View file @
d52b959f
...
...
@@ -23,6 +23,17 @@
<h1>
${_("Staff grading")}
</h1>
<div
class=
"breadcrumbs"
></div>
<div
class=
"error-container"
></div>
<br>
<div
style=
"color:red;"
>
<b>
The issue we had between Dec 3 and Dec 5 with the visibility
of student responses has now been resolved. All responses
should now be visible. Thank you for your patience!
--the edX team
</b>
</div>
<br>
<hr>
<div
class=
"message-container"
></div>
...
...
lms/templates/open_ended_problems/combined_notifications.html
View file @
d52b959f
...
...
@@ -16,6 +16,17 @@
<section
class=
"container"
>
<div
class=
"combined-notifications"
data-ajax_url=
"${ajax_url}"
>
<div
class=
"error-container"
>
${error_text}
</div>
<br>
<div
style=
"color:red;"
>
<b>
The issue we had between Dec 3 and Dec 5 with the visibility
of student responses has now been resolved. All responses
should now be visible. Thank you for your patience!
--the edX team
</b>
</div>
<br>
<hr>
<h1>
${_("Open Ended Console")}
</h1>
<h2>
${_("Instructions")}
</h2>
...
...
lms/templates/open_ended_problems/open_ended_flagged_problems.html
View file @
d52b959f
...
...
@@ -19,6 +19,17 @@
<section
class=
"container"
>
<div
class=
"open-ended-problems"
data-ajax_url=
"${ajax_url}"
>
<div
class=
"error-container"
>
${error_text}
</div>
<br>
<div
style=
"color:red;"
>
<b>
The issue we had between Dec 3 and Dec 5 with the visibility
of student responses has now been resolved. All responses
should now be visible. Thank you for your patience!
--the edX team
</b>
</div>
<br>
<hr>
<h1>
${_("Flagged Open Ended Problems")}
</h1>
<h2>
${_("Instructions")}
</h2>
...
...
lms/templates/open_ended_problems/open_ended_problems.html
View file @
d52b959f
...
...
@@ -16,6 +16,17 @@
<section
class=
"container"
>
<div
class=
"open-ended-problems"
data-ajax_url=
"${ajax_url}"
>
<div
class=
"error-container"
>
${error_text}
</div>
<br>
<div
style=
"color:red;"
>
<b>
The issue we had between Dec 3 and Dec 5 with the visibility
of student responses has now been resolved. All responses
should now be visible. Thank you for your patience!
--the edX team
</b>
</div>
<br>
<hr>
<h1>
${_("Open Ended Problems")}
</h1>
<h2>
${_("Instructions")}
</h2>
<p>
${_("Here is a list of open ended problems for this course.")}
</p>
...
...
lms/templates/peer_grading/peer_grading.html
View file @
d52b959f
...
...
@@ -15,6 +15,17 @@ criteria.{end_li_tag}
<section
class=
"container peer-grading-container"
>
<div
class=
"peer-grading"
data-ajax-url=
"${ajax_url}"
data-use-single-location=
"${use_single_location}"
>
<div
class=
"error-container"
>
${error_text}
</div>
<br>
<div
style=
"color:red;"
>
<b>
The issue we had between Dec 3 and Dec 5 with the visibility
of student responses has now been resolved. All responses
should now be visible. Thank you for your patience!
--the edX team
</b>
</div>
<br>
<hr>
<div
class=
"peer-grading-tools"
>
<h1
class=
"peer-grading-title"
>
${_("Peer Grading")}
</h1>
<h2
class=
"peer-grading-instructions"
>
${_("Instructions")}
</h2>
...
...
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