Skip to content

Commit

Permalink
docs: switch main version branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Jan 31, 2020
1 parent 0669061 commit a648801
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/manuals/source/conf.py
Expand Up @@ -113,7 +113,7 @@

# General information about the project.
project = "Bareos Documentation"
copyright = "2019 Bareos GmbH & Co. KG and others."
copyright = str(datetime.datetime.now().year) + " Bareos GmbH & Co. KG and others."
author = "Bareos GmbH & Co. KG"

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down Expand Up @@ -266,17 +266,17 @@
import re

# settings for sphinxcontrib-versioning
scv_whitelist_branches = (re.compile(r'^master$'),
re.compile(r'^bareos-18.2$'),
re.compile(r'^bareos-19.2$'))
scv_whitelist_tags = (re.compile(r'^not-exisiting-tag$'),)
scv_whitelist_branches = (
re.compile(r"^master$"),
re.compile(r"^bareos-18.2$"),
re.compile(r"^bareos-19.2$"),
)
scv_whitelist_tags = (re.compile(r"^not-exisiting-tag$"),)
scv_show_banner = True
scv_priority = "branches"
scv_root_ref = "bareos-18.2"
scv_banner_main_ref = "bareos-18.2"
scv_root_ref = "bareos-19.2"
scv_banner_main_ref = "bareos-19.2"

# scv_root_ref = 'dev/pstorz/bareos-18.2/sphinx-versioning'
# scv_banner_main_ref = 'dev/pstorz/bareos-18.2/sphinx-versioning'

plantuml_output_format = "svg_img"

Expand Down

0 comments on commit a648801

Please sign in to comment.