From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 6BB363858424; Tue, 8 Nov 2022 12:07:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6BB363858424 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667909237; bh=L+cV3MGqfraGce0bBDPgO25haI+AMB1K/Jub3emPF6M=; h=From:To:Subject:Date:From; b=P7Skpg+a1jwfnjouPlri6NxVrMExg9IUGdur7ghTBeqEu3sBXleJKum4tWDwtU/5b a8c2bl2bkuCdmhMF6mcxEpmV+wDX6kPDmtI3s1ThMJLJ0DqEdzpbqNj/JiBdTDWKkE GFHMWsYKTpsEEVgO9GIybMRH3Osuc1YMZmn6H6Q0= 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: 8eba0b1254c9597a8238cf80336ee7445d22c25f X-Git-Newrev: 4c750b1d38a571b1536ff35c9c8786295167c8b0 Message-Id: <20221108120717.6BB363858424@sourceware.org> Date: Tue, 8 Nov 2022 12:07:17 +0000 (GMT) List-Id: https://gcc.gnu.org/g:4c750b1d38a571b1536ff35c9c8786295167c8b0 commit 4c750b1d38a571b1536ff35c9c8786295167c8b0 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 2f97ca0a47b..9eef410ec6e 100644 --- a/doc/baseconf.py +++ b/doc/baseconf.py @@ -194,7 +194,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 = { @@ -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'