~ubuntu-branches/ubuntu/raring/maas/raring-updates

« back to all changes in this revision

Viewing changes to docs/conf.py

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-07-03 17:42:37 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120703174237-p8l0keuuznfg721k
Tags: 0.1+bzr709+dfsg-0ubuntu1
* New Upstream release
* debian/control:
  - Depends on python-celery, python-tempita, libjs-yui3-{full,min},
    libjs-raphael
* debian/maas.install:
  - Install apiclient, celeryconfig.py, maas-import-pxe-files, preseeds_v2.
  - Update to install various files from chroot, rather tha manually copy
    them from the source.
* debian/maas.links: symlink celeryconfig.py
* debian/maas.maas-celery.upstart: Add job.
* debian/rules:
  - Install celery upstart job.
  - Do not install jslibs as packages are now used.
  - Drop copying of maas_local_settings_sample.py as source now ships
    a maas_local_settings.py
* debian/patches:
  - 04-maas-http-fix.patch: Drop. Merged upstream.
  - 01-fix-database-settings.patch: Refreshed.
  - 99_enums_js.patch: Added until creation of enum.js / build process
    is fixed.
* debian/maas.postinst: Update bzr version to correctly handle upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# All configuration values have a default; values that are commented out
12
12
# serve to show the default.
13
13
 
14
 
import sys, os
15
 
 
16
14
# Import maas' settings.
17
15
from maas import settings
18
16
from django.core.management import setup_environ
30
28
 
31
29
# Add any Sphinx extension module names here, as strings. They can be extensions
32
30
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
33
 
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.pngmath', 'sphinx.ext.viewcode']
 
31
extensions = [
 
32
    'sphinx.ext.autodoc',
 
33
    'sphinx.ext.autosummary',
 
34
    'sphinx.ext.doctest',
 
35
    'sphinx.ext.intersphinx',
 
36
    'sphinx.ext.pngmath',
 
37
    'sphinx.ext.viewcode',
 
38
    ]
34
39
 
35
40
# Add any paths that contain templates here, relative to this directory.
36
41
templates_path = ['_templates']
69
74
 
70
75
# List of patterns, relative to source directory, that match files and
71
76
# directories to ignore when looking for source files.
72
 
exclude_patterns = ['_build']
 
77
exclude_patterns = ['_build', '_templates']
73
78
 
74
79
# The reST default role (used for this markup: `text`) to use for all documents.
75
80
#default_role = None
91
96
# A list of ignored prefixes for module index sorting.
92
97
#modindex_common_prefix = []
93
98
 
 
99
# AutoDoc <http://sphinx.pocoo.org/ext/autodoc.html>
 
100
autodoc_default_flags = ['members', 'show-inheritance']
94
101
autodoc_member_order = 'bysource'
95
102
 
 
103
# AutoSummary <http://sphinx.pocoo.org/ext/autosummary.html>
 
104
autosummary_generate = True
 
105
 
96
106
# -- Options for HTML output ---------------------------------------------------
97
107
 
98
108
# The theme to use for HTML and HTML Help pages.  See the documentation for