From 3b5fe1154a387c04718d76ccbc7fc6117f34b8b9 Mon Sep 17 00:00:00 2001 From: Brian Munkholm Date: Fri, 27 Jun 2025 14:13:48 +0200 Subject: [PATCH 1/3] Update deprecated option html_theme_options --- docs/conf.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 89eb6ef..ed87c35 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,8 +1,6 @@ from crate.theme.rtd.conf.sql_99 import * -html_theme_options.update({ - "canonical_url": "https://sql-99.readthedocs.io", -}) +html_baseurl = "https://sql-99.readthedocs.io/" # Disable version chooser. html_context.update({ From f3f4e08360a835e93ad340bdd0232d333b776dd3 Mon Sep 17 00:00:00 2001 From: Brian Munkholm Date: Fri, 27 Jun 2025 14:26:01 +0200 Subject: [PATCH 2/3] Update link to minisql --- docs/appendices/e.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/appendices/e.rst b/docs/appendices/e.rst index dd1bf65..1ec2114 100644 --- a/docs/appendices/e.rst +++ b/docs/appendices/e.rst @@ -48,7 +48,7 @@ Here's the list: | You can get the ODBC manual from here, as a .hlp file. * | **miniSQL** - | http://www.hughes.com.au/ + | https://hughestech.com.au/products/msql/ | A Unix-oriented SQL-89 implementation. * | **NIST** From 419088302482ba392cbb61c415ae161866ac4000 Mon Sep 17 00:00:00 2001 From: Brian Munkholm Date: Fri, 27 Jun 2025 14:28:22 +0200 Subject: [PATCH 3/3] ignore some links that fails. --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index ed87c35..7373cb1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,3 +8,8 @@ "current_version": None, "versions": [], }) + +linkcheck_ignore = [ + r"https://www.mysql.com/", + r"http://www.hughes.com.au/*", +]