2012-03-03 11:11:05 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Recollection Test</title>
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2012-03-03 23:33:16 -05:00
|
|
|
<h1 class="until-testing">Recollection Test</h1>
|
2012-03-03 11:11:05 -05:00
|
|
|
<noscript>
|
|
|
|
<p>It appears that you have JavaScript disabled. Please consult your
|
|
|
|
browser's documentation to enable it before continuing. Don't worry - it
|
|
|
|
is <a href="http://www.gnu.org/philosophy/free-sw.html">Free Software</a>.
|
|
|
|
</p>
|
|
|
|
</noscript>
|
|
|
|
|
|
|
|
<div class="until hasjs">
|
|
|
|
Please wait while we get our act together... (Loading)
|
|
|
|
</div>
|
|
|
|
|
2012-03-03 17:32:33 -05:00
|
|
|
<!-- status (while testing) -->
|
|
|
|
<div class="statusbar-area while-testing">
|
|
|
|
<div class="statusbar">
|
|
|
|
TODO
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-03-03 23:33:16 -05:00
|
|
|
|
|
|
|
<!-- configure -->
|
|
|
|
<div class="hasjs topbox notice while-idle">
|
|
|
|
Please configure the test using the form below.
|
|
|
|
</div>
|
2012-03-03 17:35:31 -05:00
|
|
|
<div class="hasjs config while-idle">
|
2012-03-03 11:11:05 -05:00
|
|
|
<h2 class="title">Test Setup</h2>
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt>Test Case</dt>
|
|
|
|
<dd>
|
|
|
|
<select id="case">
|
|
|
|
<option value="">(Select)</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Set Complexity</dt>
|
|
|
|
<dd>
|
|
|
|
<select id="set">
|
|
|
|
<option value="0">Basic</option>
|
|
|
|
<option value="1">Fair</option>
|
|
|
|
<option value="2">Complex</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Interval</dt>
|
|
|
|
<dd><input type="number" id="interval" value="5.0" /> seconds</dd>
|
|
|
|
|
|
|
|
<dt>Blank Period</dt>
|
2012-03-03 12:06:40 -05:00
|
|
|
<dd><input type="number" id="blank" value="5.0" /> seconds</dd>
|
2012-03-03 11:11:05 -05:00
|
|
|
|
|
|
|
<dt>Sample Size</dt>
|
2012-03-04 07:31:04 -05:00
|
|
|
<dd>
|
|
|
|
<input type="number" id="samples" value="10" />
|
|
|
|
<select id="ralgo">
|
|
|
|
<option value="0">Random, All Inclusive</option>
|
|
|
|
<option value="1">Random, Grouped</option>
|
|
|
|
<option value="2">Random</option>
|
|
|
|
<option value="3">Ordered</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
2012-03-03 11:11:05 -05:00
|
|
|
|
|
|
|
<dt>Begin Delay</dt>
|
|
|
|
<dd><input type="number" id="delay" value="5.0" /> seconds</dd>
|
|
|
|
</dl>
|
|
|
|
|
2012-03-03 23:33:16 -05:00
|
|
|
<button id="continue" class="action">Continue »</button>
|
2012-03-03 11:11:05 -05:00
|
|
|
<br clear="both" />
|
|
|
|
</div>
|
|
|
|
|
2012-03-03 23:33:16 -05:00
|
|
|
|
|
|
|
<!-- pending -->
|
|
|
|
<div class="topbox notice while-pending">
|
|
|
|
Test configured. Click "Begin Test" to continue, or "Reconfigure" to alter
|
|
|
|
the configuration.
|
|
|
|
</div>
|
|
|
|
<div class="while-pending">
|
2012-03-04 06:55:16 -05:00
|
|
|
<p>
|
|
|
|
To share this configuration with others, please use the following URL:
|
|
|
|
(TODO)
|
|
|
|
</p>
|
|
|
|
During the test, you may move your mouse cursor toward the bottom of the
|
|
|
|
screen to view test status and additional options. Please note that this
|
|
|
|
feature should be ignored during actual testing so as not to distract
|
|
|
|
the testee.
|
|
|
|
<p>
|
2012-03-03 23:33:16 -05:00
|
|
|
</p>
|
|
|
|
<div>
|
|
|
|
<button id="reconfigure">« Reconfigure</button>
|
|
|
|
<button id="run">Begin Test »</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-03-03 11:11:05 -05:00
|
|
|
<script type="text/javascript" src="scripts/jquery-1.7.1.min.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/ease.min.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/main.js"></script>
|
2012-03-04 07:31:04 -05:00
|
|
|
|
|
|
|
<!-- we will have the option to minify these in the future; this is for
|
|
|
|
development purposes -->
|
|
|
|
<script type="text/javascript" src="scripts/set/Set.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/set/RandomGroupedSet.js"></script>
|
2012-03-04 08:50:32 -05:00
|
|
|
<script type="text/javascript" src="scripts/set/RandomAllInclusiveSet.js"></script>
|
2012-03-04 07:31:04 -05:00
|
|
|
<script type="text/javascript" src="scripts/set/SetFactory.js"></script>
|
2012-03-03 12:06:40 -05:00
|
|
|
<script type="text/javascript" src="scripts/TestCase.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/TestRun.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/TestRunner.js"></script>
|
|
|
|
<script type="text/javascript" src="scripts/ColorTestCase.js"></script>
|
2012-03-03 20:53:23 -05:00
|
|
|
<script type="text/javascript" src="scripts/RecTest.js"></script>
|
2012-03-03 11:11:05 -05:00
|
|
|
</body>
|
|
|
|
</html>
|