Skip to content

Commit

Permalink
Fix some broekn links
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Nov 16, 2024
1 parent 3fa6cb0 commit 02caa36
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apsw/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2229,7 +2229,7 @@ class FTS5ExtensionApi:
highlighting, and similar operations. Auxiliary functions are
registered via :meth:`Connection.register_fts5_function`. This wraps
the `auxiliary functions API
<https://www.sqlite.org/fts5.html#_custom_auxiliary_functions>`__
<https://www.sqlite.org/fts5.html#custom_auxiliary_functions>`__
passed as the first parameter to auxiliary functions.
See :ref:`the example <example_fts5_auxfunc>`."""
Expand Down
2 changes: 1 addition & 1 deletion apsw/fts5.py
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ def config_rank(self, val: str | None = None) -> str:
return self._config_internal("rank", val, "bm25()") # type: ignore

def config_secure_delete(self, val: bool | None = None) -> bool:
"""Optionally sets, and returns `secure-delete <https://www.sqlite.org/fts5.html#the_secure-delete_configuration_option>`__"""
"""Optionally sets, and returns `secure-delete <https://www.sqlite.org/fts5.html#the_secure_delete_configuration_option>`__"""
return bool(self._config_internal("secure-delete", val, False)) # type: ignore

def config_usermerge(self, val: int | None = None) -> int:
Expand Down
5 changes: 2 additions & 3 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ Adjusted `levels
Previous source releases were signed with `PGP
<https://en.wikipedia.org/wiki/Pretty_Good_Privacy>`__. Starting with
this release `Sigstore's <https://www.sigstore.dev/>`__ `cosign tool
<https://docs.sigstore.dev/signing/quickstart/>`__ is used
(:ref:`instructions <verifydownload>`). (:issue:`512`)
<https://docs.sigstore.dev/cosign/>`__ is used. (:issue:`512`)

3.45.3.0
========
Expand Down Expand Up @@ -1514,7 +1513,7 @@ previous error message or a crash. Thanks to Jose Gomes for finding
the problem. :issue:`103`

There is now a PPA for Ubuntu users that is kept up to date with APSW
and SQLite at https://launchpad.net/~ubuntu-rogerbinns/+archive/apsw
and SQLite at \https://launchpad.net/~ubuntu-rogerbinns/+archive/apsw
which has the latest SQLite embedded statically inside (ie system
SQLite is ignored) and has all the extensions enabled: FTS3, RTree,
ICU, asyncvfs
Expand Down
4 changes: 2 additions & 2 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ digitally signed so you can verify they have not been tampered with,
and were produced by the project maintainer.

`Sigstore <https://www.sigstore.dev/>`__ is used via the `cosign tool
<https://docs.sigstore.dev/signing/quickstart/>`__. Download the
<https://docs.sigstore.dev/cosign/signing/>`__. Download the
corresponding cosign bundle which contains the signature.

Verify

`Install cosign
<https://docs.sigstore.dev/system_config/installation/>`__ if you
<https://docs.sigstore.dev/cosign/system_config/installation/>`__ if you
don't have it already. It is `available for a wide variety of
platforms <https://github.com/sigstore/cosign/releases/>`__
including Linux, MacOS, and Windows.
Expand Down
2 changes: 1 addition & 1 deletion src/apsw.docstrings
Original file line number Diff line number Diff line change
Expand Up @@ -2838,7 +2838,7 @@
"highlighting, and similar operations. Auxiliary functions are\n" \
"registered via :meth:`Connection.register_fts5_function`. This wraps\n" \
"the `auxiliary functions API\n" \
"<https://www.sqlite.org/fts5.html#_custom_auxiliary_functions>`__\n" \
"<https://www.sqlite.org/fts5.html#custom_auxiliary_functions>`__\n" \
"passed as the first parameter to auxiliary functions.\n" \
"\n" \
"See :ref:`the example <example_fts5_auxfunc>`.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/fts.c
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ the context of a FTS5 search, and can be used for ranking,
highlighting, and similar operations. Auxiliary functions are
registered via :meth:`Connection.register_fts5_function`. This wraps
the `auxiliary functions API
<https://www.sqlite.org/fts5.html#_custom_auxiliary_functions>`__
<https://www.sqlite.org/fts5.html#custom_auxiliary_functions>`__
passed as the first parameter to auxiliary functions.
See :ref:`the example <example_fts5_auxfunc>`.
Expand Down

0 comments on commit 02caa36

Please sign in to comment.