Skip to content

Commit 73e39d5

Browse files
committed
fixing links in legacy documentation
1 parent a5fade0 commit 73e39d5

15 files changed

Lines changed: 17 additions & 15 deletions

File tree

docs/data-and-deployment/connecting-to-external-platform.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ When participants are recruited through a third-party platform, their unique ID
1717
```
1818

1919
When a participant visits the following link, reVISit will store abc123 as their participant ID for the duration of the study:
20+
```
2021
https://revisit.dev/study/studyName?PARTICIPANT_ID=abc123
22+
```
2123

2224

2325
### Display the ID in the Study

versioned_docs/version-v1.0.6/designing-studies/config-generation/fixed-order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Example 1: Fixed Order
22

33
:::info
4-
The example we provide below is very similar to our [click accuracy test](https://github.com/revisit-studies/study/tree/main/public/demo-click-accuracy-test) that you can view in our demo page.
4+
The example we provide below is very similar to our [click accuracy test](https://github.com/revisit-studies/study/tree/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-click-accuracy-test) that you can view in our demo page.
55
:::
66

77
Suppose we have a base component which allows the parameters `speed` and `taskid` and metadata fields `nr-dots` and `speed`. Now suppose we want to create 100 copies of this base component with varying speeds. In this example, we'll walk through the generation of these base components by iterating through a loop 100 times.

versioned_docs/version-v1.0.6/designing-studies/provenance-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const clickCallback = useCallback((barName: string) => {
5252
}, [actions, setAnswer, taskid, trrack]);
5353
```
5454

55-
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/main/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
55+
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
5656

5757
For a basic HTML + D3 example, see our [Dots example](https://github.com/revisit-studies/study/blob/main/public/demo-html-trrack/assets/dots-count.html). Creating a trrack instance and actions works the same as above, just without the react hooks.
5858

versioned_docs/version-v2.0.2/designing-studies/forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLink
44

55
<StructuredLinks
66
demoLink="https://revisit.dev/study/demo-survey/"
7-
codeLink="https://github.com/revisit-studies/study/blob/main/public/demo-survey/config.json"
7+
codeLink="https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-survey/config.json"
88
referenceLinks={[{name: "Form Elements Overview", url:"../../typedoc/#form-elements"}]}
99
/>
1010

@@ -13,7 +13,7 @@ Form elements are essential for most studies to capture user responses. reVISit
1313
This tutorial does not give a comprehensive introduction into all form elements. For this, refer to the demo and the reference, shown below:
1414

1515
* [Form Element Demo](https://revisit.dev/study/demo-survey/)
16-
* [Source for Form Element Demo](https://github.com/revisit-studies/study/blob/main/public/demo-survey/config.json)
16+
* [Source for Form Element Demo](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-survey/config.json)
1717
* [Overview of Form Elements](../../typedoc/#form-elements)
1818

1919
Instead, we introduce some high-level principles that apply to all form elements.

versioned_docs/version-v2.0.2/designing-studies/provenance-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const clickCallback = useCallback((barName: string) => {
5252
}, [actions, setAnswer, taskid, trrack]);
5353
```
5454

55-
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/main/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
55+
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
5656

5757
For a basic HTML + D3 example, see our [Dots example](https://github.com/revisit-studies/study/blob/main/public/demo-html-trrack/assets/dots-count.html). Creating a trrack instance and actions works the same as above, just without the react hooks.
5858

versioned_docs/version-v2.0.2/typedoc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Responses allow study designers to collect responses from participants Response
3939

4040
### Form Elements
4141

42-
Responses are provided as form elements. See the [example](https://revisit.dev/study/demo-survey/) and the [example-source](https://github.com/revisit-studies/study/blob/main/public/demo-survey/config.json)
42+
Responses are provided as form elements. See the [example](https://revisit.dev/study/demo-survey/) and the [example-source](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-survey/config.json)
4343

4444
ReVISit supports the following form elements:
4545

versioned_docs/version-v2.1.1/designing-studies/provenance-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const clickCallback = useCallback((barName: string) => {
6868
}, [actions, setAnswer, trrack]);
6969
```
7070

71-
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/main/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
71+
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
7272

7373
For a basic HTML + D3 example, see our [Dots example](https://github.com/revisit-studies/study/blob/main/public/demo-html-trrack/assets/dots-count.html). Creating a trrack instance and actions works the same as above, just without the react hooks.
7474

versioned_docs/version-v2.1.1/designing-studies/react-stimulus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLink
99
]}
1010
codeLinks={[
1111
{name: "Graphical Perception Code", url: "https://github.com/revisit-studies/study/tree/main/public/example-cleveland"},
12-
{name: "Click Accuracy Code", url: "https://github.com/revisit-studies/study/tree/main/public/demo-click-accuracy-test"}
12+
{name: "Click Accuracy Code", url: "https://github.com/revisit-studies/study/tree/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-click-accuracy-test"}
1313
]}
1414
referenceLinks={[
1515
{name: "React", url: "https://react.dev/"},

versioned_docs/version-v2.1.1/typedoc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Responses allow study designers to collect responses from participants Response
4040

4141
### Form Elements
4242

43-
Responses are provided as form elements. See the [example](https://revisit.dev/study/demo-survey/) and the [example-source](https://github.com/revisit-studies/study/blob/main/public/demo-survey/config.json)
43+
Responses are provided as form elements. See the [example](https://revisit.dev/study/demo-survey/) and the [example-source](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/public/demo-survey/config.json)
4444

4545
ReVISit supports the following form elements:
4646

versioned_docs/version-v2.2.0/designing-studies/provenance-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const clickCallback = useCallback((barName: string) => {
5454
}, [actions, setAnswer, taskid, trrack]);
5555
```
5656

57-
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/main/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
57+
For a full react example, see our [ClickAccuracyTest example](https://github.com/revisit-studies/study/blob/aaafddb0c4dc8a052a9d999b7b37a7008935d86d/src/public/demo-click-accuracy-test/assets/ClickAccuracyTest.tsx)
5858

5959
For a basic HTML + D3 example, see our [Dots example](https://github.com/revisit-studies/study/blob/main/public/demo-html-trrack/assets/dots-count.html). Creating a trrack instance and actions works the same as above, just without the react hooks.
6060

0 commit comments

Comments
 (0)