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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# -*- coding: utf-8 -*-
#
# Bazaar documentation build configuration file, created by
# sphinx-quickstart on Tue Jul 21 17:04:52 2009.
#
# This file is execfile()d with the current directory set to its containing dir.
import sys, os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path = [os.path.abspath('../..')] + sys.path
# Most of the configuration for Bazaar docs is defined here ...
from bzrlib.doc_generate.conf import *
## Configuration specific to this site ##
# The locale code for this documentation set
bzr_locale = 'en'
# Translations & supporting helper function
bzr_titles = {
u'Table of Contents (%s)': None,
u'Bazaar User Guide': None,
u'Bazaar User Reference': None,
u'Bazaar Release Notes': None,
u'Bazaar Upgrade Guide': None,
u"Bazaar System Administrator's Guide": None,
u'Bazaar in five minutes': None,
u'Bazaar Tutorial': None,
u'Using Bazaar With Launchpad': None,
u'Centralized Workflow Tutorial': None,
u"What's New in Bazaar 2.1?": None,
}
def bzr_title(s):
return bzr_titles.get(s) or s
# A shorter title for the navigation bar. Default is the same as html_title.
html_short_title = bzr_title(u"Table of Contents (%s)") % (release,)
# Additional templates that should be rendered to pages, maps page names to
# template names.
html_additional_pages = {'index': 'index.html'}
# Output file base name for HTML help builder.
htmlhelp_basename = 'bzr-%s' % (bzr_locale,)
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
# Manuals
('user-guide/index', 'bzr-%s-user-guide.tex' % (bzr_locale,),
bzr_title(u'Bazaar User Guide'), bzr_team, 'manual'),
('user-reference/index', 'bzr-%s-user-reference.tex' % (bzr_locale,),
bzr_title(u'Bazaar User Reference'), bzr_team, 'manual'),
('release-notes/NEWS', 'bzr-%s-release-notes.tex' % (bzr_locale,),
bzr_title(u'Bazaar Release Notes'), bzr_team, 'manual'),
('upgrade-guide/index', 'bzr-%s-upgrade-guide.tex' % (bzr_locale,),
bzr_title(u'Bazaar Upgrade Guide'), bzr_team, 'manual'),
('admin-guide/index', 'bzr-%s-admin-guide.tex' % (bzr_locale,),
bzr_title(u"Bazaar System Administrator's Guide"), bzr_team, 'manual'),
# Tutorials
('mini-tutorial/index', 'bzr-%s-tutorial-mini.tex' % (bzr_locale,),
bzr_title(u'Bazaar in five minutes'), bzr_team, 'howto'),
('tutorials/tutorial', 'bzr-%s-tutorial.tex' % (bzr_locale,),
bzr_title(u'Bazaar Tutorial'), bzr_team, 'howto'),
('tutorials/using_bazaar_with_launchpad',
'bzr-%s-tutorial-with-launchpad.tex' % (bzr_locale,),
bzr_title(u'Using Bazaar With Launchpad'), bzr_team, 'howto'),
('tutorials/centralized_workflow',
'bzr-%s-tutorial-centralized.tex' % (bzr_locale,),
bzr_title(u'Centralized Workflow Tutorial'), bzr_team, 'howto'),
('whats-new/whats-new-in-2.1', 'bzr-%s-whats-new.tex' % (bzr_locale,),
bzr_title(u"What's New in Bazaar 2.1?"), bzr_team, 'howto'),
]
# List of documents that shouldn't be included in the build.
unused_docs = [
# Subtopics that get included
'upgrade-guide/overview',
'upgrade-guide/data_migration',
'upgrade-guide/tips_and_tricks',
# Plain-style documentation generation stuff
'release-notes/NEWS',
'user-reference/bzr_man',
'user-guide/index-plain',
'admin-guide/index-plain',
# Miscellaneous
'user-reference/readme',
]
|