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
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGES

Unreleased
----------
- Phased out ``crate-clients-tools``

2025/06/25 0.39.0
-----------------
Expand Down
1 change: 0 additions & 1 deletion docs/projects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ CrateDB clients

- :ref:`crate-admin-ui:index`
- :ref:`crate-crash:index`
- :ref:`crate-clients-tools:index`
- :ref:`crate-jdbc:index`
- :ref:`crate-npgsql:index`
- :ref:`crate-dbal:index`
Expand Down
1 change: 0 additions & 1 deletion src/crate/theme/rtd/conf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@

# CrateDB Clients and Integrations
'crate-admin-ui': ('https://cratedb.com/docs/crate/admin-ui/en/latest/', None),
'crate-clients-tools': ('https://cratedb.com/docs/crate/clients-tools/en/latest/', None),
'crate-crash': ('https://cratedb.com/docs/crate/crash/en/latest/', None),
'crate-dbal': ('https://cratedb.com/docs/dbal/en/latest/', None),
'crate-jdbc': ('https://cratedb.com/docs/jdbc/en/latest/', None),
Expand Down
18 changes: 5 additions & 13 deletions src/crate/theme/rtd/crate/sidebartoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,16 @@
<li class="navleft-item"><a href="/docs/cloud/cli/">Cloud CLI</a></li>
{% endif %}

<li class="navleft-item">
<a href="/docs/guide/connect/drivers.html">Database Drivers</a>
</li>
{%
set driver_projects = [
'CrateDB: Clients and Tools',
'CrateDB JDBC', 'CrateDB DBAL', 'CrateDB PDO', 'CrateDB Python', 'SQLAlchemy Dialect', 'CrateDB Npgsql'
]
%}
{% if project in driver_projects %}
<li class="current">
{% if project == 'CrateDB: Clients and Tools' %}
<a class="current-active" href="{{ pathto(master_doc) }}">Drivers and Integrations</a>
{{ toctree(maxdepth=-1|toint, titles_only=True, collapse=True, includehidden=theme_globaltoc_includehidden|tobool) }}
{% else %}
<a class="current-active" href="/docs/crate/clients-tools/">Drivers and Integrations</a>
{% endif %}
{% if project in driver_projects or (project == 'CrateDB: Guide' and pagename.startswith('connect')) %}
<li>
<ul>
<!-- Section C. -->
{% if project == 'CrateDB JDBC' %}
Expand Down Expand Up @@ -146,10 +142,6 @@
{% endif %}
</ul>
</li>
{% else %}
<li class="navleft-item">
<a href="/docs/crate/clients-tools/">Drivers and Integrations</a>
</li>
{% endif %}

<!-- Section D. -->
Expand Down
Loading