Skip to content

Commit 0464fe2

Browse files
authored
Merge pull request #220 from MilagrosMarin/update-docs
fix(docs): update home URL from `datajoint.com/docs` to `docs.datajoint.com`
2 parents 1d4f888 + 3bdf7e7 commit 0464fe2

File tree

8 files changed

+12
-13
lines changed

8 files changed

+12
-13
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://docs.datajoint.org/python/community/02-Contribute.html
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
@@ -44,7 +44,7 @@ environment and notebooks to learn the pipeline.
4444
+ [Interactive tutorial on GitHub
4545
Codespaces](https://github.com/datajoint/element-array-ephys#interactive-tutorial)
4646

47-
+ [Documentation](https://datajoint.com/docs/elements/element-array-ephys)
47+
+ [Documentation](https://docs.datajoint.com/elements/element-array-ephys/)
4848

4949
## Support
5050

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-array-ephys
4+
site_url: https://docs.datajoint.com/elements/element-array-ephys/
55
repo_url: https://github.com/datajoint/element-array-ephys
66
repo_name: datajoint/element-array-ephys
77
nav:

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
{% endif %}
88
<nav class="{{ class }}" aria-label="{{ lang.t('nav.title') }}" data-md-level="0">
99
<label class="md-nav__title" for="__drawer">
10-
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}"
11-
title="{{ config.site_name | e }}" class="md-nav__button md-logo"
12-
aria-label="{{ config.site_name }}" data-md-component="logo">
10+
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}" title="{{ config.site_name | e }}"
11+
class="md-nav__button md-logo" aria-label="{{ config.site_name }}" data-md-component="logo">
1312
{% include "partials/logo.html" %}
1413
</a>
1514
{#-
1615
Add DataJoint home link to navigation header, otherwise unchanged
1716
-#}
18-
<a href="https://datajoint.com/docs/elements/" title="DataJoint Elements">
17+
<a href="https://docs.datajoint.com/elements/" title="DataJoint Elements">
1918
⬅ Home
2019
</a>
2120
</label>

docs/src/concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ is a table within the Element or a table connected to the Element.
103103

104104
![diagram](https://raw.githubusercontent.com/datajoint/element-array-ephys/main/images/attached_array_ephys_element_acute.svg)
105105

106-
### `subject` schema ([API docs](https://datajoint.com/docs/elements/element-animal/api/element_animal/subject))
106+
### `subject` schema ([API docs](https://docs.datajoint.com/elements/element-animal/0.1/api/element_animal/subject/))
107107

108108
Although not required, most choose to connect the `Session` table to a `Subject` table.
109109

110110
| Table | Description |
111111
| --- | --- |
112112
| Subject | A table containing basic information of the research subject. |
113113

114-
### `session` schema ([API docs](https://datajoint.com/docs/elements/element-session/api/element_session/session_with_datetime))
114+
### `session` schema ([API docs](https://docs.datajoint.com/elements/element-session/))
115115

116116
| Table | Description |
117117
| --- | --- |

docs/src/tutorials/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ all the necessary dependencies and sample data to run the tutorials.
1111

1212
Installation of the Element requires an integrated development environment and database.
1313
Instructions to setup each of the components can be found on the
14-
[User Instructions](https://datajoint.com/docs/elements/user-guide/) page. The example
14+
[User Instructions](https://docs.datajoint.com/elements/user-guide/) page. The example
1515
tutorial uses several Elements (Lab, Animal, Session, Event, and Electrophysiology) to construct
1616
a complete pipeline, and is able to ingest experimental metadata and run model training
1717
and inference.

element_array_ephys/ephys_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import datajoint as dj
99
from element_interface.utils import dict_to_uuid
1010

11-
from . import probe, ephys
11+
from . import ephys, probe
1212

1313
schema = dj.schema()
1414

@@ -50,7 +50,7 @@ class ProbeLevelReport(dj.Computed):
5050
---
5151
drift_map_plot: attach
5252
"""
53-
53+
5454
@property
5555
def key_source(self):
5656
return ephys.CuratedClustering & (

0 commit comments

Comments
 (0)