From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 943BC3854142; Mon, 7 Nov 2022 14:10:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 943BC3854142 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667830218; bh=i1srD6uvRApYIqA/zgOmzjDYgsZRTCtyyquWcHujfwc=; h=From:To:Subject:Date:From; b=SM2vmdP8+VQMYhlZTZFG4xre1jezIGBz0/v3sHDa/sUZAkkgHWA1siGyaROVvCrk0 YuzJbTXhrOeIxgdQ8N4WFA+7qAULKrv/pNEbDMMN7Cjvs6Jp/M5pcG3QuxFA/iShEX jjY1+wn73e9BjjPAUQ8ZMtUU4B3QIYJiMegWLtD4= 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: c2bc47cbd6c2302de46f163ba67b91a3159b3502 X-Git-Newrev: c20ccdac8f4e27e6d08e3afa4ac0a01030ee094b Message-Id: <20221107141018.943BC3854142@sourceware.org> Date: Mon, 7 Nov 2022 14:10:18 +0000 (GMT) List-Id: https://gcc.gnu.org/g:c20ccdac8f4e27e6d08e3afa4ac0a01030ee094b commit c20ccdac8f4e27e6d08e3afa4ac0a01030ee094b 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 47fa305c28b..b516f63e69b 100644 --- a/doc/baseconf.py +++ b/doc/baseconf.py @@ -197,7 +197,7 @@ INTERNAL_DOCS = ('gccint', 'cppinternals', 'gfc-internals', 'gnat-style') # 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 = { @@ -216,5 +216,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'