Skip to content

fix(docs): update home URL from datajoint.com/docs to docs.datajoint.com #220

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

Merged
merged 4 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: DataJoint Contribution Guideline
url: https://docs.datajoint.org/python/community/02-Contribute.html
url: https://docs.datajoint.com/about/contribute/
about: Please make sure to review the DataJoint Contribution Guidelines
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Contribution Guidelines

This project follows the
[DataJoint Contribution Guidelines](https://datajoint.com/docs/about/contribute/).
[DataJoint Contribution Guidelines](https://docs.datajoint.com/about/contribute/).
Please reference the link for more full details.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ environment and notebooks to learn the pipeline.
+ [Interactive tutorial on GitHub
Codespaces](https://github.com/datajoint/element-array-ephys#interactive-tutorial)

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

## Support

Expand Down
2 changes: 1 addition & 1 deletion docs/mkdocs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- # ---------------------- PROJECT SPECIFIC ---------------------------

site_name: DataJoint Documentation
site_url: http://localhost/docs/elements/element-array-ephys
site_url: https://docs.datajoint.com/elements/element-array-ephys/
repo_url: https://github.com/datajoint/element-array-ephys
repo_name: datajoint/element-array-ephys
nav:
Expand Down
7 changes: 3 additions & 4 deletions docs/src/.overrides/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
{% endif %}
<nav class="{{ class }}" aria-label="{{ lang.t('nav.title') }}" data-md-level="0">
<label class="md-nav__title" for="__drawer">
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}"
title="{{ config.site_name | e }}" class="md-nav__button md-logo"
aria-label="{{ config.site_name }}" data-md-component="logo">
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}" title="{{ config.site_name | e }}"
class="md-nav__button md-logo" aria-label="{{ config.site_name }}" data-md-component="logo">
{% include "partials/logo.html" %}
</a>
{#-
Add DataJoint home link to navigation header, otherwise unchanged
-#}
<a href="https://datajoint.com/docs/elements/" title="DataJoint Elements">
<a href="https://docs.datajoint.com/elements/" title="DataJoint Elements">
⬅ Home
</a>
</label>
Expand Down
4 changes: 2 additions & 2 deletions docs/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ is a table within the Element or a table connected to the Element.

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

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

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

| Table | Description |
| --- | --- |
| Subject | A table containing basic information of the research subject. |

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

| Table | Description |
| --- | --- |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ all the necessary dependencies and sample data to run the tutorials.

Installation of the Element requires an integrated development environment and database.
Instructions to setup each of the components can be found on the
[User Instructions](https://datajoint.com/docs/elements/user-guide/) page. The example
[User Instructions](https://docs.datajoint.com/elements/user-guide/) page. The example
tutorial uses several Elements (Lab, Animal, Session, Event, and Electrophysiology) to construct
a complete pipeline, and is able to ingest experimental metadata and run model training
and inference.
Expand Down
4 changes: 2 additions & 2 deletions element_array_ephys/ephys_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import datajoint as dj
from element_interface.utils import dict_to_uuid

from . import probe, ephys
from . import ephys, probe

schema = dj.schema()

Expand Down Expand Up @@ -50,7 +50,7 @@ class ProbeLevelReport(dj.Computed):
---
drift_map_plot: attach
"""

@property
def key_source(self):
return ephys.CuratedClustering & (
Expand Down