Skip to content

Web implementation of the NASA-TLX survey, based on Keith Vertanen's one-page HTML/JS version.

Notifications You must be signed in to change notification settings

martinzuern/NASA-TLX

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NASA-TLX

Web implementation of the NASA-TLX survey, based on Keith Vertanen's one-page HTML/JS version.

The implementation polished the UI with jQuery and Bootstrap, and writes the results into a CSV file. Multiple languages supported (English, German and Dutch for now). PR are welcome to add more.

Language and Condition can be submitted by URL, e.g. http://foo.bar/index.php?lang=de_DE&id=A

Default, all submitted IDs are accepted. If you want to allow only specific values, add them to the valid_ids array.

Configuration options:

$config = array(
  // best kept outside www root
  'results_folder_path' => './results',

  // show a form for two ID variables instead of URL Parameter
  'ask_for_id' => false,

  // show a button to close the window at the end
  'showCloseButton' => true,

  // shall the results be visible for the participant?
  'showResults' => false,

 // default language. Currently, 'en_US'/'de_DE'/'nl_NL' are supported
  'defaultLang' => 'de_DE',

  // array with valid IDs. Keep empty to allow all.
  'valid_ids' => array()
);

About

Web implementation of the NASA-TLX survey, based on Keith Vertanen's one-page HTML/JS version.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 51.3%
  • JavaScript 38.9%
  • CSS 9.7%
  • ApacheConf 0.1%