2
0

conf.py 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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.6'
  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.6'
  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/2.7', None),
  88. 'sphinx': ('http://sphinx.pocoo.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. # -- Options for LaTeX output --------------------------------------------------
  157. latex_elements = {
  158. 'preamble': ('\\DeclareUnicodeCharacter{2264}{\\ensuremath{\\le}}'
  159. '\\DeclareUnicodeCharacter{2265}{\\ensuremath{\\ge}}')
  160. }
  161. # Grouping the document tree into LaTeX files. List of tuples
  162. # (source start file, target name, title, author, document class [howto/manual]).
  163. #latex_documents = []
  164. latex_documents = [
  165. ('contents', 'django.tex', 'Django Documentation',
  166. 'Django Software Foundation', 'manual'),
  167. ]
  168. # The name of an image file (relative to this directory) to place at the top of
  169. # the title page.
  170. #latex_logo = None
  171. # For "manual" documents, if this is true, then toplevel headings are parts,
  172. # not chapters.
  173. #latex_use_parts = False
  174. # If true, show page references after internal links.
  175. #latex_show_pagerefs = False
  176. # If true, show URL addresses after external links.
  177. #latex_show_urls = False
  178. # Documents to append as an appendix to all manuals.
  179. #latex_appendices = []
  180. # If false, no module index is generated.
  181. #latex_domain_indices = True
  182. # -- Options for manual page output --------------------------------------------
  183. # One entry per manual page. List of tuples
  184. # (source start file, name, description, authors, manual section).
  185. man_pages = [
  186. ('contents', 'django', 'Django Documentation', ['Django Software Foundation'], 1)
  187. ]
  188. # -- Options for Texinfo output ------------------------------------------------
  189. # List of tuples (startdocname, targetname, title, author, dir_entry,
  190. # description, category, toctree_only)
  191. texinfo_documents=[(
  192. master_doc, "django", "", "", "Django",
  193. "Documentation of the Django framework", "Web development", False
  194. )]
  195. # -- Options for Epub output ---------------------------------------------------
  196. # Bibliographic Dublin Core info.
  197. epub_title = 'Django'
  198. epub_author = 'Django Software Foundation'
  199. epub_publisher = 'Django Software Foundation'
  200. epub_copyright = '2010, Django Software Foundation'
  201. # The language of the text. It defaults to the language option
  202. # or en if the language is not set.
  203. #epub_language = ''
  204. # The scheme of the identifier. Typical schemes are ISBN or URL.
  205. #epub_scheme = ''
  206. # The unique identifier of the text. This can be a ISBN number
  207. # or the project homepage.
  208. #epub_identifier = ''
  209. # A unique identification for the text.
  210. #epub_uid = ''
  211. # HTML files that should be inserted before the pages created by sphinx.
  212. # The format is a list of tuples containing the path and title.
  213. #epub_pre_files = []
  214. # HTML files shat should be inserted after the pages created by sphinx.
  215. # The format is a list of tuples containing the path and title.
  216. #epub_post_files = []
  217. # A list of files that should not be packed into the epub file.
  218. #epub_exclude_files = []
  219. # The depth of the table of contents in toc.ncx.
  220. #epub_tocdepth = 3
  221. # Allow duplicate toc entries.
  222. #epub_tocdup = True