Skip to content

Commit

Permalink
deploy: 6ccf243
Browse files Browse the repository at this point in the history
  • Loading branch information
baranan committed Apr 30, 2024
1 parent 4dd7282 commit 98b1c8f
Show file tree
Hide file tree
Showing 145 changed files with 152 additions and 212 deletions.
2 changes: 1 addition & 1 deletion docs/core/api/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/core/create/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/core/deploy/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/core/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/core/javascript/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/core/logger/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

70 changes: 2 additions & 68 deletions docs/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2597,7 +2597,8 @@ errorLatency : {use:"penalty", penalty:600, useForSTD:true},
<p>The PI tasks are easily extensible.</p>
<p><a href="http://www.bgu.ac.il/~baranany/">Yoav Bar-Anan</a> from <a href="https://implicit.harvard.edu/implicit/aboutus.html">Project Implicit</a>
has created several extensions for the easy creation of a few common reaction-time tasks.
You can find the instructions for using them right &lt;a href="https://git.io/JvE5H">here&lt;/a>.&lt;/p></description></item><item><title>Docs: Allow Leaving</title><link>/docs/manager/tasks/allowleaving/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/manager/tasks/allowleaving/</guid><description>
You can find the instructions for using them right &lt;a href="https://git.io/JvE5H">here&lt;/a>.&lt;/p></description></item><item><title>Docs:</title><link>/docs/start/test/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/start/test/</guid><description>
&lt;p>only a test&lt;/p></description></item><item><title>Docs: Allow Leaving</title><link>/docs/manager/tasks/allowleaving/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/manager/tasks/allowleaving/</guid><description>
&lt;p>By default, each time users attempt to leave the page, minno-manager inquires whether they actually mean it.
The &lt;code>allowLeave&lt;/code> task cancels this inquiry, and allows easily leaving the player..
It is usefull if you want to allow users to browse away from a page, for example toward the end of a task in a debriefing page.
Expand Down Expand Up @@ -4425,71 +4426,4 @@ win.activate(cm.getValue());
};
});
})('inheritanceAbstraction.md');
&lt;/script></description></item><item><title>Docs: inheritanceByData</title><link>/docs/sequencer/inheritance/inheritancebydata/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/sequencer/inheritance/inheritancebydata/</guid><description>
&lt;link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/codemirror.css" integrity="sha256-ylWkFzi+pmuVQm80SJjUJvNjzXmRc6+naSkH2xWL5+8=" crossorigin="anonymous">
&lt;link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/theme/monokai.css" integrity="sha256-JGPcb9kgGaDHyiqqAdAxFrKA+nxq4BvyHffBB9m2g+g=" crossorigin="anonymous">
&lt;script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/codemirror.min.js">&lt;/script>
&lt;script src="https://cdn.jsdelivr.net/npm/[email protected]/mode/javascript/javascript.js" integrity="sha256-XxB90cNdnOuUFQjAE56w4OBTdMu5SHChSz02/Ki3oAQ=" crossorigin="anonymous">&lt;/script>
&lt;div class="pg-section" id="pg-inheritanceByData.md">
&lt;p>
&lt;a class="pg-play btn btn-warning">&lt;i class="fas fa-play">&lt;/i> Run &lt;/a>
&lt;a class="pg-download btn btn-outline-warning">&lt;i class="fas fa-download">&lt;/i> Download &lt;/a>
&lt;/p>
&lt;textarea class="code-mirror" rows="40">
// Sometimes you need to handpick a specific object out of a set.
// `byData` allows you to do that by matching the `data` properties of the inherit object and the objects within the set.
// Note, that if there are multiple fits to your data object, a random object will be picked from among them.
define([&amp;#39;managerAPI&amp;#39;], function(Manager){
var API = new Manager();
API.addTasksSet(&amp;#39;default&amp;#39;, [
{
type:&amp;#39;message&amp;#39;,
keys: &amp;#39; &amp;#39;
}
]);
API.addTasksSet(&amp;#39;tasks&amp;#39;,[
{inherit:&amp;#39;default&amp;#39;, template:&amp;#39;Task 1&amp;#39;, data:{num:1}},
{inherit:&amp;#39;default&amp;#39;, template:&amp;#39;Task 2&amp;#39;, data:{num:2}},
{inherit:&amp;#39;default&amp;#39;, template:&amp;#39;Task 3&amp;#39;, data:{num:3}}
]);
API.addSequence([
{inherit:{set:&amp;#39;tasks&amp;#39;, type:&amp;#39;byData&amp;#39;, data:{num:2}}},
{inherit:{set:&amp;#39;tasks&amp;#39;, type:&amp;#39;byData&amp;#39;, data:{num:1}}},
{inherit:{set:&amp;#39;tasks&amp;#39;, type:&amp;#39;byData&amp;#39;, data:{num:3}}}
]);
return API.script;
});
&lt;/textarea>
&lt;/div>
&lt;script>
(function(filename){
var win, section;
var section = document.getElementById('pg-' + filename);
var el = section.querySelector('.code-mirror');
var cm = CodeMirror.fromTextArea(el,{ theme:'monokai' });
cm.setSize(null, 500);
section.querySelector('.pg-download').addEventListener('click', function(){
var blob = new Blob([cm.getValue()], { type: 'text/javascript' });
if (window.navigator.msSaveOrOpenBlob) window.navigator.msSaveBlob(blob, filename);
else {
var elem = window.document.createElement('a');
elem.href = window.URL.createObjectURL(blob);
elem.download = filename;
document.body.appendChild(elem);
elem.click();
document.body.removeChild(elem);
}
});
section.querySelector('.pg-play').addEventListener('click', function(){
var runminnoUrl = '\/runminno.html';
if (win) win.close();
win = window.open(runminnoUrl, 'Playground');
win.onload = function(){
win.addEventListener('unload', function() {
window.focus();
});
win.activate(cm.getValue());
};
});
})('inheritanceByData.md');
&lt;/script></description></item></channel></rss>
2 changes: 1 addition & 1 deletion docs/manager/api/custom-tasks/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/api/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/api/pibuild/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/api/settings/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/api/tasks/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/examples/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/examples/video/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/examples/weight/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/playground/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/allowleaving/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/injectstyle/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/istouch/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/messages/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/post/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/postcsv/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/quest/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/redirect/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/setvalue/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/time/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manager/tasks/yesno/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/pages/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/dropdown/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/grid/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/info/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/multigrid/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/rank/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/select/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/slider/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/text/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/questions/textnumber/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/api/settings/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/data/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/bodyawareness/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/buttons/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/buttonsadvanced/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/buttonsonepage/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/dependency/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/gridexample/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/livedependency/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/nfc/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/openended/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/openendedlong/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/playground/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/rateimages/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/rateimagessizes/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/scalewithfeedback/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/sliderexample/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/timer/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/userprevresp/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/usingimages/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/examples/weight/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/quest/introduction/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/resources/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritancebydata/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritancecustom/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritanceexrandom/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritancerandom/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritancerepeat/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/inheritance/inheritanceseed/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/introduction/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerbranch/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerchoose/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixermultibranch/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerrandom/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerrepeat/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerweightedrandom/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/mixer/mixerwrapper/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/sequencer/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/templates/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/variables/current/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/variables/global/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/variables/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/sequencer/variables/local/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/start/index.html

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/start/index.xml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Minno Suite – Getting started</title><link>/docs/start/</link><description>Recent content in Getting started on Minno Suite</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><atom:link href="/docs/start/index.xml" rel="self" type="application/rss+xml"/><item><title>Docs: Server</title><link>/docs/start/server/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/start/server/</guid><description/></item></channel></rss>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Minno Suite – Getting started</title><link>/docs/start/</link><description>Recent content in Getting started on Minno Suite</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><atom:link href="/docs/start/index.xml" rel="self" type="application/rss+xml"/><item><title>Docs: Server</title><link>/docs/start/server/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/start/server/</guid><description/></item><item><title>Docs:</title><link>/docs/start/test/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/docs/start/test/</guid><description>
&lt;p>only a test&lt;/p></description></item></channel></rss>
2 changes: 1 addition & 1 deletion docs/start/server/dashboard/admin/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/dashboard/data/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/dashboard/dropbox/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/dashboard/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/dashboard/researcher/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/dashboard/studydevelopment/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/awsinstallation/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/digitalocean/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/domain/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/manual/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/start/server/installation/requirements/index.html

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/start/test/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/media/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/scorer/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/settings/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/stimuli/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/actions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/conditions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/input/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/interactions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/api/trial/stimuli/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/data/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/helloplay/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/inheritance/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/input/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/interactions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/sequence/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/settings/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stimulus/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stroop-block/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stroop-inheritance/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stroop-interactions/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stroop-setup/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/stroop-task/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/touch/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/examples/trial/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/tutorials/hello/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/tutorials/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/time/tutorials/slideshow/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sitemap.xml

Large diffs are not rendered by default.

0 comments on commit 98b1c8f

Please sign in to comment.