Bump versions to 0.21.8-SNAPSHOT
[bgpcep.git] / docs / conf.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 # SPDX-License-Identifier: EPL-1.0
4 ##############################################################################
5 # Copyright (c) 2018 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 ##############################################################################
12
13 from docs_conf.conf import *
14
15 linkcheck_ignore = [
16     'http://localhost',
17     # Ignore jenkins because it's often slow to respond.
18     'https://jenkins.opendaylight.org/releng',
19     'https://jenkins.opendaylight.org/sandbox',
20     # The '#' in the path makes sphinx think it's an anchor
21     'https://git.opendaylight.org/gerrit/#/admin/projects/releng/builder',
22     'https://git.opendaylight.org/gerrit/#/c/',
23     'https://git.opendaylight.org/gerrit/gitweb',
24     # URL returns a 403 Forbidden
25     'https://www.osgi.org',
26     # Ignore anchors on github.com because linkcheck fails on them
27     '^https?://github.com/.*#',
28     # Ignore IETF URLs often not reachable from Jenkins minions
29     # because of hosting connectivity issues
30     '^https?://tools.ietf.org/html/.*',
31 ]
32 linkcheck_timeout = 300