diff --git a/README.md b/README.md index ad39658..8aac355 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **Spoor** is an *extension* bundled with the [Adapt framework](https://github.com/adaptlearning/adapt_framework). -This extension provides course tracking functionality (hence the name [spoor](https://en.wikipedia.org/wiki/Spoor_(animal))) via [SCORM](https://en.wikipedia.org/wiki/Sharable_Content_Object_Reference_Model) standards for compliant [Learning Management Systems (LMS)](https://en.wikipedia.org/wiki/Learning_management_system). As default, only SCORM 1.2 or SCORM 2004 4th Edition files are included. See [_scormVersion](https://github.com/adaptlearning/adapt-contrib-spoor#_scormVersion) for details on how to configure this accordingly. +This extension provides course tracking functionality (hence the name [spoor](https://en.wikipedia.org/wiki/Spoor_(animal))) via [SCORM](https://en.wikipedia.org/wiki/Sharable_Content_Object_Reference_Model) standards for compliant [Learning Management Systems (LMS)](https://en.wikipedia.org/wiki/Learning_management_system). As default, only SCORM 1.2 or SCORM 2004 4th Edition files are included. See [_scormVersion](https://github.com/adaptlearning/adapt-contrib-spoor?tab=readme-ov-file#_scormversion-string) for details on how to configure this accordingly. **Spoor** makes use of the excellent [pipwerks SCORM API Wrapper](https://github.com/pipwerks/scorm-api-wrapper/). @@ -10,30 +10,32 @@ This extension provides course tracking functionality (hence the name [spoor](ht ## Installation -As one of Adapt's *[core extensions](https://github.com/adaptlearning/adapt_framework/wiki/Core-Plug-ins-in-the-Adapt-Learning-Framework#extensions),* **Spoor** is included with the [installation of the Adapt framework](https://github.com/adaptlearning/adapt_framework/wiki/Manual-installation-of-the-Adapt-framework#installation) and the [installation of the Adapt authoring tool](https://github.com/adaptlearning/adapt_authoring/wiki/Installing-Adapt-Origin). +As one of Adapt's *[core extensions](https://github.com/adaptlearning/adapt_framework/wiki/Core-Plug-ins-in-the-Adapt-Learning-Framework#extensions),* **Spoor** is included with the [installation of the Adapt framework](https://github.com/adaptlearning/adapt_framework/wiki/Manual-installation-of-the-Adapt-framework#installation) and the [installation of the Adapt authoring tool](https://github.com/adaptlearning/adapt_authoring/wiki/Installing-the-Authoring-Tool). -* If **Spoor** has been uninstalled from the Adapt framework, it may be reinstalled. -With the [Adapt CLI](https://github.com/adaptlearning/adapt-cli) installed, run the following from the command line: +If **Spoor** has been uninstalled from the Adapt framework, it may be reinstalled using one of the following methods: + +* With the [Adapt CLI](https://github.com/adaptlearning/adapt-cli) installed, run the following from the command line: `adapt install adapt-contrib-spoor` - Alternatively, this component can also be installed by adding the following line of code to the *adapt.json* file: - `"adapt-contrib-spoor": "*"` - Then running the command: - `adapt install` - (This second method will reinstall all plug-ins listed in *adapt.json*.) +* Alternatively, add the following line of code to the *adapt.json* file: + `"adapt-contrib-spoor": "*"` + Then run the command `adapt install`. This will reinstall all plug-ins listed in *adapt.json*. + +If **Spoor** has been uninstalled from the Adapt authoring tool, it may be reinstalled using the Plug-in Manager. -* If **Spoor** has been uninstalled from the Adapt authoring tool, it may be reinstalled using the [Plug-in Manager](https://github.com/adaptlearning/adapt_authoring/wiki/Plugin-Manager).
## Usage Instructions + The following must be completed in no specific order: -- [Add tracking IDs in *blocks.json*.](#add-tracking-ids) -- [Configure *config.json*.](#configure-configjson) + +* [Add tracking IDs in *blocks.json*](#add-tracking-ids) +* [Configure *config.json*](#configure-configjson) ### Add tracking IDs Each block in *blocks.json* **must** include the following attribute: -`"_trackingId": ` +`"_trackingId":` Its value must be a unique number. There is no requirement that these values be sequential, but it is recommended as it can aid in debugging tracking issues if they are. Best practice begins the sequence of tracking IDs with `0`. An alternative to manually inserting the tracking IDs is to run the following grunt command. With your course root as the current working directory, run: @@ -43,112 +45,139 @@ If later you add more blocks, run this again to assign tracking IDs to the new b ### Configure *config.json* -**NOTE:** as of Adapt/Spoor v3 you will first need to configure the settings in the **\_completionCriteria** object in config.json to specify whether you want course completion to be based on content completion, assessment completion, or both. (In earlier versions of Spoor these settings were part of the spoor configuration - but were moved to the core of Adapt so that they could be used by other tracking extensions such as xAPI.) -The attributes listed below are used in *config.json* to configure **Spoor**, and are properly formatted as JSON in [*example.json*](https://github.com/adaptlearning/adapt-contrib-spoor/blob/master/example.json). Visit the [**Spoor** wiki](https://github.com/adaptlearning/adapt-contrib-spoor/wiki) for more information about how they appear in the [authoring tool](https://github.com/adaptlearning/adapt_authoring/wiki). +**NOTE:** As of Adapt/Spoor v3, you will first need to configure the settings in the **\_completionCriteria** object in config.json to specify whether you want course completion to be based on content completion, assessment completion, or both. In earlier versions of Spoor, these settings were part of the spoor configuration - but were moved to the core of Adapt so that they could be used by other tracking extensions such as xAPI. +The attributes listed below are used in *config.json* to configure **Spoor**, and are properly formatted as JSON in [*example.json*](https://github.com/adaptlearning/adapt-contrib-spoor/blob/master/example.json). Visit the [**Spoor** wiki](https://github.com/adaptlearning/adapt-contrib-spoor/wiki) for more information about how they appear in the [authoring tool](https://github.com/adaptlearning/adapt_authoring/wiki). ## Attributes -### \_spoor (object): +### \_spoor (object) The `_spoor` object contains the setting `_isEnabled` and the `_tracking`, `_reporting` and `_advancedSettings` objects. -#### \_isEnabled (boolean): +#### \_isEnabled (boolean) + Enables/disables this extension. If set to `true` (the default value), the plugin will try to connect to a SCORM conformant LMS when the course is launched via *index_lms.html*. If one is not available, a 'Could not connect to LMS' error message will be displayed. This error can be avoided during course development either by setting this to `false` or - more easily - by launching the course via *index.html*. This latter technique is also useful if you are developing a course that could be run either from an LMS or a regular web server. -#### \_tracking (object): +#### \_tracking (object) This object defines what kinds of data to record to the LMS. It consists of the following settings: -##### \_shouldSubmitScore (boolean): +##### \_shouldSubmitScore (boolean) + Determines whether the assessment score will be reported to the LMS. Note that SCORM only supports one score per SCO, so if you have multiple assessments within your course, one aggregated score will be recorded. Acceptable values are `true` or `false`. The default is `false`. -##### \_shouldStoreResponses (boolean): +##### \_shouldStoreResponses (boolean) + Determines whether the user's responses to questions should be persisted across sessions (by storing them in `cmi.suspend_data`) or not. Acceptable values are `true` or `false`. The default is `true`. Note that if you set this to `true`, the user will not be able to attempt questions within the course again unless some mechanism for resetting them is made available (for example, see `_isResetOnRevisit` in [adapt-contrib-assessment](https://github.com/adaptlearning/adapt-contrib-assessment)). -##### \_shouldStoreAttempts (boolean): +##### \_shouldStoreAttempts (boolean) + Determines whether the history of the user's responses to questions should be persisted across sessions (by storing them in `cmi.suspend_data`) or not. Acceptable values are `true` or `false`. The default is `false`. -##### \_shouldRecordInteractions (boolean): +##### \_shouldRecordInteractions (boolean) + Determines whether the user's responses to questions should be tracked to the `cmi.interactions` fields of the SCORM data model or not. Acceptable values are `true` or `false`. The default is `true`. Note that not all SCORM 1.2 conformant Learning Management Systems support `cmi.interactions`. The code will attempt to detect whether support is implemented or not and, if not, will fail gracefully. Occasionally the code is unable to detect when `cmi.interactions` are not supported, in those (rare) instances you can switch off interaction tracking using this property so as to avoid 'not supported' errors. You can also switch off interaction tracking for any individual question using the `_recordInteraction` property of question components. All core question components support recording of interactions, community components will not necessarily do so. -##### \_shouldCompress (boolean): +##### \_shouldCompress (boolean) + Allow variable LZMA compress on component state data. The default is `false`. -#### \_reporting (object): +#### \_reporting (object) + This object defines what status to report back to the LMS. It consists of the following settings: -##### \_onTrackingCriteriaMet (string): +##### \_onTrackingCriteriaMet (string) + Specifies the status that is reported to the LMS when the tracking criteria (as defined in the `_completionCriteria` object in config.json) are met. Acceptable values are: `"completed"`, `"passed"`, `"failed"`, and `"incomplete"`. If you are tracking a course by assessment, you would typically set this to `"passed"`. Otherwise, `"completed"` is the usual value. -##### \_onAssessmentFailure (string): +##### \_onAssessmentFailure (string) + Specifies the status that is reported to the LMS when the assessment is failed. Acceptable values are `"failed"` and `"incomplete"`. Some Learning Management Systems will prevent the user from making further attempts at the course after status has been set to `"failed"`. Therefore, it is common to set this to `"incomplete"` to allow the user more attempts to pass an assessment. -##### \_resetStatusOnLanguageChange (boolean): -If set to `true` the status of the course is set to "incomplete" when the languge is changed using the [adapt-contrib-languagePicker plugin](https://github.com/adaptlearning/adapt-contrib-languagepicker). Acceptable values are `true` or `false`. The default is `false`. +##### \_resetStatusOnLanguageChange (boolean) + +If set to `true` the status of the course is set to "incomplete" when the languge is changed using the [adapt-contrib-languagePicker](https://github.com/adaptlearning/adapt-contrib-languagepicker) plugin. Acceptable values are `true` or `false`. The default is `false`. -#### \_advancedSettings (object): +#### \_advancedSettings (object) The advanced settings objects contains the following settings. Note that you only need to include advanced settings if you want to change any of the following settings from their default values - and you only need to include those settings you want to change. -##### \_scormVersion (string): +##### \_scormVersion (string) + This property defines what version of SCORM is targeted. Only SCORM 1.2 and SCORM 2004 4th Edition files are included. To use a different SCORM 2004 Edition, replace the [*scorm/2004*](https://github.com/adaptlearning/adapt-contrib-spoor/blob/master/scorm/2004) files accordingly - examples can be found at [scorm.com](http://scorm.com/scorm-explained/technical-scorm/content-packaging/xml-schema-definition-files/). Acceptable values are `"1.2"` or `"2004"`. The default is `"1.2"`. -##### \_showDebugWindow (boolean): +##### \_showDebugWindow (boolean) + If set to `true`, a pop-up window will be shown on course launch that gives detailed information about what SCORM calls are being made. This can be very useful for debugging SCORM issues. Note that this pop-up window will appear automatically if the SCORM code encounters an error, even if this is set to `false`. You can also hold down the keys d+e+v to force the popup window to open. The default is `false`. -##### \_suppressErrors (boolean): +##### \_suppressErrors (boolean) + If set to `true`, an alert dialog will NOT be shown when a SCORM error occurs. Errors will still be logged but the user will not be informed that a problem has occurred. Note that setting `_showDebugWindow` to `true` will still cause the debug popup window to be shown on course launch, this setting merely suppresses the alert dialog that would normally be shown when a SCORM error occurs. *This setting should be used with extreme caution as, if enabled, users will not be told about any LMS connectivity issues or other SCORM tracking problems.* -##### \_commitOnStatusChange (boolean): +##### \_commitOnStatusChange (boolean) + Determines whether a "commit" call should be made automatically every time the SCORM *lesson_status* is changed. The default is `true`. -##### \_commitOnAnyChange (boolean): -Determines whether a "commit" call should be made automatically _every time_ any SCORM value is changed. The default is `false`. Setting `_commitOnAnyChange` to `true` will disable 'timed commits'. **Note:** enabling this setting will make the course generate a lot more client-server traffic so you should only enable it if you are sure it is needed and, as it may have a detrimental impact on server performance, after careful load-testing. An alternative might be to first try setting a lower value for `_timedCommitFrequency`. +##### \_commitOnAnyChange (boolean) + +Determines whether a "commit" call should be made automatically *every time* any SCORM value is changed. The default is `false`. Setting `_commitOnAnyChange` to `true` will disable 'timed commits'. **Note:** enabling this setting will make the course generate a lot more client-server traffic so you should only enable it if you are sure it is needed and, as it may have a detrimental impact on server performance, after careful load-testing. An alternative might be to first try setting a lower value for `_timedCommitFrequency`. + +##### \_timedCommitFrequency (number) -##### \_timedCommitFrequency (number): Specifies the frequency - in minutes - at which a "commit" call will be made. Set this value to `0` to disable automatic commits. The default is `10`. -##### \_maxCommitRetries (number): +##### \_maxCommitRetries (number) + If a "commit" call fails, this setting specifies how many more times the "commit" call will be attempted before giving up and throwing an error. The default is `5`. -##### \_commitRetryDelay (number): +##### \_commitRetryDelay (number) + Specifies the interval in milliseconds between commit retries. The default is `2000`. -##### \_commitOnVisibilityChangeHidden (boolean): -Determines whether or not a "commit" call should be made when the [visibilityState](https://developer.mozilla.org/en-US/docs/Web/API/Document/visibilityState) of the course page changes to `"hidden"`. This functionality helps to ensure that tracking data is saved whenever the user switches to another tab or minimises the browser window - and is only available in [browsers that support the Page Visibility API](http://caniuse.com/#search=page%20visibility). The default is `true`. +##### \_commitOnVisibilityChangeHidden (boolean) + +Determines whether or not a "commit" call should be made when the [visibilityState](https://developer.mozilla.org/en-US/docs/Web/API/Document/visibilityState) of the course page changes to `"hidden"`. This functionality helps to ensure that tracking data is saved whenever the user switches to another tab or minimises the browser window - and is only available in [browsers that support the Page Visibility API](http://caniuse.com/?search=page%20visibility). The default is `true`. + +##### \_manifestIdentifier (string) -##### \_manifestIdentifier (string): Used to set the `identifier` attribute of the `