diff options
author | drh <> | 2025-04-10 10:18:07 +0000 |
---|---|---|
committer | drh <> | 2025-04-10 10:18:07 +0000 |
commit | 8a6f89c845763b11023e438e0fa63dc80aeda72d (patch) | |
tree | 264bfb9a8c6bd407f1f9caacc1a4061ac44f1c80 /ext/misc | |
parent | 509d899a2dec05549c88147429c205598d9ee061 (diff) | |
download | sqlite-8a6f89c845763b11023e438e0fa63dc80aeda72d.tar.gz sqlite-8a6f89c845763b11023e438e0fa63dc80aeda72d.zip |
Remove unnecessary "www." prefixes on domain names in URLs.
FossilOrigin-Name: 20acd630b91609725794ce84f9eda01d5f3c898407f0948264830851d25ccaa6
Diffstat (limited to 'ext/misc')
-rw-r--r-- | ext/misc/README.md | 12 | ||||
-rw-r--r-- | ext/misc/closure.c | 2 | ||||
-rw-r--r-- | ext/misc/fossildelta.c | 2 | ||||
-rw-r--r-- | ext/misc/series.c | 2 | ||||
-rw-r--r-- | ext/misc/spellfix.c | 2 | ||||
-rw-r--r-- | ext/misc/vfsstat.c | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/ext/misc/README.md b/ext/misc/README.md index 69cb23025..cfc9e867c 100644 --- a/ext/misc/README.md +++ b/ext/misc/README.md @@ -1,7 +1,7 @@ ## Miscellaneous Extensions This folder contains a collection of smaller loadable extensions. -See <https://www.sqlite.org/loadext.html> for instructions on how +See <https://sqlite.org/loadext.html> for instructions on how to compile and use loadable extensions. Each extension in this folder is implemented in a single file of C code. @@ -10,9 +10,9 @@ header comments for details about each extension. Additional notes are as follows: * **carray.c** — This module implements the - [carray](https://www.sqlite.org/carray.html) table-valued function. + [carray](https://sqlite.org/carray.html) table-valued function. It is a good example of how to go about implementing a custom - [table-valued function](https://www.sqlite.org/vtab.html#tabfunc2). + [table-valued function](https://sqlite.org/vtab.html#tabfunc2). * **csv.c** — A [virtual table](https://sqlite.org/vtab.html) for reading @@ -21,7 +21,7 @@ as follows: * **dbdump.c** — This is not actually a loadable extension, but rather a library that implements an approximate equivalent to the ".dump" command of the - [command-line shell](https://www.sqlite.org/cli.html). + [command-line shell](https://sqlite.org/cli.html). * **json1.c** — Various SQL functions and table-valued functions for processing JSON. This extension is already built into the @@ -29,7 +29,7 @@ as follows: <https://sqlite.org/json1.html> for additional information. * **memvfs.c** — This file implements a custom - [VFS](https://www.sqlite.org/vfs.html) that stores an entire database + [VFS](https://sqlite.org/vfs.html) that stores an entire database file in a single block of RAM. It serves as a good example of how to implement a simple custom VFS. @@ -38,7 +38,7 @@ as follows: new custom SQL functions for SQLite. * **series.c** — This is an implementation of the - "generate_series" [virtual table](https://www.sqlite.org/vtab.html). + "generate_series" [virtual table](https://sqlite.org/vtab.html). It can make a good template for new custom virtual table implementations. * **shathree.c** — An implementation of the sha3() and diff --git a/ext/misc/closure.c b/ext/misc/closure.c index 267ae1c42..14caf271f 100644 --- a/ext/misc/closure.c +++ b/ext/misc/closure.c @@ -137,7 +137,7 @@ ** AND closure.idname='groupId' ** AND closure.parentname='parentId'; ** -** See the documentation at http://www.sqlite.org/loadext.html for information +** See the documentation at http://sqlite.org/loadext.html for information ** on how to compile and use loadable extensions such as this one. */ #include "sqlite3ext.h" diff --git a/ext/misc/fossildelta.c b/ext/misc/fossildelta.c index e638737d2..9f81270d7 100644 --- a/ext/misc/fossildelta.c +++ b/ext/misc/fossildelta.c @@ -22,7 +22,7 @@ ** The delta format is the Fossil delta format, described in a comment ** on the delete_create() function implementation below, and also at ** -** https://www.fossil-scm.org/fossil/doc/trunk/www/delta_format.wiki +** https://fossil-scm.org/fossil/doc/trunk/www/delta_format.wiki ** ** This delta format is used by the RBU extension, which is the main ** reason that these routines are included in the extension library. diff --git a/ext/misc/series.c b/ext/misc/series.c index 4e328d298..22e0f7edb 100644 --- a/ext/misc/series.c +++ b/ext/misc/series.c @@ -580,7 +580,7 @@ static int seriesFilter( for(i=0; i<argc; i++){ if( sqlite3_value_type(argv[i])==SQLITE_NULL ){ /* If any of the constraints have a NULL value, then return no rows. - ** See ticket https://www.sqlite.org/src/info/fac496b61722daf2 */ + ** See ticket https://sqlite.org/src/info/fac496b61722daf2 */ returnNoRows = 1; break; } diff --git a/ext/misc/spellfix.c b/ext/misc/spellfix.c index 6debdf5db..f51f3bdfe 100644 --- a/ext/misc/spellfix.c +++ b/ext/misc/spellfix.c @@ -12,7 +12,7 @@ ** ** This module implements the spellfix1 VIRTUAL TABLE that can be used ** to search a large vocabulary for close matches. See separate -** documentation (http://www.sqlite.org/spellfix1.html) for details. +** documentation (http://sqlite.org/spellfix1.html) for details. */ #include "sqlite3ext.h" SQLITE_EXTENSION_INIT1 diff --git a/ext/misc/vfsstat.c b/ext/misc/vfsstat.c index b45193934..504c0b31d 100644 --- a/ext/misc/vfsstat.c +++ b/ext/misc/vfsstat.c @@ -22,7 +22,7 @@ SQLITE_EXTENSION_INIT1 ** most VFS calls to be recorded. ** ** To use this module, first compile it as a loadable extension. See -** https://www.sqlite.org/loadext.html#build for compilations instructions. +** https://sqlite.org/loadext.html#build for compilations instructions. ** ** After compiling, load this extension, then open database connections to be ** measured. Query usages status using the vfsstat virtual table: |