From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id DFEDA3858D20; Mon, 7 Nov 2022 14:19:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DFEDA3858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667830796; bh=pXuudgm5xi/YGlLB00DJkTgAECj8vDBN2c3tsfYkL/M=; h=From:To:Subject:Date:From; b=jooN9a97XGP+d3SUU890CMXHhPg1DukstELUS51v+A451e2Wlj3D7MvrXlmjTQwkU ntMgFJzaKdRC8Jdi7iV0b54zUrWHr3qCfk533r23LoF6O5+WnYa6MuCnoiZNnKwTXC wVu81MFtiQVeKjHO3yflS7QqwEW/6HzAWIn14aqc= 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: d95af921088d15c89411bc9cca35f24498b2db51 X-Git-Newrev: 440621f9c8e39cec196842199efc940635e119b1 Message-Id: <20221107141956.DFEDA3858D20@sourceware.org> Date: Mon, 7 Nov 2022 14:19:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:440621f9c8e39cec196842199efc940635e119b1 commit 440621f9c8e39cec196842199efc940635e119b1 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 6993ba5eef6..b3acb63e200 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'