Changeset 668 for branches/PublicaMundi_David-devel/docs/conf.py
- Timestamp:
- Jun 16, 2015, 4:33:55 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PublicaMundi_David-devel/docs/conf.py
r659 r668 1 1 # -*- coding: utf-8 -*- 2 2 # 3 # Sphinxdocumentation build configuration file3 # ZOO Project documentation build configuration file 4 4 5 5 import re 6 6 import sphinx 7 7 8 9 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 10 'sphinx.ext.autosummary', 'sphinx.ext.extlinks', 11 'sphinx.ext.viewcode'] 12 8 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo','sphinx.ext.autosummary', 'sphinx.ext.extlinks','sphinx.ext.viewcode'] 13 9 master_doc = 'contents' 14 10 templates_path = ['_templates'] 15 11 exclude_patterns = ['_build'] 16 12 13 # General information 14 17 15 project = 'ZOO-Project' 18 16 copyright = '2009-2015, ZOO-Project team' 19 version = sphinx.__released__20 release = version17 version = '1.0' 18 release = '1.5' 21 19 show_authors = True 20 21 # Options for HTML output 22 22 23 23 html_theme = 'sphinx_rtd_theme' … … 28 28 html_additional_pages = {'index': 'index.html'} 29 29 html_use_opensearch = 'http://sphinx-doc.org' 30 31 30 htmlhelp_basename = 'Sphinxdoc' 32 31 32 # Options for epub output 33 33 34 epub_theme = 'epub' 34 epub_basename = ' sphinx'35 epub_author = ' Georg Brandl'36 epub_publisher = 'http:// sphinx-doc.org/'35 epub_basename = 'ZOO-Project' 36 epub_author = 'ZOO-Project team' 37 epub_publisher = 'http://zoo-project.org/' 37 38 epub_scheme = 'url' 38 epub_identifier = epub_publisher 39 epub_pre_files = [('index.html', 'Welcome')] 40 epub_post_files = [('install.html', 'Installing Sphinx'), 41 ('develop.html', 'Sphinx development')] 42 epub_exclude_files = ['_static/opensearch.xml', '_static/doctools.js', 43 '_static/jquery.js', '_static/searchtools.js', 44 '_static/underscore.js', '_static/basic.css', 45 'search.html', '_static/websupport.js'] 39 epub_identifier = 'http://zoo-project.org' 40 epub_pre_files = [('index.html', 'ZOO-Project documentation')] 41 epub_post_files = [('install.html', 'Installing Sphinx'),('develop.html', 'Sphinx development')] 42 epub_exclude_files = ['_static/opensearch.xml', '_static/doctools.js','_static/jquery.js', '_static/searchtools.js','_static/underscore.js', '_static/basic.css','search.html', '_static/websupport.js'] 46 43 epub_fix_images = False 47 44 epub_max_image_width = 0 … … 50 47 epub_guide = (('toc', 'contents.html', u'Table of Contents'),) 51 48 52 latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation', 53 'Georg Brandl', 'manual', 1)] 54 latex_logo = '_static/sphinx.png' 55 latex_elements = { 56 'fontpkg': '\\usepackage{palatino}', 57 } 49 # Options for LaTeX output 50 51 latex_documents = [('contents', 'ZOO-Project.tex', 'ZOO-Project Documentation','ZOO-Project team', 'manual', 1)] 52 latex_logo = '_static/zoo_simple.png' 53 latex_elements = {'fontpkg': '\\usepackage{palatino}'} 58 54 latex_show_urls = 'footnote' 59 60 autodoc_member_order = 'groupwise'61 55 todo_include_todos = True 62 extlinks = {'duref': ('http://docutils.sourceforge.net/docs/ref/rst/' 63 'restructuredtext.html#%s', ''), 64 'durole': ('http://docutils.sourceforge.net/docs/ref/rst/' 65 'roles.html#%s', ''), 66 'dudir': ('http://docutils.sourceforge.net/docs/ref/rst/' 67 'directives.html#%s', '')} 68 69 man_pages = [ 70 ('contents', 'sphinx-all', 'Sphinx documentation generator system manual', 71 'Georg Brandl', 1), 72 ('man/sphinx-build', 'sphinx-build', 'Sphinx documentation generator tool', 73 '', 1), 74 ('man/sphinx-quickstart', 'sphinx-quickstart', 'Sphinx documentation ' 75 'template generator', '', 1), 76 ('man/sphinx-apidoc', 'sphinx-apidoc', 'Sphinx API doc generator tool', 77 '', 1), 78 ] 79 80 texinfo_documents = [ 81 ('contents', 'sphinx', 'Sphinx Documentation', 'Georg Brandl', 82 'Sphinx', 'The Sphinx documentation builder.', 'Documentation tools', 83 1), 84 ] 85 86 # We're not using intersphinx right now, but if we did, this would be part of 87 # the mapping: 88 intersphinx_mapping = {'python': ('https://docs.python.org/2/', None)} 89 90 # Sphinx document translation with sphinx gettext feature uses these settings: 91 locale_dirs = ['locale/'] 92 gettext_compact = False 93 56 man_pages = [('index', 'zooproject', 'ZOO-Project Documentation','ZOO-Project team', 1)] 94 57 95 58 # -- Extension interface -------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.