aboutsummaryrefslogtreecommitdiffstats
path: root/doc/conf.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-06-21 13:22:52 +0000
committerlloyd <[email protected]>2012-06-21 13:22:52 +0000
commitfd289ebe6dd7e4bafd6e5ca1c76d7075960847cc (patch)
treee1b44e792e5fc301fac0e7fe87255694a005b77e /doc/conf.py
parenteb2c1244fee8f84fc9ad7cf567bdefc202685225 (diff)
Include FAQ and dl links in contents. Rearrange download links
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py66
1 files changed, 13 insertions, 53 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 167687708..697fa01b7 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -1,21 +1,15 @@
-# -*- coding: utf-8 -*-
-#
-# botan documentation build configuration file, created by
-# sphinx-quickstart on Sun Apr 3 11:41:06 2011.
-#
-# This file is execfile()d with the current directory set to its containing dir.
-#
-# Note that not all possible configuration values are present in this
-# autogenerated file.
-#
-# All configuration values have a default; values that are commented out
-# serve to show the default.
+# Sphinx configuration file
import sys, os
+# Avoid useless botan_version.pyc (Python 2.6 or higher)
+if 'dont_write_bytecode' in sys.__dict__:
+ sys.dont_write_bytecode = True
+
sys.path.insert(0, os.pardir)
import sphinx
+import botan_version
def check_for_tag(tag):
# Nasty hack :(
@@ -29,20 +23,6 @@ def check_for_tag(tag):
is_website_build = check_for_tag('website')
use_disqus = is_website_build and check_for_tag('disqus')
-# Avoid useless botan_version.pyc (Python 2.6 or higher)
-if 'dont_write_bytecode' in sys.__dict__:
- sys.dont_write_bytecode = True
-
-import botan_version
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#sys.path.insert(0, os.path.abspath('.'))
-
-# -- General configuration -----------------------------------------------------
-
-# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = '1.0'
"""
@@ -58,16 +38,12 @@ def check_sphinx_version():
if version[0] == 1 and version[1] == 0 and version[2] < 7:
# Exit rather than throwing to avoid a confusing backtrace
print "This Sphinx is too old - upgrade to at least 1.0.7"
- import sys
sys.exit(1)
check_sphinx_version()
-# Add any Sphinx extension module names here, as strings. They can be extensions
-# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.extlinks']
-# Add any paths that contain templates here, relative to this directory.
templates_path = ['_sphinx/templates']
if is_website_build and use_disqus:
@@ -75,53 +51,38 @@ if is_website_build and use_disqus:
extlinks = {
'pr': ('http://bugs.randombit.net/show_bug.cgi?id=%s', 'PR '),
- 'tgz': ('http://botan.randombit.net/files/Botan-%s.tgz', 'tar/gz '),
+ 'tgz': ('http://botan.randombit.net/files/Botan-%s.tgz', 'tar/gz for '),
'tgz_sig': ('http://botan.randombit.net/files/Botan-%s.tgz.asc', 'tar/gz sig '),
- 'tbz': ('http://botan.randombit.net/files/Botan-%s.tbz', 'tar/bzip '),
+ 'tbz': ('http://botan.randombit.net/files/Botan-%s.tbz', 'tar/bzip for '),
'tbz_sig': ('http://botan.randombit.net/files/Botan-%s.tbz.asc', 'tar/bzip sig '),
+ 'viewmtn': ('http://viewmtn.randombit.net/tree/h:%s', ''),
+
'botan-devel': ('http://lists.randombit.net/pipermail/botan-devel/%s.html', None),
'installer_x86_32': ('http://botan.randombit.net/files/win32/botan-%s_win32.exe',
- 'Windows x86-32 installer '),
+ 'x86-32 '),
'installer_x86_64': ('http://botan.randombit.net/files/win32/botan-%s_win64.exe',
- 'Windows x86-64 installer ')
+ 'x86-64 ')
}
-
-# The suffix of source filenames.
source_suffix = '.txt'
-# The encoding of source files.
source_encoding = 'utf-8-sig'
-# The master toctree document.
master_doc = 'contents'
-# General information about the project.
project = u'botan'
copyright = u'2000-2012, Jack Lloyd'
-# The version info for the project you're documenting, acts as replacement for
-# |version| and |release|, also used in various other places throughout the
-# built documents.
-#
-# The short X.Y version.
version = '%d.%d' % (botan_version.release_major, botan_version.release_minor)
-# The full version, including alpha/beta/rc tags.
+
release = '%d.%d.%d' % (botan_version.release_major,
botan_version.release_minor,
botan_version.release_patch)
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#language = None
-
-# There are two options for replacing |today|: either, you set today to some
-# non-false value, then it is used:
#today = ''
-# Else, today_fmt is used as the format for a strftime call.
today_fmt = '%Y-%m-%d'
# List of patterns, relative to source directory, that match files and
@@ -239,7 +200,6 @@ else:
# Output file base name for HTML help builder.
htmlhelp_basename = 'botandoc'
-
# -- Options for LaTeX output --------------------------------------------------
# The paper size ('letter' or 'a4').