From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 83809385842F; Mon, 7 Nov 2022 14:34:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 83809385842F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667831662; bh=7WTq4flY7keRjlw4iZrZAzmD+yRTvalz3p72Yg7CK8E=; h=From:To:Subject:Date:From; b=PvCtgrJFe74RGgp5lJVf3FtIcgWVYzFz3Uz+PFdq/M+/bEvZCYRHpVVjXkLF/bKDR mu/k72TLrHLvtTbaiqZHLiaoru6bV8pdxI2oPSvBlWg/oFvWbJG8FXwQZ/DsP6W1gQ 06A+IPSNFk1zeHMgUH40Wm3F1TWoUA53fqAi9UKM= 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: 0951d9238ca159b257d6891a7dbd03a3a2c0c23e X-Git-Newrev: d960b0d090bfc8456340422f2ef18cc7c11f5674 Message-Id: <20221107143422.83809385842F@sourceware.org> Date: Mon, 7 Nov 2022 14:34:22 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d960b0d090bfc8456340422f2ef18cc7c11f5674 commit d960b0d090bfc8456340422f2ef18cc7c11f5674 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 3c26f2a5b3b..2362ccb461b 100644 --- a/doc/baseconf.py +++ b/doc/baseconf.py @@ -191,7 +191,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 = { @@ -210,5 +210,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'