File:  [LON-CAPA] / loncom / homework / templates / SimpleMatching.problem
Revision 1.5: download - view: text, annotated - select for diffs
Mon Jul 6 17:12:47 2009 UTC (14 years, 10 months ago) by bisitz
Branches: MAIN
CVS tags: version_2_9_99_0, version_2_12_X, version_2_11_X, version_2_11_4_uiuc, version_2_11_4_msu, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3, version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, version_2_11_1, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, BZ4492-merge, BZ4492-feature_horizontal_radioresponse, BZ4492-feature_Support_horizontal_radioresponse, BZ4492-Support_horizontal_radioresponse
Consistent problem templates:
- New line after each tag (not for texts in foils)
- One empty row after each end tag and before new start tag for second level tags
- No indentation for second level tags, e.g. <script>
- Four white spaces as indentation for each further sub level
    Exceptions:
        -Content (mostly text) in separate line(s): no indentation
        - Concept groups: same indentation as foilgroup
          (allows to insert code from problems without concept groups without changing the indentation and vice versa)
- No new line at end of template
- Removed new lines from within the middle of default texts
- Added one blank each after "<m>$" and before "$</m>" to ensure no misinterpretation neither by human nor by machine (e.g. "<m>$x" is not "<m>$ $x")
- Replaced deprecated font tag in <instructorcomment> by CSS
- Removed dos line endings
- dos2unix conversion
  (ClickImageExample.problem, RandomLabelExample.problem, SimpleMatching.problem)

    1: <problem>
    2: 
    3: <startouttext />
    4: Match the author to their work.
    5: <endouttext />
    6: 
    7: <matchresponse max="10" randomize="yes">
    8:     <foilgroup>
    9:         <itemgroup>
   10:             <item name="shakespeare">
   11:                 <startouttext />William Shakespeare<endouttext />
   12:             </item>
   13:             <item name="alex">
   14:                 <startouttext />Aleksandr Isaevich Solzhenitsyn<endouttext />
   15:             </item>
   16:             <item name="dickinson">
   17:                 <startouttext />Emily Dickinson<endouttext />
   18:             </item>
   19:             <item location="bottom" name="none">
   20:                 <startouttext />None of the above<endouttext />
   21:             </item>
   22:         </itemgroup>
   23: 
   24:         <foil location="random" value="none" name="For Whom the Bell Tolls">
   25:             <startouttext />For Whom the Bell Tolls<endouttext />
   26:         </foil>
   27:         <foil location="random" value="alex" name="Gulag">
   28:             <startouttext />The Gulag Archipelago<endouttext />
   29:         </foil>
   30:         <foil location="random" value="none" name="Tom Sawyer">
   31:             <startouttext />Tom Sawyer<endouttext />
   32:         </foil>
   33:         <foil location="random" value="shakespeare" name="King Lear">
   34:             <startouttext />King Lear<endouttext />
   35:         </foil>
   36:         <foil location="random" value="none" name="Gettysburg Address">
   37:             <startouttext />Gettysburg Address<endouttext />
   38:         </foil>
   39:         <foil location="random" value="shakespeare" name="Hamlet">
   40:             <startouttext />Hamlet<endouttext />
   41:         </foil>
   42:     </foilgroup>
   43: </matchresponse>
   44: 
   45: </problem>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>