Annotation of loncom/html/adm/help/ext_examples.problem, revision 1.1

1.1     ! www         1: <problem>
        !             2: <import id="11">ext_examples.library</import>
        !             3: <startouttext />
        !             4: <hr />
        !             5: Some things to do with &amp;EXT() inside of a homework problem.<br />
        !             6: Anything data that shows up in the 'all deatils' view in PGRD is avaliable, as is the current value of any 
        !             7: <table border="1">
        !             8: <tr><th>Incantation</th><th>result</th><th>Explanation</th></tr>
        !             9: <tr><td>user.resource.resource.&lt;partid&gt;.&lt;responseid&gt;.submission</td><td>&EXT('user.resource.resource.0.12.submission')</td>
        !            10:     <td>text of the most recent submission</td></tr>
        !            11: <tr><td>user.resource.resource.&lt;partid&gt;.&lt;responseid&gt;.awarddetail</td><td>&EXT('user.resource.resource.0.12.awarddetail')</td>
        !            12:     <td>Detail of how the most recent submission was graded. </td></tr>
        !            13: <tr><td>user.resource.1:resource.&lt;partid&gt;.&lt;responseid&gt;.submission</td><td>&EXT('user.resource.1:resource.0.12.submission')</td>
        !            14:     <td>text of the submission on the first submission to the problem. The '1:' is not neccessarily the first try on the problem, rather it referes to the first 'transaction' in the data for this problem. Take a look at PGRD for a problem with the submissions view set to 'all details'.</td></tr>
        !            15: 
        !            16: <tr><td>user.resource.resource.&lt;partid&gt;.tries</td><td>&EXT('user.resource.resource.0.tries')</td>
        !            17:     <td>current number of tries on the problem</td></tr>
        !            18: <tr><td>user.resource.resource.&lt;partid&gt;.solved</td><td>&EXT('user.resource.resource.0.solved')</td>
        !            19:     <td>current status of the problem</td></tr>
        !            20: <tr><td>user.resource.resource.&lt;partid&gt;.awarded</td><td>&EXT('user.resource.resource.0.awarded')</td>
        !            21:     <td>A floating point number between 0 and 1 inclusive, that is the percentage  of the weight for this problem.</td></tr>
        !            22: <tr><td>user.resource.resource.&lt;partid&gt;.award</td><td>&EXT('user.resource.resource.0.award')</td>
        !            23:     <td>Detailed award of the most recent part was graded. (This will be one of the &lt;responseid&gt;'s <tt>awarddetail</tt></td></tr>
        !            24: </table>
        !            25: <hr />
        !            26: You can get access to the current values of some parameters. But these only work reliably in a published problem that is in a course. <br />
        !            27: <table border="1">
        !            28: <tr><th>Incantation</th><th>result</th><th>Explanation</th></tr>
        !            29: <tr><td>resource.&lt;partid&gt;.&lt;responseid&gt;.tolerance</td><td>&EXT('resource.0.12.tolerance')</td>
        !            30:     <td>Current setting of the tolerance parameter for the particular response.</td></tr>
        !            31: <tr><td>resource.&lt;partid&gt;.maxtries</td><td>&EXT('resource.0.maxtries')</td>
        !            32:     <td>Current setting for the maximum number of tries for the part.</td></tr>
        !            33: 
        !            34: </table>
        !            35: <hr /><endouttext />
        !            36: <startouttext />
        !            37: <br />The answer is 1<br />
        !            38: <endouttext />
        !            39: <numericalresponse id="12" answer="1">
        !            40:     <responseparam description="Numerical Tolerance" default="5%" type="tolerance" name="tol" />
        !            41:   <textline />
        !            42: </numericalresponse>
        !            43: </problem>

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