/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/conf.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
#
3
 
# Bazaar documentation build configuration file, created by
 
3
# Breezy documentation build configuration file, created by
4
4
# sphinx-quickstart on Tue Jul 21 17:04:52 2009.
5
5
#
6
6
# This file is execfile()d with the current directory set to its containing dir.
12
12
# documentation root, use os.path.abspath to make it absolute, like shown here.
13
13
sys.path = [os.path.abspath('../..')] + sys.path
14
14
 
15
 
# Most of the configuration for Bazaar docs is defined here ...
16
 
from bzrlib.doc_generate.conf import *
 
15
# Most of the configuration for Breezy docs is defined here ...
 
16
from breezy.doc_generate.conf import *
17
17
 
18
18
 
19
19
## Configuration specific to this site ##
20
20
 
21
21
# The locale code for this documentation set
22
 
bzr_locale = 'en'
 
22
brz_locale = 'en'
23
23
 
24
24
# A shorter title for the navigation bar.  Default is the same as html_title.
25
25
html_short_title = u"Developer Document Catalog (%s)" % (release,)
29
29
#html_additional_pages = {'index': 'index.html'}
30
30
 
31
31
# Output file base name for HTML help builder.
32
 
htmlhelp_basename = 'bzr-developers'
 
32
htmlhelp_basename = 'brz-developers'
33
33
 
34
34
# Grouping the document tree into LaTeX files. List of tuples
35
35
# (source start file, target name, title, author, documentclass [howto/manual]).
36
 
bzr_documents = [
37
 
  ('HACKING', 'bzr-en-developer-guide', u'Bazaar Developer Guide',
38
 
   u'Bazaar Developers', 'manual'),
39
 
  ('testing', 'bzr-en-testing-guide', u'Bazaar Testing Guide',
40
 
   u'Bazaar Developers', 'manual'),
41
 
  ('overview', 'bzr-en-architecture-overview', u'Bazaar Architecture Overview',
42
 
   u'Bazaar Developers', 'howto'),
43
 
  ('integration', 'bzr-en-integration-guide', u'Bazaar Integration Guide',
44
 
   u'Bazaar Developers', 'howto'),
 
36
brz_documents = [
 
37
  ('HACKING', 'brz-en-developer-guide', u'Breezy Developer Guide',
 
38
   u'Breezy Developers', 'manual'),
 
39
  ('testing', 'brz-en-testing-guide', u'Breezy Testing Guide',
 
40
   u'Breezy Developers', 'manual'),
 
41
  ('overview', 'brz-en-architecture-overview', u'Breezy Architecture Overview',
 
42
   u'Breezy Developers', 'howto'),
 
43
  ('integration', 'brz-en-integration-guide', u'Breezy Integration Guide',
 
44
   u'Breezy Developers', 'howto'),
45
45
]
46
46
 
47
47
latex_documents = [
48
48
    (start, target+'.tex', title, author, doc_class)
49
 
    for start, target, title, author, doc_class in bzr_documents
 
49
    for start, target, title, author, doc_class in brz_documents
50
50
    ]
51
51
 
52
52
texinfo_documents = [
53
53
    (start, target, title, author, doc_class)
54
 
    for start, target, title, author, doc_class in bzr_documents
 
54
    for start, target, title, author, doc_class in brz_documents
55
55
    ]
56
56
 
57
57
# List of documents that shouldn't be included in the build.