Skip to content

Revert "fix(URL): broken routing and redirects on docs.datajoint.com" #1239

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 1 commit into from
Jun 2, 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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ DataJoint (<https://datajoint.com>).
pip install datajoint
```

- [Documentation & Tutorials](https://docs.datajoint.com/datajoint-python/)
- [Documentation & Tutorials](https://docs.datajoint.com/core/datajoint-python/)

- [Interactive Tutorials](https://github.com/datajoint/datajoint-tutorials) on GitHub Codespaces

- [DataJoint Elements](https://docs.datajoint.com/datajoint-docs/elements/) - Catalog of example pipelines for neuroscience experiments
- [DataJoint Elements](https://docs.datajoint.com/elements/) - Catalog of example pipelines for neuroscience experiments

- Contribute
- [Contribution Guidelines](https://docs.datajoint.com/datajoint-docs/about/contribute/)
- [Contribution Guidelines](https://docs.datajoint.com/about/contribute/)

- [Developer Guide](https://docs.datajoint.com/datajoint-python/latest/develop/)
- [Developer Guide](https://docs.datajoint.com/core/datajoint-python/latest/develop/)
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contribute to DataJoint Documentation

This is the home for DataJoint software documentation as hosted at https://docs.datajoint.com/datajoint-python/latest/.
This is the home for DataJoint software documentation as hosted at https://docs.datajoint.com/core/datajoint-python/latest/.

## VSCode Linter Extensions and Settings

Expand Down
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Presently, the primary developer of DataJoint open-source software is the compan

- [Interactive Tutorials](https://github.com/datajoint/datajoint-tutorials){:target="_blank"} on GitHub Codespaces

- [DataJoint Elements](https://docs.datajoint.com/datajoint-docs/elements/) - Catalog of example pipelines for neuroscience experiments
- [DataJoint Elements](https://docs.datajoint.com/elements/) - Catalog of example pipelines for neuroscience experiments

- Contribute
- [Development Environment](./develop)

- [Guidelines](https://docs.datajoint.com/datajoint-docs/about/contribute/)
- [Guidelines](https://docs.datajoint.com/about/contribute/)
2 changes: 1 addition & 1 deletion docs/src/query/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,4 +392,4 @@ dj.U().aggr(Session, n="max(session)") # (3)

`dj.U()`, as shown in the last example above, is often useful for integer IDs.
For an example of this process, see the source code for
[Element Array Electrophysiology's `insert_new_params`](https://docs.datajoint.com/datajoint-docs/elements/element-array-ephys/latest/api/element_array_ephys/ephys_acute/#element_array_ephys.ephys_acute.ClusteringParamSet.insert_new_params).
[Element Array Electrophysiology's `insert_new_params`](https://docs.datajoint.com/elements/element-array-ephys/latest/api/element_array_ephys/ephys_acute/#element_array_ephys.ephys_acute.ClusteringParamSet.insert_new_params).
2 changes: 1 addition & 1 deletion docs/src/tutorials/dj-top.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"First you will need to [install](../../getting-started/#installation) and [connect](../../getting-started/#connection) to a DataJoint [data pipeline](https://docs.datajoint.com/datajoint-python/latest/concepts/data-pipelines/#what-is-a-data-pipeline).\n",
"First you will need to [install](../../getting-started/#installation) and [connect](../../getting-started/#connection) to a DataJoint [data pipeline](https://docs.datajoint.com/core/datajoint-python/latest/concepts/data-pipelines/#what-is-a-data-pipeline).\n",
"\n",
"Now let's start by importing the `datajoint` client."
]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/json.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"id": "67cf93d2",
"metadata": {},
"source": [
"First you will need to [install](../../getting-started/#installation) and [connect](../../getting-started/#connection) to a DataJoint [data pipeline](https://docs.datajoint.com/datajoint-python/latest/concepts/data-pipelines/#what-is-a-data-pipeline).\n",
"First you will need to [install](../../getting-started/#installation) and [connect](../../getting-started/#connection) to a DataJoint [data pipeline](https://docs.datajoint.com/core/datajoint-python/latest/concepts/data-pipelines/#what-is-a-data-pipeline).\n",
"\n",
"Now let's start by importing the `datajoint` client."
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ maintainers = [
{name = "Dimitri Yatsenko", email = "dimitri@datajoint.com"},
{name = "DataJoint Contributors", email = "support@datajoint.com"},
]
# manually sync here: https://docs.datajoint.com/datajoint-python/latest/#welcome-to-datajoint-for-python
# manually sync here: https://docs.datajoint.com/core/datajoint-python/latest/#welcome-to-datajoint-for-python
description = "DataJoint for Python is a framework for scientific workflow management based on relational principles. DataJoint is built on the foundation of the relational data model and prescribes a consistent method for organizing, populating, computing, and querying data."
readme = "README.md"
license = {file = "LICENSE.txt"}
Expand Down
Loading