~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/ja/conf.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-11-17 03:20:35 UTC
  • mfrom: (4792.4.3 456036)
  • Revision ID: pqm@pqm.ubuntu.com-20091117032035-s3sgtlixj1lrminn
(Gordon Tyler) Fix IndexError during 'bzr ignore /' (#456036)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
# If extensions (or modules to document with autodoc) are in another directory,
11
11
# add these directories to sys.path here. If the directory is relative to the
12
12
# documentation root, use os.path.abspath to make it absolute, like shown here.
13
 
sys.path = [os.path.abspath('../..')] + sys.path
 
13
#sys.path = [os.path.abspath('../..')] + sys.path
 
14
sys.path = [os.path.abspath('.')] + sys.path
14
15
 
15
16
# Most of the configuration for Bazaar docs is defined here ...
16
 
from bzrlib.doc_generate.sphinx_conf import *
 
17
#from bzrlib.doc_generate.sphinx_conf import *
 
18
from sphinx_conf import *
17
19
 
18
20
 
19
21
## Configuration specific to this site ##
45
47
 
46
48
# Additional templates that should be rendered to pages, maps page names to
47
49
# template names.
48
 
# html_additional_pages = {'index': 'index.html'}
 
50
#html_additional_pages = {'index': 'index.html'}
49
51
 
50
52
# Output file base name for HTML help builder.
51
53
htmlhelp_basename = 'bzr-%s' % (bzr_locale,)
84
86
    #'user-guide/resolving_conflicts',
85
87
    #'user-guide/version_info',
86
88
    # Plain-style documentation generation stuff
87
 
    'release-notes/NEWS',
88
 
    'user-reference/bzr_man',
89
 
    'user-guide/index-plain',
90
 
    # Miscellaneous
91
 
    'user-reference/readme',
 
89
    #'user-guide/index-plain',
92
90
]
93
91