Changes between Version 20 and Version 21 of BoltRef


Ignore:
Timestamp:
Dec 31, 2007, 9:11:09 AM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltRef

    v20 v21  
    325325        filename('file_1.php')
    326326    ),
    327     repeat(.3, basic_review(), false, false),
    328     repeat(.7, int_review(), true, false),
    329     repeat(1.0, null, null, true),
     327    repeat(.3, basic_review(), REVIEW),
     328    repeat(.7, int_review(), REVIEW|REPEAT),
     329    repeat(1.0, null, REPEAT|NEXT),
    330330    refresh(array(7,14,28))
    331331);
     
    339339Each repeat item is a function call of the form
    340340{{{
    341 repeat(grade_threshold, review_unit, review_optional, repeat_optional);
     341repeat(grade_threshold, review_unit, nav_flags);
    342342}}}
    343343The arguments are:
    344344 * grade_threshold: the highest grade to which this item applies
    345345 * review_unit: a unit that reviews the material assessed by for the exercise set.
    346  * review_optional: whether the review is optional.
    347  * repeat_optional: whether repeating the exercise set is optional
     346 * nav_flags: a bitmask determining which navigation options will be presented:
     347  * REVIEW: show the review units, then retake the exercise set
     348  * REPEAT: retake with exercise set immediately
     349  * NEXT: continue without retaking the exercise set
    348350
    349351A student's score on an exercise set is the average score of the selected exercises.