From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id B41D1385842F; Tue, 8 Nov 2022 14:35:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B41D1385842F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667918137; bh=ECoWecLV8lMd24S9xInevfq8E9BUaDpwwB2awCGcMvQ=; h=From:To:Subject:Date:From; b=S1PhaOVEIp21I61OgOAY7WnrKMFlMOwGjvDDrGKF87lWzGVG2ZQrKVNB/SyShyhVe Vy5iTvdma2CLFQSt4gVzunZ7UNxDsCuloOfla3jJ8qCPIB25OV38HQtrMAQGTysybX DZLyBMm7jq7qnO+svb7Ugokl2fVADctqoiKXxJEE= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/marxin/heads/sphinx-final)] FIXME: use temporary Intersphinx URL. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/users/marxin/heads/sphinx-final X-Git-Oldrev: 9a2c883138863f8e103947b7b15ba416d7dd5688 X-Git-Newrev: 4b0fd61919d56e34e6515001bfe448ecb8af4124 Message-Id: <20221108143537.B41D1385842F@sourceware.org> Date: Tue, 8 Nov 2022 14:35:37 +0000 (GMT) List-Id: https://gcc.gnu.org/g:4b0fd61919d56e34e6515001bfe448ecb8af4124 commit 4b0fd61919d56e34e6515001bfe448ecb8af4124 Author: Martin Liska Date: Mon Nov 7 13:34:44 2022 +0100 FIXME: use temporary Intersphinx URL. ChangeLog: * doc/baseconf.py: Use splichal.eu temporarily. Diff: --- doc/baseconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/baseconf.py b/doc/baseconf.py index eb93e4bb69d..53f35a0c9a9 100644 --- a/doc/baseconf.py +++ b/doc/baseconf.py @@ -194,7 +194,7 @@ INTERNAL_DOCS = ('gccint', 'cppinternals', 'gfc-internals', 'gnat-style', 'libib # Cross manual reference mapping intersphinx_mapping = {} for manual in USER_LEVEL_DOCS + INTERNAL_DOCS: - intersphinx_mapping[manual] = (f'https://gcc.gnu.org/onlinedocs/{manual}/', None) + intersphinx_mapping[manual] = (f'https://splichal.eu/gccsphinx-final/html/{manual}/', None) # Custom references extlinks = { @@ -213,5 +213,5 @@ def set_common(name, module): module['todo_include_todos'] = True module['tags'].add('development') - html_theme_options['source_edit_link'] = f'https://gcc.gnu.org/onlinedocs/{name}' \ + html_theme_options['source_edit_link'] = f'https://splichal.eu/gccsphinx-final/html/{name}' \ '/_sources/{filename}.txt'