~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to docs/conf.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (6.2.12 experimental)
  • Revision ID: package-import@ubuntu.com-20130509151047-g79qsrewg1yl43h5
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# All configuration values have a default; values that are commented out
12
12
# serve to show the default.
13
13
 
 
14
from __future__ import unicode_literals
 
15
 
14
16
import sys
15
17
import os
16
18
 
50
52
# built documents.
51
53
#
52
54
# The short X.Y version.
53
 
version = '1.4.5'
 
55
version = '1.5'
54
56
# The full version, including alpha/beta/rc tags.
55
 
release = '1.4.5'
 
57
release = '1.5.1'
56
58
# The next version to be released
57
 
django_next_version = '1.5'
 
59
django_next_version = '1.6'
58
60
 
59
61
# The language for content autogenerated by Sphinx. Refer to documentation
60
62
# for a list of supported languages.
87
89
# The name of the Pygments (syntax highlighting) style to use.
88
90
pygments_style = 'trac'
89
91
 
90
 
# Sphinx will recurse into subversion configuration folders and try to read
91
 
# any document file within. These should be ignored.
92
 
# Note: exclude_dirnames is new in Sphinx 0.5
93
 
exclude_dirnames = ['.svn']
94
 
 
95
92
# Links to Python's docs should reference the most recent version of the 2.x
96
93
# branch, which is located at this URL.
97
94
intersphinx_mapping = {
98
95
    'python': ('http://docs.python.org/2.7', None),
99
96
    'sphinx': ('http://sphinx.pocoo.org/', None),
 
97
    'six': ('http://packages.python.org/six/', None),
 
98
    'simplejson': ('http://simplejson.readthedocs.org/en/latest/', None),
100
99
}
101
100
 
102
101
# Python's docs don't change every week.
195
194
 
196
195
# -- Options for LaTeX output --------------------------------------------------
197
196
 
198
 
# The paper size ('letter' or 'a4').
199
 
#latex_paper_size = 'letter'
200
 
 
201
 
# The font size ('10pt', '11pt' or '12pt').
202
 
#latex_font_size = '10pt'
 
197
latex_elements = {
 
198
    'preamble': ('\\DeclareUnicodeCharacter{2264}{\\ensuremath{\\le}}'
 
199
                 '\\DeclareUnicodeCharacter{2265}{\\ensuremath{\\ge}}')
 
200
}
203
201
 
204
202
# Grouping the document tree into LaTeX files. List of tuples
205
203
# (source start file, target name, title, author, document class [howto/manual]).
206
204
#latex_documents = []
207
205
latex_documents = [
208
 
  ('contents', 'django.tex', u'Django Documentation',
209
 
   u'Django Software Foundation', 'manual'),
 
206
  ('contents', 'django.tex', 'Django Documentation',
 
207
   'Django Software Foundation', 'manual'),
210
208
]
211
209
 
212
210
# The name of an image file (relative to this directory) to place at the top of
223
221
# If true, show URL addresses after external links.
224
222
#latex_show_urls = False
225
223
 
226
 
# Additional stuff for the LaTeX preamble.
227
 
#latex_preamble = ''
228
 
 
229
224
# Documents to append as an appendix to all manuals.
230
225
#latex_appendices = []
231
226
 
242
237
]
243
238
 
244
239
 
 
240
# -- Options for Texinfo output ------------------------------------------------
 
241
 
 
242
# List of tuples (startdocname, targetname, title, author, dir_entry,
 
243
# description, category, toctree_only)
 
244
texinfo_documents=[(
 
245
    master_doc, "django", "", "", "Django",
 
246
    "Documentation of the Django framework", "Web development", False
 
247
)]
 
248
 
 
249
 
245
250
# -- Options for Epub output ---------------------------------------------------
246
251
 
247
252
# Bibliographic Dublin Core info.
248
 
epub_title = u'Django'
249
 
epub_author = u'Django Software Foundation'
250
 
epub_publisher = u'Django Software Foundation'
251
 
epub_copyright = u'2010, Django Software Foundation'
 
253
epub_title = 'Django'
 
254
epub_author = 'Django Software Foundation'
 
255
epub_publisher = 'Django Software Foundation'
 
256
epub_copyright = '2010, Django Software Foundation'
252
257
 
253
258
# The language of the text. It defaults to the language option
254
259
# or en if the language is not set.