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: 2 additions & 0 deletions docs/_utils/javadoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ mvn javadoc:javadoc -T 1C
[ -d $OUTPUT_DIR ] && rm -r $OUTPUT_DIR
mkdir -p "$OUTPUT_DIR"
mv -f core/target/site/apidocs/* $OUTPUT_DIR
cp -an query-builder/target/site/apidocs/* $OUTPUT_DIR
cp -an mapper-runtime/target/site/apidocs/* $OUTPUT_DIR
2 changes: 1 addition & 1 deletion manual/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Common topics:
* [Case sensitivity](case_sensitivity/)
* [OSGi](osgi/)

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ for (ColumnDefinitions.Definition definition : row.getColumnDefinitions()) {

[CASSANDRA-10145]: https://issues.apache.org/jira/browse/CASSANDRA-10145

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/core/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ config.getDefaultProfile().getInt(MyCustomOption.AWESOMENESS_FACTOR);
[HOCON]: https://github.com/typesafehub/config/blob/master/HOCON.md
[API conventions]: ../../api_conventions

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/core/metadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ refreshed. See the [Performance](../performance/#debouncing) page for more detai
[Metadata]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/metadata/Metadata.html
[Node]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/metadata/Node.html

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
4 changes: 2 additions & 2 deletions manual/core/reconnection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Note that the session is not accessible until it is fully ready: the `CqlSession
call — or the future returned by `buildAsync()` — will not complete until the connection
was established.

[ConstantReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/internal/core/connection/ConstantReconnectionPolicy.html
[ConstantReconnectionPolicy]: https://github.com/scylladb/java-driver/blob/scylla-4.19.0.x/core/src/main/java/com/datastax/oss/driver/internal/core/connection/ConstantReconnectionPolicy.java
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/context/DriverContext.html
[ExponentialReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/internal/core/connection/ExponentialReconnectionPolicy.html
[ExponentialReconnectionPolicy]: https://github.com/scylladb/java-driver/blob/scylla-4.19.0.x/core/src/main/java/com/datastax/oss/driver/internal/core/connection/ExponentialReconnectionPolicy.java
[ReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/connection/ReconnectionPolicy.html
2 changes: 1 addition & 1 deletion manual/core/statements/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ can create execution profiles to capture common combinations of those options).
[execute]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/Session.html#execute-com.datastax.oss.driver.api.core.cql.Statement-
[executeAsync]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/session/Session.html#executeAsync-com.datastax.oss.driver.api.core.cql.Statement-

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/developer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ from lowest to highest level:

If you're reading this on GitHub, the `.nav` file in each directory contains a suggested order.

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/developer/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This covers utilities or concept that are shared throughout the codebase:
* the [event bus](event_bus/) is used to decouple some of the internal components through
asynchronous messaging.

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/mapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ You can decide which logs to enable using the standard SLF4J mechanisms (categor
addition, if you want no logs at all, it's possible to entirely remove them from the generated code
with the Java compiler option `-Acom.datastax.oss.driver.mapper.logs.enabled=false`.

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/mapper/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ You will find the generated files in `build/generated/sources/annotationProcesso
* [Java 14 records](record/)
* [Scala](scala/)

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/mapper/daos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ To control how the hierarchy is scanned, annotate interfaces with [@HierarchySca
[@HierarchyScanStrategy]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/mapper/annotations/HierarchyScanStrategy.html
[Entity Inheritance]: ../entities/#inheritance

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/query_builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ For a complete tour of the API, browse the child pages in this manual:
[DseQueryBuilder]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/dse/driver/api/querybuilder/DseQueryBuilder.html
[DseSchemaBuilder]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/dse/driver/api/querybuilder/DseSchemaBuilder.html

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
2 changes: 1 addition & 1 deletion manual/query_builder/schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ element type:

[SchemaBuilder]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/querybuilder/SchemaBuilder.html

```{eval-rst}
```eval_rst
.. toctree::
:hidden:
:glob:
Expand Down
Loading