Changes between Version 5 and Version 6 of BoltIntro
- Timestamp:
- Oct 3, 2007, 10:21:45 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoltIntro
v5 v6 20 20 Using Bolt, you can 21 21 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. 24 24 25 25 Given such a course, Bolt does the following: … … 49 49 == Course documents == 50 50 51 The 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 51 77 == The bigger picture == 52 78