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
d6f8def7
Commit
d6f8def7
authored
Jan 31, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move over rubric parsing logic to rubric module
parent
b22bad7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
common/lib/xmodule/xmodule/combined_open_ended_module.py
+3
-15
common/lib/xmodule/xmodule/combined_open_ended_rubric.py
+15
-0
No files found.
common/lib/xmodule/xmodule/combined_open_ended_module.py
View file @
d6f8def7
...
...
@@ -166,26 +166,14 @@ class CombinedOpenEndedModule(XModule):
self
.
_max_score
=
int
(
self
.
metadata
.
get
(
'max_score'
,
MAX_SCORE
))
if
self
.
_max_score
>
MAX_SCORE_ALLOWED
:
error_message
=
"Max score {0} is higher than max score allowed {1}"
.
format
(
self
.
_max_score
,
MAX_SCORE_ALLOWED
)
error_message
=
"Max score {0} is higher than max score allowed {1}
for location {2}
"
.
format
(
self
.
_max_score
,
MAX_SCORE_ALLOWED
,
location
)
log
.
error
(
error_message
)
raise
IncorrectMaxScoreError
(
error_message
)
rubric_renderer
=
CombinedOpenEndedRubric
(
system
,
True
)
rubric_string
=
stringify_children
(
definition
[
'rubric'
])
success
,
rubric_feedback
=
rubric_renderer
.
render_rubric
(
rubric_string
)
if
not
success
:
error_message
=
"Could not parse rubric : {0}"
.
format
(
definition
[
'rubric'
])
log
.
error
(
error_message
)
raise
RubricParsingError
(
error_message
)
rubric_categories
=
rubric_renderer
.
extract_categories
(
stringify_children
(
definition
[
'rubric'
]))
for
category
in
rubric_categories
:
if
len
(
category
[
'options'
])
>
(
MAX_SCORE_ALLOWED
+
1
):
error_message
=
"Number of score points in rubric {0} higher than the max allowed, which is {1}"
.
format
(
len
(
category
[
'options'
]),
MAX_SCORE_ALLOWED
)
log
.
error
(
error_message
)
raise
RubricParsingError
(
error_message
)
rubric_renderer
.
check_if_rubric_is_parseable
(
rubric_string
,
location
,
MAX_SCORE_ALLOWED
)
#Static data is passed to the child modules to render
self
.
static_data
=
{
...
...
common/lib/xmodule/xmodule/combined_open_ended_rubric.py
View file @
d6f8def7
...
...
@@ -36,6 +36,21 @@ class CombinedOpenEndedRubric(object):
raise
RubricParsingError
(
"[render_rubric] Could not parse the rubric with xml: {0}"
.
format
(
rubric_xml
))
return
success
,
html
def
check_if_rubric_is_parseable
(
self
,
rubric_string
,
location
,
max_score_allowed
):
success
,
rubric_feedback
=
self
.
render_rubric
(
rubric_string
)
if
not
success
:
error_message
=
"Could not parse rubric : {0} for location {1}"
.
format
(
rubric_string
,
location
.
url
())
log
.
error
(
error_message
)
raise
RubricParsingError
(
error_message
)
rubric_categories
=
self
.
extract_categories
(
rubric_string
)
for
category
in
rubric_categories
:
if
len
(
category
[
'options'
])
>
(
max_score_allowed
+
1
):
error_message
=
"Number of score points in rubric {0} higher than the max allowed, which is {1}"
.
format
(
len
(
category
[
'options'
]),
max_score_allowed
)
log
.
error
(
error_message
)
raise
RubricParsingError
(
error_message
)
def
extract_categories
(
self
,
element
):
'''
Contstruct a list of categories such that the structure looks like:
...
...
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