Revision 693bebea

b/docs/conf.py
1 1
import sys, os
2 2

  
3
sys.path.append("../snf-cyclades-app")
3
sys.path.insert(0, os.path.abspath('../snf-cyclades-app'))
4
from synnefo.versions.app import __version__
4 5

  
5 6
project = u'synnefo'
6 7
copyright = u'2012, GRNET'
7
version = '0.12'
8
release = '0.12'
8
version = __version__
9
release = __version__
9 10
html_title = 'synnefo ' + version
10 11

  
11 12
templates_path = ['_templates']
b/snf-common/docs/conf.py
1 1
import sys, os
2 2

  
3
sys.path.insert(0, os.path.abspath('../'))
4
from synnefo.versions.common import __version__
3 5

  
4 6
project = u'snf-common'
5
copyright = u'2012, GRNET'
6
version = '0.8'
7
release = '0.8'
7
copyright = u'2012-2013, GRNET'
8
version = __version__
9
release = __version__
8 10
html_title = 'synnefo ' + version
9 11

  
10 12
templates_path = ['_templates']
......
12 14
master_doc = 'index'
13 15
exclude_patterns = ['_build']
14 16
pygments_style = 'sphinx'
15
html_theme = 'nature'
17
html_theme = 'default'
18
html_theme_options = {
19
        'collapsiblesidebar': 'true',
20
        'footerbgcolor':    '#55b577',
21
        'footertextcolor':  '#000000',
22
        'sidebarbgcolor':   '#ffffff',
23
        'sidebarbtncolor':  '#f2f2f2',
24
        'sidebartextcolor': '#000000',
25
        'sidebarlinkcolor': '#328e4a',
26
        'relbarbgcolor':    '#55b577',
27
        'relbartextcolor':  '#ffffff',
28
        'relbarlinkcolor':  '#ffffff',
29
        'bgcolor':          '#ffffff',
30
        'textcolor':        '#000000',
31
        'headbgcolor':      '#ffffff',
32
        'headtextcolor':    '#000000',
33
        'headlinkcolor':    '#c60f0f',
34
        'linkcolor':        '#328e4a',
35
        'visitedlinkcolor': '#63409b',
36
        'codebgcolor':      '#eeffcc',
37
        'codetextcolor':    '#333333'
38
}
39

  
16 40
html_static_path = ['_static']
17 41
htmlhelp_basename = 'synnefodoc'
18 42

  
b/snf-cyclades-app/docs/conf.py
1 1
import sys, os
2 2

  
3 3
sys.path.insert(0, os.path.abspath('../'))
4
from synnefo import settings
5
from django.core.management import setup_environ
6
setup_environ(settings)
7

  
4
from synnefo.versions.apps import __version__
8 5

  
9 6
project = u'snf-cyclades-app'
10
copyright = u'2012, GRNET'
11
version = '0.8'
12
release = '0.8'
7
copyright = u'2012-2013, GRNET'
8
version = __version__
9
release = __version__
13 10
html_title = 'synnefo ' + version
14 11

  
15 12
templates_path = ['_templates']
......
17 14
master_doc = 'index'
18 15
exclude_patterns = ['_build']
19 16
pygments_style = 'sphinx'
20
html_theme = 'nature'
17
html_theme = 'default'
18
html_theme_options = {
19
        'collapsiblesidebar': 'true',
20
        'footerbgcolor':    '#55b577',
21
        'footertextcolor':  '#000000',
22
        'sidebarbgcolor':   '#ffffff',
23
        'sidebarbtncolor':  '#f2f2f2',
24
        'sidebartextcolor': '#000000',
25
        'sidebarlinkcolor': '#328e4a',
26
        'relbarbgcolor':    '#55b577',
27
        'relbartextcolor':  '#ffffff',
28
        'relbarlinkcolor':  '#ffffff',
29
        'bgcolor':          '#ffffff',
30
        'textcolor':        '#000000',
31
        'headbgcolor':      '#ffffff',
32
        'headtextcolor':    '#000000',
33
        'headlinkcolor':    '#c60f0f',
34
        'linkcolor':        '#328e4a',
35
        'visitedlinkcolor': '#63409b',
36
        'codebgcolor':      '#eeffcc',
37
        'codetextcolor':    '#333333'
38
}
39

  
21 40
html_static_path = ['_static']
22 41
htmlhelp_basename = 'synnefodoc'
23 42

  
b/snf-cyclades-gtools/docs/conf.py
1 1
import sys, os
2 2

  
3
sys.path.insert(0, os.path.abspath('../'))
4
from synnefo.versions.ganeti import __version__
3 5

  
4 6
project = u'snf-cyclades-gtools'
5
copyright = u'2012, GRNET'
6
version = '0.8'
7
release = '0.8'
7
copyright = u'2012-2013, GRNET'
8
version = __version__
9
release = __version__
8 10
html_title = 'synnefo ' + version
9 11

  
10 12
templates_path = ['_templates']
......
12 14
master_doc = 'index'
13 15
exclude_patterns = ['_build']
14 16
pygments_style = 'sphinx'
15
html_theme = 'nature'
17
html_theme = 'default'
18
html_theme_options = {
19
        'collapsiblesidebar': 'true',
20
        'footerbgcolor':    '#55b577',
21
        'footertextcolor':  '#000000',
22
        'sidebarbgcolor':   '#ffffff',
23
        'sidebarbtncolor':  '#f2f2f2',
24
        'sidebartextcolor': '#000000',
25
        'sidebarlinkcolor': '#328e4a',
26
        'relbarbgcolor':    '#55b577',
27
        'relbartextcolor':  '#ffffff',
28
        'relbarlinkcolor':  '#ffffff',
29
        'bgcolor':          '#ffffff',
30
        'textcolor':        '#000000',
31
        'headbgcolor':      '#ffffff',
32
        'headtextcolor':    '#000000',
33
        'headlinkcolor':    '#c60f0f',
34
        'linkcolor':        '#328e4a',
35
        'visitedlinkcolor': '#63409b',
36
        'codebgcolor':      '#eeffcc',
37
        'codetextcolor':    '#333333'
38
}
39

  
16 40
html_static_path = ['_static']
17 41
htmlhelp_basename = 'synnefodoc'
18 42

  
b/snf-tools/docs/conf.py
1 1
import sys, os
2 2

  
3
sys.path.insert(0, os.path.abspath('../'))
4
from synnefo_tools.version import __version__
5

  
3 6
extensions = []
4 7

  
5 8
# Add any paths that contain templates here, relative to this directory.
......
16 19

  
17 20
# General information about the project.
18 21
project = u'snf-occi'
19
copyright = u'2012, GRNET'
22
copyright = u'2012-2013, GRNET'
20 23

  
21 24
# The version info for the project you're documenting, acts as replacement for
22 25
# |version| and |release|, also used in various other places throughout the
23 26
# built documents.
24 27
#
25 28
# The short X.Y version.
26
version = '0.1'
29
version = __version__
27 30
# The full version, including alpha/beta/rc tags.
28
release = '0.1'
31
release = __version__
29 32

  
30 33
# The language for content autogenerated by Sphinx. Refer to documentation
31 34
# for a list of supported languages.
......
66 69

  
67 70
# The theme to use for HTML and HTML Help pages.  See the documentation for
68 71
# a list of builtin themes.
69
html_theme = 'nature'
72
html_theme = 'default'
73
html_theme_options = {
74
        'collapsiblesidebar': 'true',
75
        'footerbgcolor':    '#55b577',
76
        'footertextcolor':  '#000000',
77
        'sidebarbgcolor':   '#ffffff',
78
        'sidebarbtncolor':  '#f2f2f2',
79
        'sidebartextcolor': '#000000',
80
        'sidebarlinkcolor': '#328e4a',
81
        'relbarbgcolor':    '#55b577',
82
        'relbartextcolor':  '#ffffff',
83
        'relbarlinkcolor':  '#ffffff',
84
        'bgcolor':          '#ffffff',
85
        'textcolor':        '#000000',
86
        'headbgcolor':      '#ffffff',
87
        'headtextcolor':    '#000000',
88
        'headlinkcolor':    '#c60f0f',
89
        'linkcolor':        '#328e4a',
90
        'visitedlinkcolor': '#63409b',
91
        'codebgcolor':      '#eeffcc',
92
        'codetextcolor':    '#333333'
93
}
70 94

  
71 95
# Theme options are theme-specific and customize the look and feel of a theme
72 96
# further.  For a list of options available for each theme, see the
b/snf-webproject/docs/conf.py
1 1
import sys, os
2 2

  
3
sys.path.insert(0, os.path.abspath('../'))
4
from synnefo.versions.webproject import __version__
3 5

  
4 6
project = u'snf-webproject'
5
copyright = u'2012, GRNET'
6
version = '0.8'
7
release = '0.8'
7
copyright = u'2012-2013, GRNET'
8
version = __version__
9
release = __version__
8 10
html_title = 'synnefo ' + version
9 11

  
10 12
templates_path = ['_templates']
......
12 14
master_doc = 'index'
13 15
exclude_patterns = ['_build']
14 16
pygments_style = 'sphinx'
15
html_theme = 'nature'
17
html_theme = 'default'
18
html_theme_options = {
19
        'collapsiblesidebar': 'true',
20
        'footerbgcolor':    '#55b577',
21
        'footertextcolor':  '#000000',
22
        'sidebarbgcolor':   '#ffffff',
23
        'sidebarbtncolor':  '#f2f2f2',
24
        'sidebartextcolor': '#000000',
25
        'sidebarlinkcolor': '#328e4a',
26
        'relbarbgcolor':    '#55b577',
27
        'relbartextcolor':  '#ffffff',
28
        'relbarlinkcolor':  '#ffffff',
29
        'bgcolor':          '#ffffff',
30
        'textcolor':        '#000000',
31
        'headbgcolor':      '#ffffff',
32
        'headtextcolor':    '#000000',
33
        'headlinkcolor':    '#c60f0f',
34
        'linkcolor':        '#328e4a',
35
        'visitedlinkcolor': '#63409b',
36
        'codebgcolor':      '#eeffcc',
37
        'codetextcolor':    '#333333'
38
}
39

  
16 40
html_static_path = ['_static']
17 41
htmlhelp_basename = 'synnefodoc'
18 42

  

Also available in: Unified diff