Skip to content
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://datajoint.com/docs/community/contribute/
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,3 +1,3 @@
# Contribution Guidelines

This project follows the [DataJoint Contribution Guidelines](https://docs.datajoint.org/python/community/02-Contribute.html). Please reference the link for more full details.
This project follows the [DataJoint Contribution Guidelines](https://docs.datajoint.com/about/contribute/). Please reference the link for more full details.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

+ `element-event` can be flexibly attached to any DataJoint workflow.

+ See the [Element Event documentation](https://elements.datajoint.org/description/event/) for the background information and development timeline.
+ See the [Element Event documentation](https://docs.datajoint.com/elements/element-event/) for the background information and development timeline.

+ For more information on the DataJoint Elements project, please visit https://elements.datajoint.org. This work is supported by the National Institutes of Health.
+ For more information on the DataJoint Elements project, please visit <https://docs.datajoint.com/elements/>. This work is supported by the National Institutes of Health.

## Element architecture

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-event
site_url: https://docs.datajoint.com/elements/element-event/
repo_url: https://github.com/datajoint/element-event
repo_name: datajoint/element-event
nav:
Expand Down
19 changes: 5 additions & 14 deletions docs/src/.overrides/partials/nav.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@
{% set class = "md-nav md-nav--primary" %} {% if "navigation.tabs" in features
%} {% set class = class ~ " md-nav--lifted" %} {% endif %} {% if "toc.integrate"
in features %} {% set class = class ~ " md-nav--integrated" %} {% endif %}
<nav
class="{{ class }}"
aria-label="{{ lang.t('nav.title') }}"
data-md-level="0"
>
<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 All @@ -28,4 +19,4 @@
{% for nav_item in nav %} {% set path = "__nav_" ~ loop.index %} {% set
level = 1 %} {% include "partials/nav-item.html" %} {% endfor %}
</ul>
</nav>
</nav>
4 changes: 2 additions & 2 deletions docs/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ Event connects to upstream Element Session.

![element-event diagram](https://raw.githubusercontent.com/datajoint/element-event/main/images/trial_event_diagram.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/latest/api/element_animal/subject/))

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

| Table | Description |
| --- | --- |
| Subject | 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/latest/api/element_session/session_with_datetime/))

| Table | Description |
| --- | --- |
Expand Down