~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/conf.py

  • Committer: Ian Clatworthy
  • Date: 2009-09-09 15:30:59 UTC
  • mto: (4634.37.2 prepare-2.0)
  • mto: This revision was merged to the branch mainline in revision 4689.
  • Revision ID: ian.clatworthy@canonical.com-20090909153059-sb038agvd38ci2q8
more link fixes in the User Guide

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
sys.path = [os.path.abspath('../..')] + sys.path
14
14
 
15
15
# Most of the configuration for Bazaar docs is defined here ...
16
 
from bzrlib.doc_generate.conf import *
 
16
from bzrlib.doc_generate.sphinx_conf import *
17
17
 
18
18
 
19
19
## Configuration specific to this site ##
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'),
45
 
]
46
 
 
47
36
latex_documents = [
48
 
    (start, target+'.tex', title, author, doc_class)
49
 
    for start, target, title, author, doc_class in bzr_documents
50
 
    ]
51
 
 
52
 
texinfo_documents = [
53
 
    (start, target, title, author, doc_class)
54
 
    for start, target, title, author, doc_class in bzr_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
 
# Note: Maybe some of them *ought* to be linked in somewhere?
 
48
# Note: These are taken from the main Makefile. Maybe some of them *ought*
 
49
# to be linked in somewhere?
59
50
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',
 
51
  'doc/developers/add',
 
52
  'doc/developers/annotate',
 
53
  'doc/developers/bundle-creation',
 
54
  'doc/developers/commit',
 
55
  'doc/developers/diff',
 
56
  'doc/developers/directory-fingerprints',
 
57
  'doc/developers/gc',
 
58
  'doc/developers/implementation-notes',
 
59
  'doc/developers/incremental-push-pull',
 
60
  'doc/developers/index',
 
61
  'doc/developers/initial-push-pull',
 
62
  'doc/developers/merge-scaling',
 
63
  'doc/developers/miscellaneous-notes',
 
64
  'doc/developers/missing',
 
65
  'doc/developers/performance-roadmap-rationale',
 
66
  'doc/developers/performance-use-case-analysis',
 
67
  'doc/developers/planned-change-integration',
 
68
  'doc/developers/planned-performance-changes',
 
69
  'doc/developers/plans',
 
70
  'doc/developers/process',
 
71
  'doc/developers/revert',
 
72
  'doc/developers/specifications',
 
73
  'doc/developers/status',
 
74
  'doc/developers/uncommit.txt',
81
75
]