Skip to content

Commit d9b1f73

Browse files
authored
Merge pull request #16 from MilagrosMarin/main
[WIP] fix(docs): update home URL from `datajoint.com/docs` to `docs.datajoint.com`
2 parents 334ccf1 + 4ae659f commit d9b1f73

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: DataJoint Contribution Guideline
4-
url: https://datajoint.com/docs/community/contribute/
4+
url: https://docs.datajoint.com/about/contribute/
55
about: Please make sure to review the DataJoint Contribution Guidelines

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Contribution Guidelines
22

33
This project follows the
4-
[DataJoint Contribution Guidelines](https://datajoint.com/docs/about/contribute/).
4+
[DataJoint Contribution Guidelines](https://docs.datajoint.com/about/contribute/).
55
Please reference the link for more full details.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ environment and notebooks to learn the pipeline.
3434
+ [Interactive tutorial on GitHub
3535
Codespaces](https://github.com/datajoint/element-optogenetics#interactive-tutorial)
3636

37-
+ [Documentation](https://datajoint.com/docs/elements/element-optogenetics)
37+
+ [Documentation](https://docs.datajoint.com/elements/element-optogenetics/)
3838

3939
## Support
4040

docs/mkdocs.yaml

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

33
site_name: DataJoint Documentation
4-
site_url: http://localhost/docs/elements/element-optogenetics
4+
site_url: https://docs.datajoint.com/elements/element-optogenetics/
55
repo_url: https://github.com/datajoint/element-optogenetics
66
repo_name: datajoint/element-optogenetics
77
nav:

docs/src/.overrides/partials/nav.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{#-
1515
Add DataJoint home link to navigation header, otherwise unchanged
1616
-#}
17-
<a href="https://datajoint.com/docs/elements/" title="DataJoint Elements">
17+
<a href="https://docs.datajoint.com/elements/" title="DataJoint Elements">
1818
⬅ Home
1919
</a>
2020
</label>
@@ -30,4 +30,4 @@
3030
{% include "partials/nav-item.html" %}
3131
{% endfor %}
3232
</ul>
33-
</nav>
33+
</nav>

docs/src/pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documentation on each table, see the API docs for the respective schemas.
1313
| --- | --- |
1414
| Device | Pulse generator device |
1515

16-
## `subject` schema ([API docs](https://datajoint.com/docs/elements/element-animal/latest/api/element_animal/subject/#element_animal.subject.Subject))
16+
## `subject` schema ([API docs](https://docs.datajoint.com/elements/element-animal/latest/api/element_animal/subject/))
1717

1818
- Although not required, most choose to connect the `Session` table to a `Subject` table.
1919

@@ -29,7 +29,7 @@ documentation on each table, see the API docs for the respective schemas.
2929
| --- | --- |
3030
| Implantation | Location of an implanted device |
3131

32-
## `session` schema ([API docs](https://datajoint.com/docs/elements/element-session/latest/api/element_session/session_with_id))
32+
## `session` schema ([API docs](https://docs.datajoint.com/elements/element-session/latest/api/element_session/session_with_id/))
3333

3434
| Table | Description |
3535
| --- | --- |

docs/src/tutorials/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
+ The Workflow Optogenetics described above can be modified for a user's specific experimental requirements and thereby used in active projects.
1212

1313
+ The GitHub Codespace and Dev Container is configured for tutorials and prototyping.
14-
We recommend users to configure a database specifically for production pipelines. Instructions for a local installation of the integrated development environment with a database can be found on the [User Guide](https://datajoint.com/docs/elements/user-guide/) page.
14+
We recommend users to configure a database specifically for production pipelines. Instructions for a local installation of the integrated development environment with a database can be found on the [User Guide](https://docs.datajoint.com/elements/user-guide/) page.

element_optogenetics/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""Package metadata"""
2+
23
__version__ = "0.2.0"

notebooks/tutorial.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,9 @@
697697
"metadata": {},
698698
"outputs": [],
699699
"source": [
700-
"session_key = dict(subject=\"subject1\", session_id=0, session_datetime=\"2023-01-01 00:00:00\")"
700+
"session_key = dict(\n",
701+
" subject=\"subject1\", session_id=0, session_datetime=\"2023-01-01 00:00:00\"\n",
702+
")"
701703
]
702704
},
703705
{

0 commit comments

Comments
 (0)