conf.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Django documentation build configuration file, created by
  4. # sphinx-quickstart on Thu Mar 27 09:06:53 2008.
  5. #
  6. # This file is execfile()d with the current directory set to its containing dir.
  7. #
  8. # The contents of this file are pickled, so don't put values in the namespace
  9. # that aren't pickleable (module imports are okay, they're removed automatically).
  10. #
  11. # All configuration values have a default; values that are commented out
  12. # serve to show the default.
  13. from __future__ import unicode_literals
  14. import sys
  15. from os.path import abspath, dirname, join
  16. # Make sure we get the version of this copy of Django
  17. sys.path.insert(1, dirname(dirname(abspath(__file__))))
  18. # If extensions (or modules to document with autodoc) are in another directory,
  19. # add these directories to sys.path here. If the directory is relative to the
  20. # documentation root, use os.path.abspath to make it absolute, like shown here.
  21. sys.path.append(abspath(join(dirname(__file__), "_ext")))
  22. # -- General configuration -----------------------------------------------------
  23. # If your documentation needs a minimal Sphinx version, state it here.
  24. needs_sphinx = '1.0'
  25. # Add any Sphinx extension module names here, as strings. They can be extensions
  26. # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
  27. extensions = ["djangodocs", "sphinx.ext.intersphinx"]
  28. # Add any paths that contain templates here, relative to this directory.
  29. # templates_path = []
  30. # The suffix of source filenames.
  31. source_suffix = '.txt'
  32. # The encoding of source files.
  33. #source_encoding = 'utf-8-sig'
  34. # The master toctree document.
  35. master_doc = 'contents'
  36. # General substitutions.
  37. project = 'Django'
  38. copyright = 'Django Software Foundation and contributors'
  39. # The version info for the project you're documenting, acts as replacement for
  40. # |version| and |release|, also used in various other places throughout the
  41. # built documents.
  42. #
  43. # The short X.Y version.
  44. version = '1.7'
  45. # The full version, including alpha/beta/rc tags.
  46. try:
  47. from django import VERSION, get_version
  48. except ImportError:
  49. release = version
  50. else:
  51. def django_release():
  52. pep386ver = get_version()
  53. if VERSION[3:5] == ('alpha', 0) and 'dev' not in pep386ver:
  54. return pep386ver + '.dev'
  55. return pep386ver
  56. release = django_release()
  57. # The "development version" of Django
  58. django_next_version = '1.7'
  59. # The language for content autogenerated by Sphinx. Refer to documentation
  60. # for a list of supported languages.
  61. #language = None
  62. # Location for .po/.mo translation files used when language is set
  63. locale_dirs = ['locale/']
  64. # There are two options for replacing |today|: either, you set today to some
  65. # non-false value, then it is used:
  66. #today = ''
  67. # Else, today_fmt is used as the format for a strftime call.
  68. today_fmt = '%B %d, %Y'
  69. # List of patterns, relative to source directory, that match files and
  70. # directories to ignore when looking for source files.
  71. exclude_patterns = ['_build']
  72. # The reST default role (used for this markup: `text`) to use for all documents.
  73. #default_role = None
  74. # If true, '()' will be appended to :func: etc. cross-reference text.
  75. add_function_parentheses = True
  76. # If true, the current module name will be prepended to all description
  77. # unit titles (such as .. function::).
  78. add_module_names = False
  79. # If true, sectionauthor and moduleauthor directives will be shown in the
  80. # output. They are ignored by default.
  81. show_authors = False
  82. # The name of the Pygments (syntax highlighting) style to use.
  83. pygments_style = 'trac'
  84. # Links to Python's docs should reference the most recent version of the 2.x
  85. # branch, which is located at this URL.
  86. intersphinx_mapping = {
  87. 'python': ('http://docs.python.org/', None),
  88. 'sphinx': ('http://sphinx-doc.org/', None),
  89. 'six': ('http://pythonhosted.org/six/', None),
  90. 'simplejson': ('http://simplejson.readthedocs.org/en/latest/', None),
  91. }
  92. # Python's docs don't change every week.
  93. intersphinx_cache_limit = 90 # days
  94. # -- Options for HTML output ---------------------------------------------------
  95. # The theme to use for HTML and HTML Help pages. See the documentation for
  96. # a list of builtin themes.
  97. html_theme = "djangodocs"
  98. # Theme options are theme-specific and customize the look and feel of a theme
  99. # further. For a list of options available for each theme, see the
  100. # documentation.
  101. #html_theme_options = {}
  102. # Add any paths that contain custom themes here, relative to this directory.
  103. html_theme_path = ["_theme"]
  104. # The name for this set of Sphinx documents. If None, it defaults to
  105. # "<project> v<release> documentation".
  106. #html_title = None
  107. # A shorter title for the navigation bar. Default is the same as html_title.
  108. #html_short_title = None
  109. # The name of an image file (relative to this directory) to place at the top
  110. # of the sidebar.
  111. #html_logo = None
  112. # The name of an image file (within the static path) to use as favicon of the
  113. # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
  114. # pixels large.
  115. #html_favicon = None
  116. # Add any paths that contain custom static files (such as style sheets) here,
  117. # relative to this directory. They are copied after the builtin static files,
  118. # so a file named "default.css" will overwrite the builtin "default.css".
  119. #html_static_path = ["_static"]
  120. # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
  121. # using the given strftime format.
  122. html_last_updated_fmt = '%b %d, %Y'
  123. # If true, SmartyPants will be used to convert quotes and dashes to
  124. # typographically correct entities.
  125. html_use_smartypants = True
  126. # HTML translator class for the builder
  127. html_translator_class = "djangodocs.DjangoHTMLTranslator"
  128. # Content template for the index page.
  129. #html_index = ''
  130. # Custom sidebar templates, maps document names to template names.
  131. #html_sidebars = {}
  132. # Additional templates that should be rendered to pages, maps page names to
  133. # template names.
  134. html_additional_pages = {}
  135. # If false, no module index is generated.
  136. #html_domain_indices = True
  137. # If false, no index is generated.
  138. #html_use_index = True
  139. # If true, the index is split into individual pages for each letter.
  140. #html_split_index = False
  141. # If true, links to the reST sources are added to the pages.
  142. #html_show_sourcelink = True
  143. # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
  144. #html_show_sphinx = True
  145. # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
  146. #html_show_copyright = True
  147. # If true, an OpenSearch description file will be output, and all pages will
  148. # contain a <link> tag referring to it. The value of this option must be the
  149. # base URL from which the finished HTML is served.
  150. #html_use_opensearch = ''
  151. # This is the file name suffix for HTML files (e.g. ".xhtml").
  152. #html_file_suffix = None
  153. # Output file base name for HTML help builder.
  154. htmlhelp_basename = 'Djangodoc'
  155. modindex_common_prefix = ["django."]
  156. # Appended to every page
  157. rst_epilog = """
  158. .. |django-users| replace:: :ref:`django-users <django-users-mailing-list>`
  159. .. |django-core-mentorship| replace:: :ref:`django-core-mentorship <django-core-mentorship-mailing-list>`
  160. .. |django-developers| replace:: :ref:`django-developers <django-developers-mailing-list>`
  161. .. |django-announce| replace:: :ref:`django-announce <django-announce-mailing-list>`
  162. .. |django-updates| replace:: :ref:`django-updates <django-updates-mailing-list>`
  163. """
  164. # -- Options for LaTeX output --------------------------------------------------
  165. latex_elements = {
  166. 'preamble': ('\\DeclareUnicodeCharacter{2264}{\\ensuremath{\\le}}'
  167. '\\DeclareUnicodeCharacter{2265}{\\ensuremath{\\ge}}')
  168. }
  169. # Grouping the document tree into LaTeX files. List of tuples
  170. # (source start file, target name, title, author, document class [howto/manual]).
  171. #latex_documents = []
  172. latex_documents = [
  173. ('contents', 'django.tex', 'Django Documentation',
  174. 'Django Software Foundation', 'manual'),
  175. ]
  176. # The name of an image file (relative to this directory) to place at the top of
  177. # the title page.
  178. #latex_logo = None
  179. # For "manual" documents, if this is true, then toplevel headings are parts,
  180. # not chapters.
  181. #latex_use_parts = False
  182. # If true, show page references after internal links.
  183. #latex_show_pagerefs = False
  184. # If true, show URL addresses after external links.
  185. #latex_show_urls = False
  186. # Documents to append as an appendix to all manuals.
  187. #latex_appendices = []
  188. # If false, no module index is generated.
  189. #latex_domain_indices = True
  190. # -- Options for manual page output --------------------------------------------
  191. # One entry per manual page. List of tuples
  192. # (source start file, name, description, authors, manual section).
  193. man_pages = [
  194. ('contents', 'django', 'Django Documentation', ['Django Software Foundation'], 1)
  195. ]
  196. # -- Options for Texinfo output ------------------------------------------------
  197. # List of tuples (startdocname, targetname, title, author, dir_entry,
  198. # description, category, toctree_only)
  199. texinfo_documents = [(
  200. master_doc, "django", "", "", "Django",
  201. "Documentation of the Django framework", "Web development", False
  202. )]
  203. # -- Options for Epub output ---------------------------------------------------
  204. # Bibliographic Dublin Core info.
  205. epub_title = project
  206. epub_author = 'Django Software Foundation'
  207. epub_publisher = 'Django Software Foundation'
  208. epub_copyright = copyright
  209. # The basename for the epub file. It defaults to the project name.
  210. #epub_basename = 'Django'
  211. # The HTML theme for the epub output. Since the default themes are not optimized
  212. # for small screen space, using the same theme for HTML and epub output is
  213. # usually not wise. This defaults to 'epub', a theme designed to save visual
  214. # space.
  215. epub_theme = 'djangodocs-epub'
  216. # The language of the text. It defaults to the language option
  217. # or en if the language is not set.
  218. #epub_language = ''
  219. # The scheme of the identifier. Typical schemes are ISBN or URL.
  220. #epub_scheme = ''
  221. # The unique identifier of the text. This can be a ISBN number
  222. # or the project homepage.
  223. #epub_identifier = ''
  224. # A unique identification for the text.
  225. #epub_uid = ''
  226. # A tuple containing the cover image and cover page html template filenames.
  227. epub_cover = ('', 'epub-cover.html')
  228. # A sequence of (type, uri, title) tuples for the guide element of content.opf.
  229. #epub_guide = ()
  230. # HTML files that should be inserted before the pages created by sphinx.
  231. # The format is a list of tuples containing the path and title.
  232. #epub_pre_files = []
  233. # HTML files shat should be inserted after the pages created by sphinx.
  234. # The format is a list of tuples containing the path and title.
  235. #epub_post_files = []
  236. # A list of files that should not be packed into the epub file.
  237. #epub_exclude_files = []
  238. # The depth of the table of contents in toc.ncx.
  239. #epub_tocdepth = 3
  240. # Allow duplicate toc entries.
  241. #epub_tocdup = True
  242. # Choose between 'default' and 'includehidden'.
  243. #epub_tocscope = 'default'
  244. # Fix unsupported image types using the PIL.
  245. #epub_fix_images = False
  246. # Scale large images.
  247. #epub_max_image_width = 0
  248. # How to display URL addresses: 'footnote', 'no', or 'inline'.
  249. #epub_show_urls = 'inline'
  250. # If false, no index is generated.
  251. #epub_use_index = True