Changes between Version 5 and Version 6 of BoltIntro


Ignore:
Timestamp:
Oct 3, 2007, 10:21:45 AM (17 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltIntro

    v5 v6  
    2020Using Bolt, you can
    2121
    22  * create exercises or quizzes of various types: multiple-choice, fill in the blank, graphical, etc.
    23  * specify a ''course'' as a sequence of alternating lessons and exercises.
     22 * Create exercises or quizzes of various types: multiple-choice, fill in the blank, graphical, etc.
     23 * Specify a ''course'' as a sequence of alternating lessons and exercises.
    2424
    2525Given such a course, Bolt does the following:
     
    4949== Course documents ==
    5050
     51The structure of a Bolt course is defined by a [http://www.ietf.org/rfc/rfc4627.txt?number=4627 JSON] document:
     52{{{
     53{
     54   "name": "Identifying Sierra Conifers",
     55   "description: "Learn to identify the major conifers of California's Sierra Nevada",
     56   "content": [
     57      {
     58          "type": "lesson",
     59          "name": "Introduction",
     60          "file": "intro.html"
     61      },
     62      {
     63          "type": "lesson",
     64          "name": "The Linnaean hierarchy",
     65          "file": "linnaean.html"
     66      },
     67      {
     68          "type": "exercise",
     69          "file": "linnaean.php"
     70      }
     71   ]
     72}
     73}}}
     74
     75== Policies ==
     76
    5177== The bigger picture ==
    5278