-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathall.py
More file actions
53 lines (38 loc) · 1.35 KB
/
all.py
File metadata and controls
53 lines (38 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Global configuration information used across all the
# translations of documentation.
#
# Import the base theme configuration
from cakephpsphinx.config.all import *
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '5.x'
# The search index version.
search_version = 'migrations-5'
# The marketing display name for the book.
version_name = ''
# Project name shown in the black header bar
project = 'CakePHP Migrations'
# Other versions that display in the version picker menu.
version_list = [
{'name': '2.x', 'number': 'migrations/2', 'title': '2.x'},
{'name': '3.x', 'number': 'migrations/3', 'title': '3.x'},
{'name': '4.x', 'number': 'migrations/4', 'title': '4.x'},
{'name': '5.x', 'number': 'migrations/5', 'title': '5.x', 'current': True},
]
# Languages available.
languages = ['en', 'fr', 'ja', 'pt', 'ru']
# The GitHub branch name for this version of the docs
# for edit links to point at.
branch = '5.x'
# Current version being built
version = '5.x'
# Language in use for this directory.
language = 'en'
show_root_link = True
repository = 'cakephp/migrations'
source_path = 'docs/'
hide_page_contents = ('search', '404', 'contents')
is_prerelease = False