~ubuntu-branches/debian/sid/pyx/sid

« back to all changes in this revision

Viewing changes to manual/conf.py

  • Committer: Package Import Robot
  • Author(s): Stuart Prescott
  • Date: 2012-12-17 13:45:12 UTC
  • mfrom: (1.1.4)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: package-import@ubuntu.com-20121217134512-u0w6lrgdowsc1sfu
Tags: 0.12.1-1
* New upstream release
* Update maintainer address.
* Update copyright format URL.
* Bump standards version to 3.9.4 (no changes required).
* Drop postinst that was needed for lenny->squeeze upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
# Add any Sphinx extension module names here, as strings. They can be extensions
29
29
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
30
 
extensions = ['sphinx.ext.pngmath']
 
30
extensions = ['sphinx.ext.pngmath', 'sphinx.ext.todo']
31
31
 
32
32
# Add any paths that contain templates here, relative to this directory.
33
33
templates_path = ['_templates']
105
105
 
106
106
# The name for this set of Sphinx documents.  If None, it defaults to
107
107
# "<project> v<release> documentation".
108
 
#html_title = None
 
108
html_title = 'PyX %s Manual' % release
109
109
 
110
110
# A shorter title for the navigation bar.  Default is the same as html_title.
111
111
#html_short_title = None
168
168
# Output file base name for HTML help builder.
169
169
htmlhelp_basename = 'PyXdoc'
170
170
 
 
171
todo_include_todos = True
 
172
 
171
173
 
172
174
# -- Options for LaTeX output --------------------------------------------------
173
175
 
174
176
# The paper size ('letter' or 'a4').
175
 
#latex_paper_size = 'letter'
 
177
latex_paper_size = 'a4'
176
178
 
177
179
# The font size ('10pt', '11pt' or '12pt').
178
180
#latex_font_size = '10pt'
180
182
# Grouping the document tree into LaTeX files. List of tuples
181
183
# (source start file, target name, title, author, documentclass [howto/manual]).
182
184
latex_documents = [
183
 
  ('manual', 'PyX.tex', u'PyX Documentation',
 
185
  ('manual', 'manual.tex', u'PyX Manual',
184
186
   u'Jörg Lehmann, Michael Schindler, André Wobst', 'manual'),
185
187
]
186
188
 
199
201
#latex_show_urls = False
200
202
 
201
203
# Additional stuff for the LaTeX preamble.
202
 
#latex_preamble = ''
 
204
latex_preamble = r'''
 
205
  \hypersetup{pdftitle={PyX Manual},
 
206
              pdfauthor={Joerg Lehmann <joergl@users.sourceforge.net>, Michael Schindler <m-schindler@users.sourceforge.net>, Andre Wobst <wobsta@users.sourceforge.net>},
 
207
              pdfsubject={PyX Manual},
 
208
              pdfkeywords={PyX, graphics, manual}}
 
209
'''
203
210
 
204
211
# Documents to append as an appendix to all manuals.
205
212
#latex_appendices = []
213
220
# One entry per manual page. List of tuples
214
221
# (source start file, name, description, authors, manual section).
215
222
man_pages = [
216
 
    ('manual', 'pyx', u'PyX Documentation',
 
223
    ('manual', 'pyx', u'PyX Manual',
217
224
     [u'Jörg Lehmann, Michael Schindler, André Wobst'], 1)
218
225
]
219
226
 
220
227
# -- Other options  ------------------------------------------------------------
221
228
 
 
229
todo_include_todos = True