~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/python/virtualenv/docs/conf.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#
 
3
# Paste documentation build configuration file, created by
 
4
# sphinx-quickstart on Tue Apr 22 22:08:49 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 value; values that are commented out
 
12
# serve to show the default value.
 
13
 
 
14
import sys
 
15
 
 
16
# If your extensions are in another directory, add it here.
 
17
#sys.path.append('some/directory')
 
18
 
 
19
# General configuration
 
20
# ---------------------
 
21
 
 
22
# Add any Sphinx extension module names here, as strings. They can be extensions
 
23
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 
24
extensions = ['sphinx.ext.autodoc']
 
25
 
 
26
# Add any paths that contain templates here, relative to this directory.
 
27
## FIXME: disabled for now because I haven't figured out how to use this:
 
28
#templates_path = ['_templates']
 
29
 
 
30
# The suffix of source filenames.
 
31
source_suffix = '.txt'
 
32
 
 
33
# The master toctree document.
 
34
master_doc = 'index'
 
35
 
 
36
# General substitutions.
 
37
project = 'virtualenv'
 
38
copyright = '2007-2012, Ian Bicking, The Open Planning Project, The virtualenv developers'
 
39
 
 
40
# The default replacements for |version| and |release|, also used in various
 
41
# other places throughout the built documents.
 
42
try:
 
43
    from virtualenv import __version__
 
44
    # The short X.Y version.
 
45
    version = '.'.join(__version__.split('.')[:2])
 
46
    # The full version, including alpha/beta/rc tags.
 
47
    release = __version__
 
48
except ImportError:
 
49
    version = release = 'dev'
 
50
 
 
51
# There are two options for replacing |today|: either, you set today to some
 
52
# non-false value, then it is used:
 
53
#today = ''
 
54
# Else, today_fmt is used as the format for a strftime call.
 
55
today_fmt = '%B %d, %Y'
 
56
 
 
57
# List of documents that shouldn't be included in the build.
 
58
unused_docs = []
 
59
 
 
60
# If true, '()' will be appended to :func: etc. cross-reference text.
 
61
#add_function_parentheses = True
 
62
 
 
63
# If true, the current module name will be prepended to all description
 
64
# unit titles (such as .. function::).
 
65
#add_module_names = True
 
66
 
 
67
# If true, sectionauthor and moduleauthor directives will be shown in the
 
68
# output. They are ignored by default.
 
69
#show_authors = False
 
70
 
 
71
# The name of the Pygments (syntax highlighting) style to use.
 
72
pygments_style = 'sphinx'
 
73
 
 
74
 
 
75
# Options for HTML output
 
76
# -----------------------
 
77
 
 
78
# The style sheet to use for HTML and HTML Help pages. A file of that name
 
79
# must exist either in Sphinx' static/ path, or in one of the custom paths
 
80
# given in html_static_path.
 
81
#html_style = 'default.css'
 
82
 
 
83
html_theme = 'nature'
 
84
html_theme_path = ['_theme']
 
85
 
 
86
# Add any paths that contain custom static files (such as style sheets) here,
 
87
# relative to this directory. They are copied after the builtin static files,
 
88
# so a file named "default.css" will overwrite the builtin "default.css".
 
89
# html_static_path = ['_static']
 
90
 
 
91
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
 
92
# using the given strftime format.
 
93
html_last_updated_fmt = '%b %d, %Y'
 
94
 
 
95
# If true, SmartyPants will be used to convert quotes and dashes to
 
96
# typographically correct entities.
 
97
#html_use_smartypants = True
 
98
 
 
99
# Content template for the index page.
 
100
#html_index = ''
 
101
 
 
102
# Custom sidebar templates, maps document names to template names.
 
103
#html_sidebars = {}
 
104
 
 
105
# Additional templates that should be rendered to pages, maps page names to
 
106
# template names.
 
107
#html_additional_pages = {}
 
108
 
 
109
# If false, no module index is generated.
 
110
#html_use_modindex = True
 
111
 
 
112
# If true, the reST sources are included in the HTML build as _sources/<name>.
 
113
#html_copy_source = True
 
114
 
 
115
# Output file base name for HTML help builder.
 
116
htmlhelp_basename = 'Pastedoc'
 
117
 
 
118
 
 
119
# Options for LaTeX output
 
120
# ------------------------
 
121
 
 
122
# The paper size ('letter' or 'a4').
 
123
#latex_paper_size = 'letter'
 
124
 
 
125
# The font size ('10pt', '11pt' or '12pt').
 
126
#latex_font_size = '10pt'
 
127
 
 
128
# Grouping the document tree into LaTeX files. List of tuples
 
129
# (source start file, target name, title, author, document class [howto/manual]).
 
130
#latex_documents = []
 
131
 
 
132
# Additional stuff for the LaTeX preamble.
 
133
#latex_preamble = ''
 
134
 
 
135
# Documents to append as an appendix to all manuals.
 
136
#latex_appendices = []
 
137
 
 
138
# If false, no module index is generated.
 
139
#latex_use_modindex = True