-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #350 from oat-sa/feat/PISA25-212/allow-dir-attr
feat: allow to use dir attr in itemBody element
- Loading branch information
Showing
4 changed files
with
46 additions
and
0 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
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
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,26 @@ | ||
<assessmentItem xmlns="http://www.imsglobal.org/xsd/imsqti_v2p2" xmlns:m="http://www.w3.org/1998/Math/MathML" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p2 http://www.imsglobal.org/xsd/qti/qtiv2p2/imsqti_v2p2.xsd" | ||
identifier="item_body_dir_attr" title="RTL Examples 5" label="RTL Hebrew" xml:lang="he-IL" | ||
adaptive="false" timeDependent="false" toolName="TAO" toolVersion="2022.11"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="multiple" baseType="identifier"/> | ||
<outcomeDeclaration identifier="SCORE" cardinality="single" baseType="float" normalMaximum="0"/> | ||
<outcomeDeclaration identifier="MAXSCORE" cardinality="single" baseType="float"> | ||
<defaultValue> | ||
<value>0</value> | ||
</defaultValue> | ||
</outcomeDeclaration> | ||
<itemBody dir="rtl"> | ||
<div class="grid-row"> | ||
<div class="col-12"> | ||
<choiceInteraction responseIdentifier="RESPONSE" shuffle="false" maxChoices="0" minChoices="0" | ||
orientation="vertical"> | ||
<simpleChoice identifier="choice_1" fixed="false" showHide="show">東北</simpleChoice> | ||
<simpleChoice identifier="choice_2" fixed="false" showHide="show">北陸</simpleChoice> | ||
<simpleChoice identifier="choice_3" fixed="false" showHide="show">甲信越</simpleChoice> | ||
</choiceInteraction> | ||
</div> | ||
</div> | ||
</itemBody> | ||
<responseProcessing template="http://www.imsglobal.org/question/qti_v2p2/rptemplates/match_correct"/> | ||
</assessmentItem> |