├── scripts ├── authentication.js ├── index.js ├── useradmin.js ├── manager.js ├── IATStyleLoader.js ├── jquery.jnotify │ ├── css │ │ ├── docs.css │ │ ├── jquery.jnotify.min.css │ │ ├── jquery.jnotify-bottom.css │ │ ├── jquery.jnotify.css │ │ └── jquery.jnotify-alt.css │ ├── lib │ │ ├── jquery.jnotify.min.js │ │ └── jquery.jnotify.js │ └── gettingstarted.htm ├── text.js ├── UserAdministration.js ├── CoreIAT.js ├── IAT.js ├── jquery.jeditable │ ├── jquery.jeditable.min.js │ └── jquery.jeditable.js └── sha1.js ├── Images ├── ajaxloader.gif └── disclosureTriangle.png ├── configuration ├── config.sample.js └── config.sample.php ├── css ├── blitzer │ └── images │ │ ├── ui-icons_004276_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ └── ui-bg_highlight-soft_15_cc0000_1x100.png ├── index.css ├── ClientIATManager.css └── dataTableStyle.css ├── .gitignore ├── server ├── deleteExperiment.php ├── downloadLogForExperiment.php ├── dataHandler.php ├── unlinkLogFileForExperiment.php ├── servererror.php ├── thankyou.php ├── downloadScoresFromExperiment.php ├── calculateScore.php ├── connectDatabase.php ├── downloadRawDataFromExperiment.php ├── uploadStoredData.php ├── hashGenerator.php ├── GlobalKLogger.php ├── processing.php ├── results.php ├── CSVMaker.php ├── rresults.php ├── GreenwaldIATProcessor.php └── IAT.php ├── IATStyles └── GreenwaldStimulus │ ├── GreenwaldStimulus.html │ ├── GreenwaldStimulus.css │ └── GreenwaldStimulus.js ├── readme.md ├── register └── index.html ├── about.html ├── .gitmodules ├── Testing └── testScoreCalculation.html ├── index.php ├── useradmin └── index.html ├── admin ├── index.html └── IATManager.php └── SQLVersionControl └── vc.sql /scripts/authentication.js: -------------------------------------------------------------------------------- 1 | function () { 2 | 3 | } 4 | 5 | -------------------------------------------------------------------------------- /Images/ajaxloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/Images/ajaxloader.gif -------------------------------------------------------------------------------- /Images/disclosureTriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/Images/disclosureTriangle.png -------------------------------------------------------------------------------- /scripts/index.js: -------------------------------------------------------------------------------- 1 | require(["jquery","IAT"],function ($,IAT) { 2 | IAT($.getUrlVar('i'),$('#contentDiv')); 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /configuration/config.sample.js: -------------------------------------------------------------------------------- 1 | 2 | //Configuration 3 | define({ 4 | IATBaseURL : '', 5 | managerFilePath : '' 6 | }); 7 | -------------------------------------------------------------------------------- /css/blitzer/images/ui-icons_004276_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-icons_004276_256x240.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /css/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephens2424/Web-IAT/HEAD/css/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png -------------------------------------------------------------------------------- /scripts/useradmin.js: -------------------------------------------------------------------------------- 1 | 2 | require(['UserAdministration'],function(UserAdministration) { 3 | $(function () { 4 | UserAdministration.appendUserTableToDiv($('#userTable')); 5 | }); 6 | }) 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #jQuery 2 | jquery.js 3 | 4 | #Logs 5 | log/* 6 | logs/* 7 | 8 | #Configuration 9 | configuration/config.js 10 | configuration/config.php 11 | 12 | #custom results 13 | Results 14 | 15 | -------------------------------------------------------------------------------- /server/deleteExperiment.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /scripts/manager.js: -------------------------------------------------------------------------------- 1 | require(["jquery","IAT","IATManager"], function ($,CoreIAT,IAT,IATManager) { 2 | $(function () { 3 | var IATManager = IAT.IATManager(); 4 | IATManager.appendExperimentSelectorTo($('.contentDiv')); 5 | }); 6 | }); 7 | -------------------------------------------------------------------------------- /configuration/config.sample.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- 1 | /* 2 | Document : index 3 | Created on : Aug 20, 2011, 11:38:40 AM 4 | Author : Stephen 5 | Description: 6 | Purpose of the stylesheet follows. 7 | */ 8 | 9 | /* 10 | TODO customize this sample style 11 | Syntax recommendation http://www.w3.org/TR/REC-CSS2/ 12 | */ 13 | 14 | root { 15 | display: block; 16 | } 17 | -------------------------------------------------------------------------------- /server/downloadLogForExperiment.php: -------------------------------------------------------------------------------- 1 | downloadLog(); 12 | exit; 13 | ?> 14 | -------------------------------------------------------------------------------- /server/dataHandler.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/unlinkLogFileForExperiment.php: -------------------------------------------------------------------------------- 1 | deleteLog(); 12 | echo $success; 13 | ?> 14 | -------------------------------------------------------------------------------- /IATStyles/GreenwaldStimulus/GreenwaldStimulus.html: -------------------------------------------------------------------------------- 1 |
| 321 | 322 | | 323 |324 | 325 | | 326 |
| 329 | 330 | | 331 |332 | 333 | | 334 |
338 |
339 | |
340 | |