/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: Robert Collins
  • Date: 2005-10-19 10:11:57 UTC
  • mfrom: (1185.16.78)
  • mto: This revision was merged to the branch mainline in revision 1470.
  • Revision ID: robertc@robertcollins.net-20051019101157-17438d311e746b4f
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
#
3
 
# Breezy documentation build configuration file, created by
4
 
# sphinx-quickstart on Tue Jul 21 17:04:52 2009.
5
 
#
6
 
# This file is execfile()d with the current directory set to its containing dir.
7
 
 
8
 
import sys, os
9
 
 
10
 
# If extensions (or modules to document with autodoc) are in another directory,
11
 
# add these directories to sys.path here. If the directory is relative to the
12
 
# documentation root, use os.path.abspath to make it absolute, like shown here.
13
 
sys.path = [os.path.abspath('../..'), os.path.abspath('api')] + sys.path
14
 
 
15
 
# Most of the configuration for Breezy docs is defined here ...
16
 
from breezy.doc_generate.conf import *
17
 
 
18
 
 
19
 
## Configuration specific to this site ##
20
 
 
21
 
# The locale code for this documentation set
22
 
brz_locale = 'en'
23
 
 
24
 
# A shorter title for the navigation bar.  Default is the same as html_title.
25
 
html_short_title = u"Developer Document Catalog (%s)" % (release,)
26
 
 
27
 
# Additional templates that should be rendered to pages, maps page names to
28
 
# template names.
29
 
#html_additional_pages = {'index': 'index.html'}
30
 
 
31
 
# Output file base name for HTML help builder.
32
 
htmlhelp_basename = 'brz-developers'
33
 
 
34
 
# Grouping the document tree into LaTeX files. List of tuples
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
 
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
 
    ]
56
 
 
57
 
# List of documents that shouldn't be included in the build.
58
 
# Note: Maybe some of them *ought* to be linked in somewhere?
59
 
unused_docs = [
60
 
    'add',
61
 
    'annotate',
62
 
    'bundle-creation',
63
 
    'bundle-format4',
64
 
    'check',
65
 
    'commit',
66
 
    'diff',
67
 
    'directory-fingerprints',
68
 
    'gc',
69
 
    'index-plain',
70
 
    'incremental-push-pull',
71
 
    'initial-push-pull',
72
 
    'merge-scaling',
73
 
    'missing',
74
 
    'performance-roadmap-rationale',
75
 
    'performance-use-case-analysis',
76
 
    'planned-change-integration',
77
 
    'planned-performance-changes',
78
 
    'revert',
79
 
    'status',
80
 
    'uncommit',
81
 
]