-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathall.py
More file actions
48 lines (35 loc) · 1.3 KB
/
all.py
File metadata and controls
48 lines (35 loc) · 1.3 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
# 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 = '4.x'
# The search index version
search_version = 'authentication-4'
# The marketing display name for the book.
version_name = ''
# Project name shown in the black header bar
project = 'CakePHP Authentication'
# Other versions that display in the version picker menu.
version_list = [
{'name': '1.x', 'number': '/authentication/1', 'title': '1.x'},
{'name': '2.x', 'number': '/authentication/2', 'title': '2.x'},
{'name': '3.x', 'number': '/authentication/3', 'title': '3.x'},
{'name': '4.x', 'number': '/authentication/4', 'title': '4.x', 'current': True},
]
# Languages available.
languages = ['en', 'es', 'fr', 'ja']
# The GitHub branch name for this version of the docs
# for edit links to point at.
branch = '4.x'
# Current version being built
version = '4.x'
show_root_link = True
repository = 'cakephp/authentication'
source_path = 'docs/'
hide_page_contents = ('search', '404', 'contents')