/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: Andrew Bennetts
  • Date: 2009-10-21 11:13:40 UTC
  • mto: This revision was merged to the branch mainline in revision 4762.
  • Revision ID: andrew.bennetts@canonical.com-20091021111340-w7x4d5yf83qwjncc
Add test that WSGI glue allows request handlers to access paths above that request's. backing transport, so long as it is within the WSGI app's backing transport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
#
3
 
# Breezy documentation build configuration file, created by
 
3
# Bazaar 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 Breezy docs is defined here ...
16
 
from breezy.doc_generate.conf import *
 
15
# Most of the configuration for Bazaar docs is defined here ...
 
16
from bzrlib.doc_generate.sphinx_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
 
brz_locale = 'en'
 
22
bzr_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 = 'brz-developers'
 
32
htmlhelp_basename = 'bzr-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
 
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
 
]
46
 
 
47
36
latex_documents = [
48
 
    (start, target+'.tex', title, author, doc_class)
49
 
    for start, target, title, author, doc_class in brz_documents
50
 
    ]
51
 
 
52
 
texinfo_documents = [
53
 
    (start, target, title, author, doc_class)
54
 
    for start, target, title, author, doc_class in brz_documents
55
 
    ]
 
37
  ('HACKING', 'bzr-en-developer-guide.tex', u'Bazaar Developer Guide',
 
38
   u'Bazaar Developers', 'manual'),
 
39
  ('testing', 'bzr-en-testing-guide.tex', u'Bazaar Testing Guide',
 
40
   u'Bazaar Developers', 'manual'),
 
41
  ('overview', 'bzr-en-architecture-overview.tex', u'Bazaar Architecture Overview',
 
42
   u'Bazaar Developers', 'howto'),
 
43
  ('integration', 'bzr-en-integration-guide.tex', u'Bazaar Integration Guide',
 
44
   u'Bazaar Developers', 'howto'),
 
45
]
56
46
 
57
47
# List of documents that shouldn't be included in the build.
58
48
# Note: Maybe some of them *ought* to be linked in somewhere?