diff --git a/doc/conf.py b/doc/conf.py index 6a1265d6a2..2b21ea0b03 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -94,6 +94,19 @@ jlite_url = 'https://holoviz-dev.github.io/panelite-dev' if is_dev else 'https://panelite.holoviz.org' pyodide_url = 'https://holoviz-dev.github.io/panel/pyodide' if is_dev else 'https://panel.holoviz.org/pyodide' +rediraffe_redirects = { + # Removal of the developer testing page + 'developer_guide/testing': 'developer_guide/index', + 'user_guide/APIs.html': 'explanation/api/index.html#apis', + 'user_guide/Pipelines.html': 'how_to/pipeline/index.html', + 'user_guide/Templates.html': 'how_to/templates/index.html', + '_static/images/sazure_deployment.png': '_static/images/azure_deployment.png', + 'user_guide/Server_Configuration.html': 'how_to/server/index.html', + +# Todo +# https://panel.holoviz.org/user_guide/Customization.html : what page to redirect this to? +} + nbsite_analytics = { 'goatcounter_holoviz': True, }