summaryrefslogtreecommitdiff
path: root/doc/ru/conf.py
blob: edce830406cf72749714d5642b32f8e1412df70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- coding: utf-8 -*-
#
# Bazaar documentation build configuration file, created by
# sphinx-quickstart on Tue Jul 21 17:04:52 2009.
#
# This file is execfile()d with the current directory set to its containing dir.

import sys, os

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path = [os.path.abspath('../..')] + sys.path

# Most of the configuration for Bazaar docs is defined here ...
from bzrlib.doc_generate.conf import *


## Configuration specific to this site ##

# The locale code for this documentation set
bzr_locale = 'ru'

# Translations & supporting helper function
bzr_titles = {
        u'Table of Contents (%s)': u'Содержание (%s)',
        u'Bazaar User Guide': None,
        u'Bazaar User Reference': None,
        u'Bazaar Release Notes': None,
        u'Bazaar Upgrade Guide': None,
        u'Bazaar in five minutes': u'Базар за пять минут',
        u'Bazaar Tutorial': u'Большой учебник',
        u'Using Bazaar With Launchpad': u'Использование Bazaar с Launchpad',
        u'Centralized Workflow Tutorial': u'Работа в централизованном стиле',
    }
def bzr_title(s):
    return bzr_titles.get(s) or s

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
language = bzr_locale

# A shorter title for the navigation bar.  Default is the same as html_title.
html_short_title = bzr_title(u"Table of Contents (%s)") % (release,)

# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {'index': 'index.html'}

# Output file base name for HTML help builder.
htmlhelp_basename = 'bzr-%s' % (bzr_locale,)

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
bzr_documents = [
  # Manuals
  #('user-guide/index', 'bzr-%s-user-guide' % (bzr_locale,),
  #  bzr_title(u'Bazaar User Guide'), bzr_team, 'manual'),
  #('user-reference/bzr_man', 'bzr-%s-user-reference' % (bzr_locale,),
  #  bzr_title(u'Bazaar User Reference'), bzr_team, 'manual'),
  #('release-notes/NEWS', 'bzr-%s-release-notes' % (bzr_locale,),
  #  bzr_title(u'Bazaar Release Notes'), bzr_team, 'manual'),
  #('upgrade-guide/index', 'bzr-%s-upgrade-guide' % (bzr_locale,),
  #  bzr_title(u'Bazaar Upgrade Guide'), bzr_team, 'manual'),
  # Tutorials
  ('mini-tutorial/index', 'bzr-%s-tutorial-mini' % (bzr_locale,),
    bzr_title(u'Bazaar in five minutes'), bzr_team, 'howto'),
  ('tutorials/tutorial', 'bzr-%s-tutorial' % (bzr_locale,),
    bzr_title(u'Bazaar Tutorial'), bzr_team, 'howto'),
  #('tutorials/using_bazaar_with_launchpad',
  #  'bzr-%s-tutorial-with-launchpad' % (bzr_locale,),
  #  bzr_title(u'Using Bazaar With Launchpad'), bzr_team, 'howto'),
  #('tutorials/centralized_workflow',
  #  'bzr-%s-tutorial-centralized' % (bzr_locale,),
  #  bzr_title(u'Centralized Workflow Tutorial'), bzr_team, 'howto'),
]

latex_documents = [
    (start, target+'.tex', title, author, doc_class)
    for start, target, title, author, doc_class in bzr_documents
    ]

texinfo_documents = [
    (start, target, title, author, doc_class)
    for start, target, title, author, doc_class in bzr_documents
    ]


# List of documents that shouldn't be included in the build.
unused_docs = [
    # Subtopics that get included
    'upgrade-guide/overview',
    'upgrade-guide/data_migration',
    'upgrade-guide/tips_and_tricks',
    'user-guide/branching_a_project',
    'user-guide/core_concepts',
    'user-guide/introducing_bazaar',
    'user-guide/specifying_revisions',
    'user-guide/stacked',
    'user-guide/using_checkouts',
    'user-guide/zen',
    # Plain-style documentation generation stuff
    'user-guide/index-plain',
]