aboutsummaryrefslogtreecommitdiffstats
path: root/doc/conf.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-11 15:48:48 +0000
committerlloyd <[email protected]>2012-07-11 15:48:48 +0000
commitb69b268c9b3160f165400437fc6e12791ca7f2c6 (patch)
treebcecfef4adb075a6193b7ea67dbece8f7dd7eb28 /doc/conf.py
parent6760cb17f76fca4d0f521299d4241656a3469e56 (diff)
Use subsections in 1.11.0 release notes.
Remove installer link for 1.8. Update 1.10 installer to 1.10.3 and link to signatures as well. Add note in download links that 1.11 requires a C++11 compiler. Add build records for Windows 1.10.3 with VC 2010.
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/conf.py b/doc/conf.py
index c03e922d0..a5aa58568 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -49,24 +49,24 @@ templates_path = ['_sphinx/templates']
if is_website_build and use_disqus:
templates_path += ['_sphinx/disqus']
+files_dir = 'http://botan.randombit.net/files'
+
extlinks = {
'pr': ('http://bugs.randombit.net/show_bug.cgi?id=%s', 'PR '),
- '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 for '),
- 'tbz_sig': ('http://botan.randombit.net/files/Botan-%s.tbz.asc', 'tar/bzip sig '),
-
'wikipedia': ('http://en.wikipedia.org/wiki/%s', ''),
-
'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',
- 'x86-32 '),
+ 'tgz': (files_dir + '/Botan-%s.tgz', 'tar/gz for '),
+ 'tgz_sig': (files_dir + '/Botan-%s.tgz.asc', 'tar/gz sig '),
+ 'tbz': (files_dir + '/Botan-%s.tbz', 'tar/bzip for '),
+ 'tbz_sig': (files_dir + '/Botan-%s.tbz.asc', 'tar/bzip sig '),
+
+ 'installer_x86_32': (files_dir + '/win32/botan-%s_win32.exe', 'x86-32 '),
+ 'installer_x86_64': (files_dir + '/win32/botan-%s_win64.exe', 'x86-64 '),
- 'installer_x86_64': ('http://botan.randombit.net/files/win32/botan-%s_win64.exe',
- 'x86-64 ')
+ 'installer_sig_x86_32': (files_dir + '/win32/botan-%s_win32.exe.asc', None),
+ 'installer_sig_x86_64': (files_dir + '/win32/botan-%s_win64.exe.asc', None),
}
source_suffix = '.rst'