Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs links to point to new MkDocs documentation #1673

Merged
merged 12 commits into from
Feb 21, 2025
2 changes: 1 addition & 1 deletion data/config/dcf.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"name": "Submit Data"
},
{
"link": "https://gen3.org/resources/user/",
"link": "https://docs.gen3.org/gen3-resources/user-guide/",
"name": "Documentation"
}
]
Expand Down
2 changes: 1 addition & 1 deletion data/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"name": "Submit Data"
},
{
"link": "https://gen3.org/resources/user/",
"link": "https://docs.gen3.org/gen3-resources/user-guide/",
"name": "Documentation"
}
]
Expand Down
2 changes: 1 addition & 1 deletion docs/portal_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Below is an example, with inline comments describing what each JSON block config
"name": "Submit Data"
},
{
"link": "https://gen3.org/resources/user/",
"link": "https://docs.gen3.org/gen3-resources/user-guide/",
"name": "Documentation"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const DownloadManifestButton = ({
<a
target='_blank'
rel='noreferrer'
href='https://gen3.org/resources/user/gen3-client/'
href='https://docs.gen3.org/gen3-resources/user-guide/access-data/#download-files-using-the-gen3-client'
>
{'Gen3 Client'}
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ExportToWorkspaceButton = ({
<a
target='blank'
rel='noreferrer'
href='https://gen3.org/resources/user/analyze-data/'
href='https://docs.gen3.org/gen3-resources/user-guide/analyze-data/'
>
Gen3 Workspace
</a>
Expand Down
4 changes: 2 additions & 2 deletions src/Discovery/__mocks__/mock_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"manifestFieldName": "__manifest",
"enableDownloadManifest": true,
"documentationLinks": {
"gen3Client": "https://gen3.org/resources/user/gen3-client/",
"gen3Workspaces": "https://gen3.org/resources/user/analyze-data/"
"gen3Client": "https://docs.gen3.org/gen3-resources/user-guide/access-data/#download-files-using-the-gen3-client",
"gen3Workspaces": "https://docs.gen3.org/gen3-resources/user-guide/analyze-data/"
}
},
"pageTitle": {
Expand Down
2 changes: 1 addition & 1 deletion src/Submission/SubmissionHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class SubmissionHeader extends React.Component {
}

openGen3Tutorials = () => {
window.open('https://gen3.org/resources/user/gen3-client/', '_blank');
window.open('https://docs.gen3.org/gen3-resources/operator-guide/submit-unstructured-data/#gen3-client-instructions-for-uploading-data', '_blank');
}

render() {
Expand Down
Loading