add create_redirects.py and resulting output

This commit is contained in:
Josh de Leeuw 2021-10-01 18:28:07 -04:00
parent 763d637aa0
commit 585efbfc0f
159 changed files with 1490 additions and 0 deletions

9
about/about/index.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\about\about\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\about\about\index.html">..\..\7.0\about\about\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\6.3\about\contributing\index.html" />
</head>
<body>Redirecting to <a href="..\..\6.3\about\contributing\index.html">..\..\6.3\about\contributing\index.html</a>...</body>
</html>

9
about/license/index.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\about\license\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\about\license\index.html">..\..\7.0\about\license\index.html</a>...</body>
</html>

9
about/support/index.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\6.3\about\support\index.html" />
</head>
<body>Redirecting to <a href="..\..\6.3\about\support\index.html">..\..\6.3\about\support\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\reference\jspsych\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\reference\jspsych\index.html">..\..\7.0\reference\jspsych\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\reference\jspsych-data\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\reference\jspsych-data\index.html">..\..\7.0\reference\jspsych-data\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\reference\jspsych-pluginAPI\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\reference\jspsych-pluginAPI\index.html">..\..\7.0\reference\jspsych-pluginAPI\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\reference\jspsych-randomization\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\reference\jspsych-randomization\index.html">..\..\7.0\reference\jspsych-randomization\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\reference\jspsych-turk\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\reference\jspsych-turk\index.html">..\..\7.0\reference\jspsych-turk\index.html</a>...</body>
</html>

68
create_redirects.py Normal file
View File

@ -0,0 +1,68 @@
from pathlib import Path
from os.path import relpath
import re
ROOT_DIR = Path(".")
OLD_DOCS_DIR = ROOT_DIR / "6.3"
NEW_DOCS_DIR = ROOT_DIR / "7.0"
REDIRECT_TEMPLATE = """<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url={path}" />
</head>
<body>Redirecting to <a href="{path}">{path}</a>...</body>
</html>
"""
def make_redirect_document(redirect_path: str):
return REDIRECT_TEMPLATE.format(path=redirect_path)
def write_redirect(from_path: Path, to_path: Path):
from_path.parent.mkdir(parents=True, exist_ok=True)
from_path.write_text(make_redirect_document(relpath(to_path, from_path.parent)))
def get_relative_html_files(root_path: Path):
return set([file.relative_to(root_path) for file in root_path.glob("**/*.html")])
def rewrite_moved_path(path: Path):
"""
If given an old docs path, returns the new (renamed) version of that path, if the
path was renamed.
"""
parts = list(path.parts)
if parts[0] in ["plugins", "extensions"]:
parts[1] = re.sub(r"jspsych-(ext-)?", "", parts[1])
return Path(*parts)
if parts[0] == "core_library":
parts[0] = "reference"
if parts[1] == "jspsych-core":
parts[1] = "jspsych"
return Path(*parts)
return path
old_files = get_relative_html_files(OLD_DOCS_DIR)
new_files = get_relative_html_files(NEW_DOCS_DIR)
for file in old_files:
if str(file) not in ["index.html", "404.html"]:
rewritten_file = rewrite_moved_path(file)
write_redirect(
file,
NEW_DOCS_DIR / rewritten_file
if rewritten_file in new_files
else OLD_DOCS_DIR / file,
)

9
demos/external_page.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\external_page.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\external_page.html">..\7.0\demos\external_page.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\eye-tracking-with-webgazer.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\eye-tracking-with-webgazer.html">..\7.0\demos\eye-tracking-with-webgazer.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-animation-demo.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-animation-demo.html">..\7.0\demos\jspsych-animation-demo.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-button-response-demo-1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-button-response-demo-1.html">..\7.0\demos\jspsych-audio-button-response-demo-1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-button-response-demo-2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-button-response-demo-2.html">..\7.0\demos\jspsych-audio-button-response-demo-2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-keyboard-response-demo-1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-keyboard-response-demo-1.html">..\7.0\demos\jspsych-audio-keyboard-response-demo-1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-keyboard-response-demo-2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-keyboard-response-demo-2.html">..\7.0\demos\jspsych-audio-keyboard-response-demo-2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-slider-response-demo-1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-slider-response-demo-1.html">..\7.0\demos\jspsych-audio-slider-response-demo-1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-audio-slider-response-demo-2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-audio-slider-response-demo-2.html">..\7.0\demos\jspsych-audio-slider-response-demo-2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-call-function-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-call-function-demo1.html">..\7.0\demos\jspsych-call-function-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-call-function-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-call-function-demo2.html">..\7.0\demos\jspsych-call-function-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-call-function-demo3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-call-function-demo3.html">..\7.0\demos\jspsych-call-function-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-button-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-button-response-demo1.html">..\7.0\demos\jspsych-canvas-button-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-button-response-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-button-response-demo2.html">..\7.0\demos\jspsych-canvas-button-response-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-button-response-demo3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-button-response-demo3.html">..\7.0\demos\jspsych-canvas-button-response-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-keyboard-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-keyboard-response-demo1.html">..\7.0\demos\jspsych-canvas-keyboard-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-keyboard-response-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-keyboard-response-demo2.html">..\7.0\demos\jspsych-canvas-keyboard-response-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-slider-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-slider-response-demo1.html">..\7.0\demos\jspsych-canvas-slider-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-canvas-slider-response-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-canvas-slider-response-demo2.html">..\7.0\demos\jspsych-canvas-slider-response-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-categorize-animation-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-categorize-animation-demo1.html">..\7.0\demos\jspsych-categorize-animation-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-categorize-animation-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-categorize-animation-demo2.html">..\7.0\demos\jspsych-categorize-animation-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-categorize-html-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-categorize-html-demo1.html">..\7.0\demos\jspsych-categorize-html-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-categorize-image-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-categorize-image-demo1.html">..\7.0\demos\jspsych-categorize-image-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-cloze-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-cloze-demo1.html">..\7.0\demos\jspsych-cloze-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-cloze-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-cloze-demo2.html">..\7.0\demos\jspsych-cloze-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-external-html-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-external-html-demo1.html">..\7.0\demos\jspsych-external-html-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-free-sort-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-free-sort-demo1.html">..\7.0\demos\jspsych-free-sort-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-fullscreen-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-fullscreen-demo1.html">..\7.0\demos\jspsych-fullscreen-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-html-button-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-html-button-response-demo1.html">..\7.0\demos\jspsych-html-button-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-html-keyboard-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-html-keyboard-response-demo1.html">..\7.0\demos\jspsych-html-keyboard-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-html-keyboard-response-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-html-keyboard-response-demo2.html">..\7.0\demos\jspsych-html-keyboard-response-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-html-slider-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-html-slider-response-demo1.html">..\7.0\demos\jspsych-html-slider-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-iat-html-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-iat-html-demo1.html">..\7.0\demos\jspsych-iat-html-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-iat-image-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-iat-image-demo1.html">..\7.0\demos\jspsych-iat-image-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-image-button-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-image-button-response-demo1.html">..\7.0\demos\jspsych-image-button-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-image-keyboard-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-image-keyboard-response-demo1.html">..\7.0\demos\jspsych-image-keyboard-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-image-keyboard-response-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-image-keyboard-response-demo2.html">..\7.0\demos\jspsych-image-keyboard-response-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-image-slider-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-image-slider-response-demo1.html">..\7.0\demos\jspsych-image-slider-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-instructions-demo-1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-instructions-demo-1.html">..\7.0\demos\jspsych-instructions-demo-1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-instructions-demo-2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-instructions-demo-2.html">..\7.0\demos\jspsych-instructions-demo-2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-instructions-demo-3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-instructions-demo-3.html">..\7.0\demos\jspsych-instructions-demo-3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-maxdiff-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-maxdiff-demo1.html">..\7.0\demos\jspsych-maxdiff-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-preload-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-preload-demo1.html">..\7.0\demos\jspsych-preload-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-preload-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-preload-demo2.html">..\7.0\demos\jspsych-preload-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-preload-demo3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-preload-demo3.html">..\7.0\demos\jspsych-preload-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-preload-demo4.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-preload-demo4.html">..\7.0\demos\jspsych-preload-demo4.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\6.3\demos\jspsych-rdk-demo1.html" />
</head>
<body>Redirecting to <a href="..\6.3\demos\jspsych-rdk-demo1.html">..\6.3\demos\jspsych-rdk-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\6.3\demos\jspsych-rdk-demo2.html" />
</head>
<body>Redirecting to <a href="..\6.3\demos\jspsych-rdk-demo2.html">..\6.3\demos\jspsych-rdk-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\6.3\demos\jspsych-rdk-demo3.html" />
</head>
<body>Redirecting to <a href="..\6.3\demos\jspsych-rdk-demo3.html">..\6.3\demos\jspsych-rdk-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-reconstruction-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-reconstruction-demo1.html">..\7.0\demos\jspsych-reconstruction-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-resize-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-resize-demo1.html">..\7.0\demos\jspsych-resize-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-same-different-html-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-same-different-html-demo1.html">..\7.0\demos\jspsych-same-different-html-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-same-different-image-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-same-different-image-demo1.html">..\7.0\demos\jspsych-same-different-image-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-serial-reaction-time-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-serial-reaction-time-demo1.html">..\7.0\demos\jspsych-serial-reaction-time-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-serial-reaction-time-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-serial-reaction-time-demo2.html">..\7.0\demos\jspsych-serial-reaction-time-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-serial-reaction-time-mouse-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-serial-reaction-time-mouse-demo1.html">..\7.0\demos\jspsych-serial-reaction-time-mouse-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-serial-reaction-time-mouse-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-serial-reaction-time-mouse-demo2.html">..\7.0\demos\jspsych-serial-reaction-time-mouse-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-html-form-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-html-form-demo1.html">..\7.0\demos\jspsych-survey-html-form-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-html-form-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-html-form-demo2.html">..\7.0\demos\jspsych-survey-html-form-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-likert-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-likert-demo1.html">..\7.0\demos\jspsych-survey-likert-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-likert-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-likert-demo2.html">..\7.0\demos\jspsych-survey-likert-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-multi-choice-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-multi-choice-demo1.html">..\7.0\demos\jspsych-survey-multi-choice-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-multi-choice-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-multi-choice-demo2.html">..\7.0\demos\jspsych-survey-multi-choice-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-multi-select-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-multi-select-demo1.html">..\7.0\demos\jspsych-survey-multi-select-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-text-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-text-demo1.html">..\7.0\demos\jspsych-survey-text-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-text-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-text-demo2.html">..\7.0\demos\jspsych-survey-text-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-text-demo3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-text-demo3.html">..\7.0\demos\jspsych-survey-text-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-survey-text-demo4.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-survey-text-demo4.html">..\7.0\demos\jspsych-survey-text-demo4.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-video-button-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-video-button-response-demo1.html">..\7.0\demos\jspsych-video-button-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-video-keyboard-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-video-keyboard-response-demo1.html">..\7.0\demos\jspsych-video-keyboard-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-video-slider-response-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-video-slider-response-demo1.html">..\7.0\demos\jspsych-video-slider-response-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-virtual-chinrest-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-virtual-chinrest-demo1.html">..\7.0\demos\jspsych-virtual-chinrest-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-virtual-chinrest-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-virtual-chinrest-demo2.html">..\7.0\demos\jspsych-virtual-chinrest-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-virtual-chinrest-demo3.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-virtual-chinrest-demo3.html">..\7.0\demos\jspsych-virtual-chinrest-demo3.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-visual-search-circle-demo1.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-visual-search-circle-demo1.html">..\7.0\demos\jspsych-visual-search-circle-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\7.0\demos\jspsych-visual-search-circle-demo2.html" />
</head>
<body>Redirecting to <a href="..\7.0\demos\jspsych-visual-search-circle-demo2.html">..\7.0\demos\jspsych-visual-search-circle-demo2.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\6.3\demos\jspsych-vsl-animate-occlusion-demo1.html" />
</head>
<body>Redirecting to <a href="..\6.3\demos\jspsych-vsl-animate-occlusion-demo1.html">..\6.3\demos\jspsych-vsl-animate-occlusion-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\6.3\demos\jspsych-vsl-grid-scene-demo1.html" />
</head>
<body>Redirecting to <a href="..\6.3\demos\jspsych-vsl-grid-scene-demo1.html">..\6.3\demos\jspsych-vsl-grid-scene-demo1.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\6.3\extensions\extensions\index.html" />
</head>
<body>Redirecting to <a href="..\..\6.3\extensions\extensions\index.html">..\..\6.3\extensions\extensions\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\extensions\webgazer\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\extensions\webgazer\index.html">..\..\7.0\extensions\webgazer\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\browser-device-support\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\browser-device-support\index.html">..\..\7.0\overview\browser-device-support\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\6.3\overview\callbacks\index.html" />
</head>
<body>Redirecting to <a href="..\..\6.3\overview\callbacks\index.html">..\..\6.3\overview\callbacks\index.html</a>...</body>
</html>

9
overview/data/index.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\data\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\data\index.html">..\..\7.0\overview\data\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\dynamic-parameters\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\dynamic-parameters\index.html">..\..\7.0\overview\dynamic-parameters\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\exclude-browser\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\exclude-browser\index.html">..\..\7.0\overview\exclude-browser\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\experiment-options\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\experiment-options\index.html">..\..\7.0\overview\experiment-options\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\eye-tracking\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\eye-tracking\index.html">..\..\7.0\overview\eye-tracking\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\fullscreen\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\fullscreen\index.html">..\..\7.0\overview\fullscreen\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\media-preloading\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\media-preloading\index.html">..\..\7.0\overview\media-preloading\index.html</a>...</body>
</html>

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url=..\..\7.0\overview\mturk\index.html" />
</head>
<body>Redirecting to <a href="..\..\7.0\overview\mturk\index.html">..\..\7.0\overview\mturk\index.html</a>...</body>
</html>

Some files were not shown because too many files have changed in this diff Show More