halil.cakal | 43a4feb | 2022-08-11 17:03:16 +0100 | [diff] [blame] | 1 | # ============LICENSE_START=============================================== |
| 2 | # Copyright (C) 2019-2022 Nordix Foundation. All rights reserved. |
| 3 | # ======================================================================== |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # ============LICENSE_END================================================= |
| 16 | |
maximesson | e6b4d27 | 2019-10-31 13:26:13 +0100 | [diff] [blame] | 17 | from docs_conf.conf import * |
elinuxhenrik | 0a4c38b | 2020-04-14 10:59:36 +0200 | [diff] [blame] | 18 | |
| 19 | #branch configuration |
| 20 | |
elinuxhenrik | e23218e | 2022-06-30 14:53:44 +0200 | [diff] [blame] | 21 | controlpanelbranch = 'latest' |
| 22 | simulatorbranch = 'latest' |
| 23 | dmaapmediatorproducerbranch = 'latest' |
| 24 | dmaapadapterbranch = 'latest' |
| 25 | informationcoordinatorservicebranch = 'latest' |
| 26 | rappcataloguebranch = 'latest' |
| 27 | helmmanagerbranch = 'latest' |
| 28 | ransliceassurancebranch = 'latest' |
| 29 | orufhrecoverybranch = 'latest' |
elinuxhenrik | ef963b9 | 2022-12-16 08:34:17 +0100 | [diff] [blame^] | 30 | authtokenfetchbranch = 'latest' |
elinuxhenrik | e23218e | 2022-06-30 14:53:44 +0200 | [diff] [blame] | 31 | a1policymanagementservicebranch = 'latest' |
elinuxhenrik | ef963b9 | 2022-12-16 08:34:17 +0100 | [diff] [blame^] | 32 | smebranch = 'latest' |
elinuxhenrik | 7608066 | 2022-06-23 10:05:16 +0200 | [diff] [blame] | 33 | onapbranch = 'latest' |
elinuxhenrik | 0a4c38b | 2020-04-14 10:59:36 +0200 | [diff] [blame] | 34 | |
maximesson | e6b4d27 | 2019-10-31 13:26:13 +0100 | [diff] [blame] | 35 | linkcheck_ignore = [ |
| 36 | 'http://localhost.*', |
| 37 | 'http://127.0.0.1.*', |
elinuxhenrik | 5ada515 | 2020-10-19 10:39:59 +0200 | [diff] [blame] | 38 | 'https://gerrit.o-ran-sc.org.*', |
maximesson | e6b4d27 | 2019-10-31 13:26:13 +0100 | [diff] [blame] | 39 | ] |
elinuxhenrik | 0a4c38b | 2020-04-14 10:59:36 +0200 | [diff] [blame] | 40 | |
elinuxhenrik | 7608066 | 2022-06-23 10:05:16 +0200 | [diff] [blame] | 41 | extensions = [ |
| 42 | 'sphinx.ext.intersphinx', |
| 43 | 'sphinx.ext.autosectionlabel', |
| 44 | ] |
elinuxhenrik | 5ada515 | 2020-10-19 10:39:59 +0200 | [diff] [blame] | 45 | |
elinuxhenrik | 0a4c38b | 2020-04-14 10:59:36 +0200 | [diff] [blame] | 46 | #intershpinx mapping with other projects |
| 47 | intersphinx_mapping = {} |
| 48 | |
elinuxhenrik | e23218e | 2022-06-30 14:53:44 +0200 | [diff] [blame] | 49 | intersphinx_mapping['controlpanel'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-portal-nonrtric-controlpanel/en/%s' % controlpanelbranch, None) |
| 50 | intersphinx_mapping['simulator'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-sim-a1-interface/en/%s' % simulatorbranch, None) |
| 51 | intersphinx_mapping['dmaapmediatorproducer'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-dmaapmediatorproducer/en/%s' % dmaapmediatorproducerbranch, None) |
| 52 | intersphinx_mapping['dmaapadapter'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-dmaapadapter/en/%s' % dmaapadapterbranch, None) |
| 53 | intersphinx_mapping['informationcoordinatorservice'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-informationcoordinatorservice/en/%s' % informationcoordinatorservicebranch, None) |
| 54 | intersphinx_mapping['rappcatalogue'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-rappcatalogue/en/%s' % rappcataloguebranch, None) |
| 55 | intersphinx_mapping['helmmanager'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-helmmanager/en/%s' % helmmanagerbranch, None) |
| 56 | intersphinx_mapping['ransliceassurance'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-rapp-ransliceassurance/en/%s' % ransliceassurancebranch, None) |
| 57 | intersphinx_mapping['orufhrecovery'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-rapp-orufhrecovery/en/%s' % orufhrecoverybranch, None) |
elinuxhenrik | ef963b9 | 2022-12-16 08:34:17 +0100 | [diff] [blame^] | 58 | intersphinx_mapping['authtokenfetch'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric/en/%s' % authtokenfetchbranch, None) |
elinuxhenrik | e23218e | 2022-06-30 14:53:44 +0200 | [diff] [blame] | 59 | intersphinx_mapping['a1policymanagementservice'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-a1policymanagementservice/en/%s' % a1policymanagementservicebranch, None) |
elinuxhenrik | ef963b9 | 2022-12-16 08:34:17 +0100 | [diff] [blame^] | 60 | intersphinx_mapping['sme'] = ('https://docs.o-ran-sc.org/projects/o-ran-sc-nonrtric-plt-sme/en/%s' % smebranch, None) |
elinuxhenrik | 7608066 | 2022-06-23 10:05:16 +0200 | [diff] [blame] | 61 | intersphinx_mapping['onapa1policymanagementservice'] = ('https://docs.onap.org/projects/onap-ccsdk-oran/en/%s' % onapbranch, None) |