| OLD | NEW |
| (Empty) |
| 1 # -*- coding: utf-8 -*- | |
| 2 # | |
| 3 # Requests documentation build configuration file, created by | |
| 4 # sphinx-quickstart on Fri Feb 19 00:05:47 2016. | |
| 5 # | |
| 6 # This file is execfile()d with the current directory set to its | |
| 7 # containing dir. | |
| 8 # | |
| 9 # Note that not all possible configuration values are present in this | |
| 10 # autogenerated file. | |
| 11 # | |
| 12 # All configuration values have a default; values that are commented out | |
| 13 # serve to show the default. | |
| 14 | |
| 15 import sys | |
| 16 import os | |
| 17 | |
| 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.insert(0, os.path.abspath('.')) | |
| 22 | |
| 23 # Insert Requests' path into the system. | |
| 24 sys.path.insert(0, os.path.abspath('..')) | |
| 25 sys.path.insert(0, os.path.abspath('_themes')) | |
| 26 | |
| 27 import requests | |
| 28 from requests import __version__ | |
| 29 | |
| 30 | |
| 31 # -- General configuration ------------------------------------------------ | |
| 32 | |
| 33 # If your documentation needs a minimal Sphinx version, state it here. | |
| 34 #needs_sphinx = '1.0' | |
| 35 | |
| 36 # Add any Sphinx extension module names here, as strings. They can be | |
| 37 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | |
| 38 # ones. | |
| 39 extensions = [ | |
| 40 'sphinx.ext.autodoc', | |
| 41 'sphinx.ext.intersphinx', | |
| 42 'sphinx.ext.todo', | |
| 43 'sphinx.ext.viewcode', | |
| 44 ] | |
| 45 | |
| 46 # Add any paths that contain templates here, relative to this directory. | |
| 47 templates_path = ['_templates'] | |
| 48 | |
| 49 # The suffix(es) of source filenames. | |
| 50 # You can specify multiple suffix as a list of string: | |
| 51 # source_suffix = ['.rst', '.md'] | |
| 52 source_suffix = '.rst' | |
| 53 | |
| 54 # The encoding of source files. | |
| 55 #source_encoding = 'utf-8-sig' | |
| 56 | |
| 57 # The master toctree document. | |
| 58 master_doc = 'index' | |
| 59 | |
| 60 # General information about the project. | |
| 61 project = u'Requests' | |
| 62 copyright = u'2016. A <a href="http://kennethreitz.com/pages/open-projects.html"
>Kenneth Reitz</a> Project' | |
| 63 author = u'Kenneth Reitz' | |
| 64 | |
| 65 # The version info for the project you're documenting, acts as replacement for | |
| 66 # |version| and |release|, also used in various other places throughout the | |
| 67 # built documents. | |
| 68 # | |
| 69 # The short X.Y version. | |
| 70 version = __version__ | |
| 71 # The full version, including alpha/beta/rc tags. | |
| 72 release = __version__ | |
| 73 | |
| 74 # The language for content autogenerated by Sphinx. Refer to documentation | |
| 75 # for a list of supported languages. | |
| 76 # | |
| 77 # This is also used if you do content translation via gettext catalogs. | |
| 78 # Usually you set "language" from the command line for these cases. | |
| 79 language = None | |
| 80 | |
| 81 # There are two options for replacing |today|: either, you set today to some | |
| 82 # non-false value, then it is used: | |
| 83 #today = '' | |
| 84 # Else, today_fmt is used as the format for a strftime call. | |
| 85 #today_fmt = '%B %d, %Y' | |
| 86 | |
| 87 # List of patterns, relative to source directory, that match files and | |
| 88 # directories to ignore when looking for source files. | |
| 89 exclude_patterns = ['_build'] | |
| 90 | |
| 91 # The reST default role (used for this markup: `text`) to use for all | |
| 92 # documents. | |
| 93 #default_role = None | |
| 94 | |
| 95 # If true, '()' will be appended to :func: etc. cross-reference text. | |
| 96 add_function_parentheses = False | |
| 97 | |
| 98 # If true, the current module name will be prepended to all description | |
| 99 # unit titles (such as .. function::). | |
| 100 add_module_names = True | |
| 101 | |
| 102 # If true, sectionauthor and moduleauthor directives will be shown in the | |
| 103 # output. They are ignored by default. | |
| 104 #show_authors = False | |
| 105 | |
| 106 # The name of the Pygments (syntax highlighting) style to use. | |
| 107 pygments_style = 'flask_theme_support.FlaskyStyle' | |
| 108 | |
| 109 # A list of ignored prefixes for module index sorting. | |
| 110 #modindex_common_prefix = [] | |
| 111 | |
| 112 # If true, keep warnings as "system message" paragraphs in the built documents. | |
| 113 #keep_warnings = False | |
| 114 | |
| 115 # If true, `todo` and `todoList` produce output, else they produce nothing. | |
| 116 todo_include_todos = True | |
| 117 | |
| 118 | |
| 119 # -- Options for HTML output ---------------------------------------------- | |
| 120 | |
| 121 # The theme to use for HTML and HTML Help pages. See the documentation for | |
| 122 # a list of builtin themes. | |
| 123 html_theme = 'alabaster' | |
| 124 | |
| 125 # Theme options are theme-specific and customize the look and feel of a theme | |
| 126 # further. For a list of options available for each theme, see the | |
| 127 # documentation. | |
| 128 html_theme_options = { | |
| 129 'show_powered_by': False, | |
| 130 'github_user': 'kennethreitz', | |
| 131 'github_repo': 'requests', | |
| 132 'github_banner': True, | |
| 133 'show_related': False | |
| 134 } | |
| 135 | |
| 136 # Add any paths that contain custom themes here, relative to this directory. | |
| 137 #html_theme_path = [] | |
| 138 | |
| 139 # The name for this set of Sphinx documents. If None, it defaults to | |
| 140 # "<project> v<release> documentation". | |
| 141 #html_title = None | |
| 142 | |
| 143 # A shorter title for the navigation bar. Default is the same as html_title. | |
| 144 #html_short_title = None | |
| 145 | |
| 146 # The name of an image file (relative to this directory) to place at the top | |
| 147 # of the sidebar. | |
| 148 #html_logo = None | |
| 149 | |
| 150 # The name of an image file (within the static path) to use as favicon of the | |
| 151 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 | |
| 152 # pixels large. | |
| 153 #html_favicon = None | |
| 154 | |
| 155 # Add any paths that contain custom static files (such as style sheets) here, | |
| 156 # relative to this directory. They are copied after the builtin static files, | |
| 157 # so a file named "default.css" will overwrite the builtin "default.css". | |
| 158 html_static_path = ['_static'] | |
| 159 | |
| 160 # Add any extra paths that contain custom files (such as robots.txt or | |
| 161 # .htaccess) here, relative to this directory. These files are copied | |
| 162 # directly to the root of the documentation. | |
| 163 #html_extra_path = [] | |
| 164 | |
| 165 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, | |
| 166 # using the given strftime format. | |
| 167 #html_last_updated_fmt = '%b %d, %Y' | |
| 168 | |
| 169 # If true, SmartyPants will be used to convert quotes and dashes to | |
| 170 # typographically correct entities. | |
| 171 html_use_smartypants = False | |
| 172 | |
| 173 # Custom sidebar templates, maps document names to template names. | |
| 174 html_sidebars = { | |
| 175 'index': ['sidebarintro.html', 'sourcelink.html', 'searchbox.html', | |
| 176 'hacks.html'], | |
| 177 '**': ['sidebarlogo.html', 'localtoc.html', 'relations.html', | |
| 178 'sourcelink.html', 'searchbox.html', 'hacks.html'] | |
| 179 } | |
| 180 | |
| 181 # Additional templates that should be rendered to pages, maps page names to | |
| 182 # template names. | |
| 183 #html_additional_pages = {} | |
| 184 | |
| 185 # If false, no module index is generated. | |
| 186 #html_domain_indices = True | |
| 187 | |
| 188 # If false, no index is generated. | |
| 189 #html_use_index = True | |
| 190 | |
| 191 # If true, the index is split into individual pages for each letter. | |
| 192 #html_split_index = False | |
| 193 | |
| 194 # If true, links to the reST sources are added to the pages. | |
| 195 html_show_sourcelink = False | |
| 196 | |
| 197 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. | |
| 198 html_show_sphinx = False | |
| 199 | |
| 200 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. | |
| 201 html_show_copyright = True | |
| 202 | |
| 203 # If true, an OpenSearch description file will be output, and all pages will | |
| 204 # contain a <link> tag referring to it. The value of this option must be the | |
| 205 # base URL from which the finished HTML is served. | |
| 206 #html_use_opensearch = '' | |
| 207 | |
| 208 # This is the file name suffix for HTML files (e.g. ".xhtml"). | |
| 209 #html_file_suffix = None | |
| 210 | |
| 211 # Language to be used for generating the HTML full-text search index. | |
| 212 # Sphinx supports the following languages: | |
| 213 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' | |
| 214 # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' | |
| 215 #html_search_language = 'en' | |
| 216 | |
| 217 # A dictionary with options for the search language support, empty by default. | |
| 218 # Now only 'ja' uses this config value | |
| 219 #html_search_options = {'type': 'default'} | |
| 220 | |
| 221 # The name of a javascript file (relative to the configuration directory) that | |
| 222 # implements a search results scorer. If empty, the default will be used. | |
| 223 #html_search_scorer = 'scorer.js' | |
| 224 | |
| 225 # Output file base name for HTML help builder. | |
| 226 htmlhelp_basename = 'Requestsdoc' | |
| 227 | |
| 228 # -- Options for LaTeX output --------------------------------------------- | |
| 229 | |
| 230 latex_elements = { | |
| 231 # The paper size ('letterpaper' or 'a4paper'). | |
| 232 #'papersize': 'letterpaper', | |
| 233 | |
| 234 # The font size ('10pt', '11pt' or '12pt'). | |
| 235 #'pointsize': '10pt', | |
| 236 | |
| 237 # Additional stuff for the LaTeX preamble. | |
| 238 #'preamble': '', | |
| 239 | |
| 240 # Latex figure (float) alignment | |
| 241 #'figure_align': 'htbp', | |
| 242 } | |
| 243 | |
| 244 # Grouping the document tree into LaTeX files. List of tuples | |
| 245 # (source start file, target name, title, | |
| 246 # author, documentclass [howto, manual, or own class]). | |
| 247 latex_documents = [ | |
| 248 (master_doc, 'Requests.tex', u'Requests Documentation', | |
| 249 u'Kenneth Reitz', 'manual'), | |
| 250 ] | |
| 251 | |
| 252 # The name of an image file (relative to this directory) to place at the top of | |
| 253 # the title page. | |
| 254 #latex_logo = None | |
| 255 | |
| 256 # For "manual" documents, if this is true, then toplevel headings are parts, | |
| 257 # not chapters. | |
| 258 #latex_use_parts = False | |
| 259 | |
| 260 # If true, show page references after internal links. | |
| 261 #latex_show_pagerefs = False | |
| 262 | |
| 263 # If true, show URL addresses after external links. | |
| 264 #latex_show_urls = False | |
| 265 | |
| 266 # Documents to append as an appendix to all manuals. | |
| 267 #latex_appendices = [] | |
| 268 | |
| 269 # If false, no module index is generated. | |
| 270 #latex_domain_indices = True | |
| 271 | |
| 272 | |
| 273 # -- Options for manual page output --------------------------------------- | |
| 274 | |
| 275 # One entry per manual page. List of tuples | |
| 276 # (source start file, name, description, authors, manual section). | |
| 277 man_pages = [ | |
| 278 (master_doc, 'requests', u'Requests Documentation', | |
| 279 [author], 1) | |
| 280 ] | |
| 281 | |
| 282 # If true, show URL addresses after external links. | |
| 283 #man_show_urls = False | |
| 284 | |
| 285 | |
| 286 # -- Options for Texinfo output ------------------------------------------- | |
| 287 | |
| 288 # Grouping the document tree into Texinfo files. List of tuples | |
| 289 # (source start file, target name, title, author, | |
| 290 # dir menu entry, description, category) | |
| 291 texinfo_documents = [ | |
| 292 (master_doc, 'Requests', u'Requests Documentation', | |
| 293 author, 'Requests', 'One line description of project.', | |
| 294 'Miscellaneous'), | |
| 295 ] | |
| 296 | |
| 297 # Documents to append as an appendix to all manuals. | |
| 298 #texinfo_appendices = [] | |
| 299 | |
| 300 # If false, no module index is generated. | |
| 301 #texinfo_domain_indices = True | |
| 302 | |
| 303 # How to display URL addresses: 'footnote', 'no', or 'inline'. | |
| 304 #texinfo_show_urls = 'footnote' | |
| 305 | |
| 306 # If true, do not generate a @detailmenu in the "Top" node's menu. | |
| 307 #texinfo_no_detailmenu = False | |
| 308 | |
| 309 | |
| 310 # -- Options for Epub output ---------------------------------------------- | |
| 311 | |
| 312 # Bibliographic Dublin Core info. | |
| 313 epub_title = project | |
| 314 epub_author = author | |
| 315 epub_publisher = author | |
| 316 epub_copyright = copyright | |
| 317 | |
| 318 # The basename for the epub file. It defaults to the project name. | |
| 319 #epub_basename = project | |
| 320 | |
| 321 # The HTML theme for the epub output. Since the default themes are not | |
| 322 # optimized for small screen space, using the same theme for HTML and epub | |
| 323 # output is usually not wise. This defaults to 'epub', a theme designed to save | |
| 324 # visual space. | |
| 325 #epub_theme = 'epub' | |
| 326 | |
| 327 # The language of the text. It defaults to the language option | |
| 328 # or 'en' if the language is not set. | |
| 329 #epub_language = '' | |
| 330 | |
| 331 # The scheme of the identifier. Typical schemes are ISBN or URL. | |
| 332 #epub_scheme = '' | |
| 333 | |
| 334 # The unique identifier of the text. This can be a ISBN number | |
| 335 # or the project homepage. | |
| 336 #epub_identifier = '' | |
| 337 | |
| 338 # A unique identification for the text. | |
| 339 #epub_uid = '' | |
| 340 | |
| 341 # A tuple containing the cover image and cover page html template filenames. | |
| 342 #epub_cover = () | |
| 343 | |
| 344 # A sequence of (type, uri, title) tuples for the guide element of content.opf. | |
| 345 #epub_guide = () | |
| 346 | |
| 347 # HTML files that should be inserted before the pages created by sphinx. | |
| 348 # The format is a list of tuples containing the path and title. | |
| 349 #epub_pre_files = [] | |
| 350 | |
| 351 # HTML files that should be inserted after the pages created by sphinx. | |
| 352 # The format is a list of tuples containing the path and title. | |
| 353 #epub_post_files = [] | |
| 354 | |
| 355 # A list of files that should not be packed into the epub file. | |
| 356 epub_exclude_files = ['search.html'] | |
| 357 | |
| 358 # The depth of the table of contents in toc.ncx. | |
| 359 #epub_tocdepth = 3 | |
| 360 | |
| 361 # Allow duplicate toc entries. | |
| 362 #epub_tocdup = True | |
| 363 | |
| 364 # Choose between 'default' and 'includehidden'. | |
| 365 #epub_tocscope = 'default' | |
| 366 | |
| 367 # Fix unsupported image types using the Pillow. | |
| 368 #epub_fix_images = False | |
| 369 | |
| 370 # Scale large images. | |
| 371 #epub_max_image_width = 0 | |
| 372 | |
| 373 # How to display URL addresses: 'footnote', 'no', or 'inline'. | |
| 374 #epub_show_urls = 'inline' | |
| 375 | |
| 376 # If false, no index is generated. | |
| 377 #epub_use_index = True | |
| 378 | |
| 379 intersphinx_mapping = {'urllib3': ('http://urllib3.readthedocs.io/en/latest', No
ne)} | |
| OLD | NEW |