Skip to content

Commit d75a4ef

Browse files
authored
Docs: Remove page local TOC (#720)
1 parent 5a9f518 commit d75a4ef

File tree

11 files changed

+1
-62
lines changed

11 files changed

+1
-62
lines changed

docs/blobs.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ The CrateDB Python client library provides full access to the powerful
88
:ref:`blob storage capabilities <crate-reference:blob_support>` of your
99
CrateDB cluster.
1010

11-
.. rubric:: Table of contents
12-
13-
.. contents::
14-
:local:
15-
1611
Get a blob container
1712
====================
1813

docs/by-example/client.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ Python. This section of the documentation outlines different methods to connect
77
to the database cluster, as well as how to run basic inquiries to the database,
88
and closing the connection again.
99

10-
.. rubric:: Table of Contents
11-
12-
.. contents::
13-
:local:
14-
15-
1610
Connect to a database
1711
=====================
1812

docs/by-example/connection.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ The examples use an instance of ``ClientMocked`` instead of a real ``Client``
99
instance. This allows us to verify the examples without needing a real database
1010
connection.
1111

12-
.. rubric:: Table of Contents
13-
14-
.. contents::
15-
:local:
16-
17-
1812
connect()
1913
=========
2014

docs/by-example/cursor.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ behaviors of the ``crate.client.cursor.Cursor`` object.
88
The example code uses ``ClientMocked`` and ``set_next_response`` for
99
demonstration purposes, so they don't need a real database connection.
1010

11-
.. rubric:: Table of Contents
12-
13-
.. contents::
14-
:local:
15-
16-
1711
Introduction
1812
============
1913

docs/by-example/http.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
HTTP client
33
===========
44

5-
.. rubric:: Table of Contents
6-
7-
.. contents::
8-
:local:
9-
10-
115
Introduction
126
============
137

docs/by-example/https.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ HTTPS connection support
77
This documentation section outlines different options to connect to CrateDB
88
using SSL/TLS.
99

10-
.. rubric:: Table of Contents
11-
12-
.. contents::
13-
:local:
14-
15-
1610
Introduction
1711
============
1812

docs/connect.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ Connect to CrateDB
1717
Supplementary information about the CrateDB Database API client can be found
1818
in the :ref:`data types appendix <data-types-db-api>`.
1919

20-
.. rubric:: Table of contents
21-
22-
.. contents::
23-
:local:
24-
2520
.. _single-node:
2621

2722
Connect to a single node

docs/data-types.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ Data types
66

77
The data types of the :ref:`CrateDB DBAPI database API client <connect>`.
88

9-
.. rubric:: Table of contents
10-
11-
.. contents::
12-
:local:
13-
149
.. _data-types-db-api:
1510

1611
Database API client

docs/getting-started.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ Getting started
77
Learn how to install and get started with the Python client library for
88
`CrateDB`_.
99

10-
.. rubric:: Table of contents
11-
12-
.. contents::
13-
:local:
14-
1510
Install
1611
=======
1712

docs/index.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44
CrateDB Python Client
55
#####################
66

7-
.. rubric:: Table of contents
8-
9-
.. contents::
10-
:local:
11-
:depth: 1
12-
137

148
************
159
Introduction
@@ -64,7 +58,7 @@ Connect to CrateDB instance running on ``localhost``.
6458
from pprint import pp
6559
6660
query = "SELECT country, mountain, coordinates, height FROM sys.summits ORDER BY country;"
67-
61+
6862
with client.connect("localhost:4200", username="crate") as connection:
6963
cursor = connection.cursor()
7064
cursor.execute(query)

docs/query.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ Query CrateDB
1717
Supplementary information about the CrateDB Database API client can be found
1818
in the :ref:`data types appendix <data-types-db-api>`.
1919

20-
.. rubric:: Table of contents
21-
22-
.. contents::
23-
:local:
24-
2520
.. _cursor:
2621

2722
Using a cursor

0 commit comments

Comments
 (0)