/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 19:38:57 UTC
  • mfrom: (7143.16.21 even-more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116193857-bs5oma2655sp55qu
Fix another dozen flake8 errors.

Merged from https://code.launchpad.net/~jelmer/brz/even-more-cleanups/+merge/358931

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
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'),
 
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
 
    (start, target+'.tex', title, author, doc_class)
 
48
    (start, target + '.tex', title, author, doc_class)
49
49
    for start, target, title, author, doc_class in brz_documents
50
50
    ]
51
51
 
57
57
# List of documents that shouldn't be included in the build.
58
58
# Note: Maybe some of them *ought* to be linked in somewhere?
59
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',
 
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
81
]