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
b84d0ba8
Commit
b84d0ba8
authored
12 years ago
by
Arthur Barrett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated comments
parent
9f8e172b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
16 deletions
+21
-16
common/lib/capa/capa/inputtypes.py
+15
-16
common/lib/capa/capa/responsetypes.py
+6
-0
No files found.
common/lib/capa/capa/inputtypes.py
View file @
b84d0ba8
...
...
@@ -943,25 +943,24 @@ registry.register(EditAGeneInput)
class
AnnotationInput
(
InputTypeBase
):
"""
Input type for annotations
/ tags
: students can enter some notes or other text
(currently ungraded), and then choose from a set of tags, which are graded.
Input type for annotations: students can enter some notes or other text
(currently ungraded), and then choose from a set of tags
/optoins
, which are graded.
Example:
<annotationinput>
<title>Annotation Exercise</title>
<text>Dr Seuss uses colors! How?</text>
<comment>Why does Dr Seuss use colors!?</comment>
<comment_prompt>Write down some notes:</comment_prompt>
<tag_prompt>Now pick the right color</tag_prompt>
<options>
<option score="0">blue -- color of grass</option>
<option score="1">ham -- color of grass</option>
<option score="2">green -- color of grass</option>
</options>
</annotationinput>
<text>The location of the sky</text>
<annotationinput>
<title>Annotation Exercise</title>
<text>They are the ones who, at the public assembly, had put savage derangement [atē] into my thinking [phre
nes] |89 on that day when I myself deprived Achilles of his honorific portion [geras]</text>
<comment>Agamemnon says that atē or ‘derangement’ was the cause of his actions: why could Zeus say the same thing?</comment>
<comment_prompt>Type a commentary below:</comment_prompt>
<tag_prompt>Select one or more tags:</tag_prompt>
<options>
<option choice="correct">atē - both a cause and an effect</option>
<option choice="incorrect">atē - a cause</option>
<option choice="partial">atē - an effect</option>
</options>
</annotationinput>
# TODO: allow ordering to be randomized
"""
...
...
This diff is collapsed.
Click to expand it.
common/lib/capa/capa/responsetypes.py
View file @
b84d0ba8
...
...
@@ -1844,7 +1844,13 @@ class ImageResponse(LoncapaResponse):
#-----------------------------------------------------------------------------
class
AnnotationResponse
(
LoncapaResponse
):
'''
Checking of annotation responses.
The response contains both a comment (student commentary) and an option (student tag).
Only the tag is currently graded. Answers may be incorrect, partially correct, or correct
and are scored accordingly.
'''
response_tag
=
'annotationresponse'
allowed_inputfields
=
[
'annotationinput'
]
max_inputfields
=
1
...
...
This diff is collapsed.
Click to expand it.
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