X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sphinx%2Fconf.py;h=3ae121a311238440092ab98d156691725aac4131;hb=91532033be9b72421de04aa02ba8e0183eeace97;hp=698c32dcdf683a19618551baa0ebcf011cd9b469;hpb=1395af12d6eb09d6ce9aa4eec3f88cbb51561b43;p=neurodebian.git diff --git a/sphinx/conf.py b/sphinx/conf.py index 698c32d..3ae121a 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -41,7 +41,14 @@ def artworkdir(): # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = [] +#extensions = [] +sys.path.append(os.path.abspath('.')) +extensions = ['sphinxext.quote', + 'sphinxext.feed', + 'sphinx.ext.todo'] + +# show todo items +todo_include_todos = True # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -57,7 +64,7 @@ master_doc = 'index' # General information about the project. project = u'Debian Neuroscience Package Repository' -copyright = u'2009-2010, NeuroDebian Team' +copyright = u'2009-2012, NeuroDebian Team ' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -70,7 +77,7 @@ release = '' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +language = 'en' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -111,6 +118,15 @@ pygments_style = 'sphinx' # given in html_static_path. html_style = 'neurodebian.css' +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'default' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +html_theme_options = {'nosidebar': True} + # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". html_title = project @@ -203,3 +219,16 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + +# RSS feed +# -------- +feed_base_url = 'http://neuro.debian.net' +feed_title = "NeuroDebian Insider" +feed_subtitle = "This solves all your problems" +feed_description = "A blog about using the ultimate operating system in neuroscience research" +feed_variants = {'planetdebian': {'filename': 'feeds/for-debian-planet.xml', + 'tag': 'debian'}, + 'all': {'filename': 'feeds/blog.xml', 'tag': None}} +feed_categories = ['debian', 'neuroscience'] +feed_author_name = 'NeuroDebian team' +feed_author_email = 'team@neuro.debian.net'