/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/ja/conf.py

  • Committer: Neil Martinsen-Burrell
  • Date: 2009-11-23 15:29:24 UTC
  • mto: (4825.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4826.
  • Revision ID: nmb@wartburg.edu-20091123152924-z2b9vjzv8z602ut2
fix broken link in User Guide

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