Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
d6511edd
Commit
d6511edd
authored
Dec 19, 2014
by
Usman Khalid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added property prompts to xblock.
TNL-708
parent
86c1e53a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
5 deletions
+69
-5
openassessment/xblock/data_conversion.py
+33
-3
openassessment/xblock/openassessmentblock.py
+36
-2
No files found.
openassessment/xblock/data_conversion.py
View file @
d6511edd
...
...
@@ -2,6 +2,7 @@
Data Conversion utility methods for handling ORA2 XBlock data transformations.
"""
import
json
def
convert_training_examples_list_to_dict
(
examples_list
):
...
...
@@ -56,13 +57,42 @@ def convert_training_examples_list_to_dict(examples_list):
]
def
create_rubric_dict
(
prompt
,
criteria
):
def
create_prompts_list
(
prompt_or_serialized_prompts
):
"""
Construct a list of prompts.
Initially a block had a single prompt which was saved as a simple string.
In that case a new prompt dict is constructed from it.
Args:
prompt_or_serialized_prompts (unicode): A string which can either
be a single prompt text or json for a list of prompts.
Returns:
list of dict
"""
if
prompt_or_serialized_prompts
is
None
:
prompt_or_serialized_prompts
=
''
try
:
prompts
=
json
.
loads
(
prompt_or_serialized_prompts
)
except
ValueError
:
prompts
=
[
{
'description'
:
prompt_or_serialized_prompts
,
}
]
return
prompts
def
create_rubric_dict
(
prompts
,
criteria
):
"""
Construct a serialized rubric model in the format expected
by the assessments app.
Args:
prompt
(unicode): The rubric prompt
.
prompt
s (list of dict): The rubric prompts
.
criteria (list of dict): The serialized rubric criteria.
Returns:
...
...
@@ -70,7 +100,7 @@ def create_rubric_dict(prompt, criteria):
"""
return
{
"prompt
"
:
prompt
,
"prompt
s"
:
prompts
,
"criteria"
:
criteria
}
...
...
openassessment/xblock/openassessmentblock.py
View file @
d6511edd
...
...
@@ -31,7 +31,7 @@ from openassessment.workflow.errors import AssessmentWorkflowError
from
openassessment.xblock.student_training_mixin
import
StudentTrainingMixin
from
openassessment.xblock.validation
import
validator
from
openassessment.xblock.resolve_dates
import
resolve_dates
,
DISTANT_PAST
,
DISTANT_FUTURE
from
openassessment.xblock.data_conversion
import
create_rubric_dict
from
openassessment.xblock.data_conversion
import
create_
prompts_list
,
create_
rubric_dict
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -144,7 +144,7 @@ class OpenAssessmentBlock(
prompt
=
String
(
default
=
DEFAULT_PROMPT
,
scope
=
Scope
.
content
,
help
=
"
A prompt to display to a student (plain text)
."
help
=
"
The prompts to display to a student
."
)
rubric_criteria
=
List
(
...
...
@@ -445,6 +445,40 @@ class OpenAssessmentBlock(
return
i18nService
.
ugettext
@property
def
prompts
(
self
):
"""
Return the prompts.
Initially a block had a single prompt which was saved as a simple
string in the prompt field. Now prompts are saved as a serialized
list of dicts in the same field. If prompt field contains valid json,
parse and return it. Otherwise, assume it is a simple string prompt
and return it in a list of dict.
Returns:
list of dict
"""
return
create_prompts_list
(
self
.
prompt
)
@prompts.setter
def
prompts
(
self
,
value
):
"""
Serialize the prompts and save to prompt field.
Args:
value (list of dict): The prompts to set.
"""
if
value
is
None
:
self
.
prompt
=
''
elif
len
(
value
)
==
1
:
# For backwards compatibility. To be removed after all code
# is migrated to use prompts property instead of prompt field.
self
.
prompt
=
value
[
0
][
'description'
]
else
:
self
.
prompt
=
json
.
dumps
(
value
)
@property
def
valid_assessments
(
self
):
"""
Return a list of assessment dictionaries that we recognize.
...
...
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