-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: deserialize tag info from xml [FC-0049] (#2181)
* feat: deserialize tags from xml + test * chore: bump version
- Loading branch information
Showing
4 changed files
with
136 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Initialization Information for Open Assessment Module | ||
""" | ||
|
||
__version__ = '6.1.0' | ||
__version__ = '6.2.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<openassessment text_response="required" file_upload_response="" group_access="{"381451918": [1179773159]}" prompts_type="text" tags-v1="test content tags"> | ||
<title>Open Assessment Test</title> | ||
<prompts> | ||
<prompt> | ||
<description>Given the state of the world today, what do you think should be done to combat poverty? Please answer in a short essay of 200-300 words.</description> | ||
</prompt> | ||
<prompt> | ||
<description>Given the state of the world today, what do you think should be done to combat pollution?</description> | ||
</prompt> | ||
</prompts> | ||
<rubric> | ||
<criterion> | ||
<name>Concise</name> | ||
<prompt>How concise is it?</prompt> | ||
<option points="0"> | ||
<name>Neal Stephenson (late)</name> | ||
<explanation>Neal Stephenson explanation</explanation> | ||
</option> | ||
<option points="1"> | ||
<name>HP Lovecraft</name> | ||
<explanation>HP Lovecraft explanation</explanation> | ||
</option> | ||
<option points="3"> | ||
<name>Robert Heinlein</name> | ||
<explanation>Robert Heinlein explanation</explanation> | ||
</option> | ||
<option points="4"> | ||
<name>Neal Stephenson (early)</name> | ||
<explanation>Neal Stephenson (early) explanation</explanation> | ||
</option> | ||
<option points="5"> | ||
<name>Earnest Hemingway</name> | ||
<explanation>Earnest Hemingway</explanation> | ||
</option> | ||
</criterion> | ||
<criterion> | ||
<name>Clear-headed</name> | ||
<prompt>How clear is the thinking?</prompt> | ||
<option points="0"> | ||
<name>Yogi Berra</name> | ||
<explanation>Yogi Berra explanation</explanation> | ||
</option> | ||
<option points="1"> | ||
<name>Hunter S. Thompson</name> | ||
<explanation>Hunter S. Thompson explanation</explanation> | ||
</option> | ||
<option points="2"> | ||
<name>Robert Heinlein</name> | ||
<explanation>Robert Heinlein explanation</explanation> | ||
</option> | ||
<option points="3"> | ||
<name>Isaac Asimov</name> | ||
<explanation>Isaac Asimov explanation</explanation> | ||
</option> | ||
<option points="10"> | ||
<name>Spock</name> | ||
<explanation>Spock explanation</explanation> | ||
</option> | ||
</criterion> | ||
<criterion> | ||
<name>Form</name> | ||
<prompt>Lastly, how is its form? Punctuation, grammar, and spelling all count.</prompt> | ||
<option points="0"> | ||
<name>lolcats</name> | ||
<explanation>lolcats explanation</explanation> | ||
</option> | ||
<option points="1"> | ||
<name>Facebook</name> | ||
<explanation>Facebook explanation</explanation> | ||
</option> | ||
<option points="2"> | ||
<name>Reddit</name> | ||
<explanation>Reddit explanation</explanation> | ||
</option> | ||
<option points="3"> | ||
<name>metafilter</name> | ||
<explanation>metafilter explanation</explanation> | ||
</option> | ||
<option points="4"> | ||
<name>Usenet, 1996</name> | ||
<explanation>Usenet, 1996 explanation</explanation> | ||
</option> | ||
<option points="5"> | ||
<name>The Elements of Style</name> | ||
<explanation>The Elements of Style explanation</explanation> | ||
</option> | ||
</criterion> | ||
</rubric> | ||
<assessments> | ||
<assessment name="peer-assessment" must_grade="5" must_be_graded_by="3" /> | ||
<assessment name="self-assessment" /> | ||
</assessments> | ||
</openassessment> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters