From 36794093244b0fe76a1453fe7001878062db8530 Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 15:00:28 -0600 Subject: [PATCH 1/6] Remove glossary --- doc/reference/glossary.rst | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 doc/reference/glossary.rst diff --git a/doc/reference/glossary.rst b/doc/reference/glossary.rst deleted file mode 100644 index daf2fc7b3a..0000000000 --- a/doc/reference/glossary.rst +++ /dev/null @@ -1,16 +0,0 @@ -:orphan: - -Glossary -======== - -.. glossary:: - - LSST - "Legacy Survey of Space and Time": The initial goal of the Rubin Observatory; a 10-year astonomical - survey which will image billions of objects in six colors. This survey, which will cover over half the - sky, also records the time evolution of these sources: the first motion picture of our Universe. - - MPP - "Massively Parallel Processing": of database systems, one where processing is split among servers or - nodes. A leader node handles communication with each of the individual nodes. - From a79cf334b758e251ed40cd90f12ab6219a6a388f Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 15:26:52 -0600 Subject: [PATCH 2/6] Remove full ToC page --- doc/reference/contents.rst | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 doc/reference/contents.rst diff --git a/doc/reference/contents.rst b/doc/reference/contents.rst deleted file mode 100644 index ca12664bbd..0000000000 --- a/doc/reference/contents.rst +++ /dev/null @@ -1,7 +0,0 @@ -:orphan: - -Full table of contents -====================== - -.. include:: /index.rst - From 740c94c09f00031e8236424fdd1386b8037ca5ac Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 15:31:38 -0600 Subject: [PATCH 3/6] Fix typo --- doc/admin/admin-upgrade.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/admin/admin-upgrade.rst b/doc/admin/admin-upgrade.rst index 74cc821802..0464cef2d1 100644 --- a/doc/admin/admin-upgrade.rst +++ b/doc/admin/admin-upgrade.rst @@ -1,7 +1,7 @@ .. _admin-upgrade: -Instructins for upgrading Qserv to newer releases -================================================= +Instructions for upgrading Qserv to newer releases +================================================== .. _admin-upgrade-mariadb-11-4-4: From 222b368ee89b4cf258af9a377763172701d4f037 Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 18:41:16 -0600 Subject: [PATCH 4/6] Remove custom landing page --- doc/conf.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index aded147ad6..12bbd25582 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -6,9 +6,6 @@ from documenteer.sphinxconfig.utils import form_ltd_edition_name -# Add any paths that contain templates here, relative to this directory. -templates_path = ["templates"] - # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. @@ -16,7 +13,7 @@ # The short X.Y version. github_ref = os.getenv("GITHUB_REF") if github_ref is None: - with contextlib.closing(os.popen('git symbolic-ref HEAD')) as p: + with contextlib.closing(os.popen("git symbolic-ref HEAD")) as p: github_ref = p.read().strip() match = re.match(r"refs/(heads|tags|pull)/(?P.+)", github_ref) if not match: @@ -45,8 +42,4 @@ r".*/_images/", ] -html_additional_pages = { - "index": "overview.html" -} - mermaid_version = "10.3.0" From 61ee200f6d3d7212578b46840e8a6a2bf6f8af69 Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 18:47:17 -0600 Subject: [PATCH 5/6] Ignore all links to mysql manual in linkcheck --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py b/doc/conf.py index 12bbd25582..09281650bd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -40,6 +40,7 @@ r"^https://rubinobs.atlassian.net/browse/", r"^https://www.slac.stanford.edu/", r".*/_images/", + r"^https://dev.mysql.com/doc/refman/", ] mermaid_version = "10.3.0" From c10e7183f151fa2ed1e87ed3c9274b6b843e470c Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Fri, 24 Jan 2025 18:54:05 -0600 Subject: [PATCH 6/6] Ignore all links to jira.lsstcorp.org --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 09281650bd..ffa88b54e7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -33,7 +33,7 @@ # Add any URL patterns to ignore (e.g. for private sites, or sites that # are frequently down). linkcheck_ignore = [ - r"^https://jira.lsstcorp.org/browse/", + r"^https://jira.lsstcorp.org/", r"^https://dev.lsstcorp.org/trac", r"^https://confluence.lsstcorp.org/display/", r"^https://rubinobs.atlassian.net/wiki/",