kameleon-builder 2.1.3 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. data/.editorconfig +0 -0
  2. data/.env +2 -6
  3. data/CHANGELOG.rst +74 -1
  4. data/Gemfile +20 -2
  5. data/README.rst +35 -25
  6. data/Thorfile +29 -0
  7. data/contrib/kameleon_bashrc.sh +61 -0
  8. data/contrib/polipo_env.sh +3 -2
  9. data/kameleon-builder.gemspec +3 -10
  10. data/lib/kameleon.rb +10 -14
  11. data/lib/kameleon/cli.rb +92 -105
  12. data/lib/kameleon/context.rb +76 -43
  13. data/lib/kameleon/engine.rb +147 -103
  14. data/lib/kameleon/environment.rb +10 -5
  15. data/lib/kameleon/error.rb +1 -32
  16. data/lib/kameleon/persistent_cache.rb +127 -29
  17. data/lib/kameleon/recipe.rb +63 -106
  18. data/lib/kameleon/shell.rb +32 -17
  19. data/lib/kameleon/step.rb +18 -1
  20. data/lib/kameleon/ui.rb +141 -0
  21. data/lib/kameleon/utils.rb +9 -0
  22. data/templates/{debian7-chroot.yaml → chroot/debian7-amd64.yaml} +29 -21
  23. data/templates/{docker-debian7.yaml → docker/debian7.yaml} +5 -5
  24. data/templates/extend.erb +2 -2
  25. data/templates/{debian7-g5k.yaml → grid5000/debian7.yaml} +1 -1
  26. data/templates/{archlinux-desktop.yaml → qemu/archlinux-desktop-i686.yaml} +2 -2
  27. data/templates/qemu/archlinux-desktop-x86_64.yaml +25 -0
  28. data/templates/qemu/archlinux-i686.yaml +25 -0
  29. data/templates/{archlinux.yaml → qemu/archlinux-x86_64.yaml} +37 -34
  30. data/templates/qemu/centos6.5-x86_64.yaml +113 -0
  31. data/templates/qemu/centos7-x86_64.yaml +119 -0
  32. data/templates/{debian7.yaml → qemu/debian7-amd64.yaml} +45 -40
  33. data/templates/{debian7-desktop.yaml → qemu/debian7-desktop-amd64.yaml} +2 -3
  34. data/templates/{debian7-kameleon.yaml → qemu/debian7-kameleon-amd64.yaml} +3 -6
  35. data/templates/{debian7-oar-dev.yaml → qemu/debian7-oar-amd64.yaml} +2 -2
  36. data/templates/qemu/debian8-amd64.yaml +25 -0
  37. data/templates/{fedora20-desktop.yaml → qemu/fedora20-desktop-x86_64.yaml} +2 -2
  38. data/templates/qemu/fedora20-x86_64.yaml +116 -0
  39. data/templates/{ubuntu-12.04.yaml → qemu/ubuntu-12.04-amd64.yaml} +42 -38
  40. data/templates/{ubuntu-12.04-desktop.yaml → qemu/ubuntu-12.04-desktop-amd64.yaml} +3 -3
  41. data/templates/{ubuntu-14.04.yaml → qemu/ubuntu-14.04-amd64.yaml} +2 -2
  42. data/templates/{ubuntu-14.04-desktop.yaml → qemu/ubuntu-14.04-desktop-amd64.yaml} +2 -2
  43. data/templates/steps/aliases/defaults.yaml +19 -13
  44. data/templates/steps/bootstrap/archlinux/arch_bootstrap.yaml +11 -19
  45. data/templates/steps/bootstrap/debian/debootstrap.yaml +10 -11
  46. data/templates/steps/bootstrap/debian/debootstrap_arm.yaml +11 -19
  47. data/templates/steps/bootstrap/fedora/init_pxeboot.yaml +13 -0
  48. data/templates/steps/bootstrap/fedora/yum_bootstrap.yaml +45 -0
  49. data/templates/steps/bootstrap/initialize_disk.yaml +16 -0
  50. data/templates/steps/bootstrap/initialize_disk_chroot.yaml +10 -14
  51. data/templates/steps/bootstrap/install_requirements.yaml +3 -0
  52. data/templates/steps/bootstrap/prepare_docker.yaml +7 -7
  53. data/templates/steps/bootstrap/prepare_qemu.yaml +20 -26
  54. data/templates/steps/bootstrap/prepare_virtualbox.yaml +63 -0
  55. data/templates/steps/bootstrap/start_chroot.yaml +2 -13
  56. data/templates/steps/bootstrap/start_qemu.yaml +50 -53
  57. data/templates/steps/bootstrap/start_virtualbox.yaml +37 -0
  58. data/templates/steps/bootstrap/switch_context_qemu.yaml +64 -0
  59. data/templates/steps/bootstrap/switch_context_virtualbox.yaml +66 -0
  60. data/templates/steps/breakpoint.yaml +2 -1
  61. data/templates/steps/checkpoints/docker.yaml +14 -11
  62. data/templates/steps/checkpoints/qcow2.yaml +26 -24
  63. data/templates/steps/checkpoints/qemu.yaml +30 -36
  64. data/templates/steps/checkpoints/virtualbox.yaml +21 -0
  65. data/templates/steps/disable_checkpoint.yaml +3 -0
  66. data/templates/steps/enable_checkpoint.yaml +5 -0
  67. data/templates/steps/export/qemu_save_appliance.yaml +52 -0
  68. data/templates/steps/export/virtualbox_save_appliance.yaml +67 -0
  69. data/templates/steps/setup/archlinux/install_bootloader.yaml +23 -0
  70. data/templates/steps/setup/centos/6.5/configure_network.yaml +31 -0
  71. data/templates/steps/setup/centos/6.5/configure_system.yaml +27 -0
  72. data/templates/steps/setup/debian/configure_apt.yaml +1 -6
  73. data/templates/steps/setup/debian/configure_kernel.yaml +0 -5
  74. data/templates/steps/setup/debian/install_bootloader.yaml +36 -0
  75. data/templates/steps/setup/debian/setup_vagrant_box.yaml +48 -18
  76. data/templates/steps/setup/debian/upgrade_system.yaml +2 -7
  77. data/templates/steps/setup/fedora/configure_kernel.yaml +9 -0
  78. data/templates/steps/setup/fedora/configure_keyboard.yaml +12 -0
  79. data/templates/steps/setup/fedora/configure_network.yaml +9 -1
  80. data/templates/steps/setup/fedora/configure_system.yaml +20 -45
  81. data/templates/steps/setup/fedora/install_bootloader.yaml +58 -0
  82. data/templates/steps/setup/fedora/minimal_install.yaml +3 -0
  83. data/templates/steps/setup/fedora/update_system.yaml +13 -5
  84. data/templates/steps/setup/ubuntu/configure_apt.yaml +4 -9
  85. data/templates/vagrant/debian7-amd64.yaml +130 -0
  86. data/templates/virtualbox/archlinux-desktop-i686.yaml +25 -0
  87. data/templates/virtualbox/archlinux-desktop-x86_64.yaml +28 -0
  88. data/templates/virtualbox/archlinux-i686.yaml +28 -0
  89. data/templates/virtualbox/archlinux-x86_64.yaml +109 -0
  90. data/templates/virtualbox/centos6.5-i386.yaml +39 -0
  91. data/templates/virtualbox/centos6.5-x86_64.yaml +111 -0
  92. data/templates/virtualbox/centos7-x86_64.yaml +116 -0
  93. data/{docs/source/debian7.yaml → templates/virtualbox/debian7-amd64.yaml} +53 -52
  94. data/templates/virtualbox/debian7-desktop-amd64.yaml +25 -0
  95. data/templates/{fedora-rawhide.yaml → virtualbox/debian7-i386.yaml} +12 -11
  96. data/templates/virtualbox/debian7-kameleon-amd64.yaml +38 -0
  97. data/templates/virtualbox/debian7-oar-amd64.yaml +51 -0
  98. data/templates/{debian-testing.yaml → virtualbox/debian8-amd64.yaml} +3 -3
  99. data/templates/virtualbox/debian8-i386.yaml +31 -0
  100. data/templates/virtualbox/fedora20-x86_64.yaml +116 -0
  101. data/templates/virtualbox/ubuntu-12.04-amd64.yaml +128 -0
  102. data/templates/virtualbox/ubuntu-12.04-desktop-amd64.yaml +25 -0
  103. data/templates/virtualbox/ubuntu-14.04-amd64.yaml +25 -0
  104. data/templates/virtualbox/ubuntu-14.04-desktop-amd64.yaml +27 -0
  105. data/version.txt +1 -1
  106. metadata +67 -212
  107. data/Rakefile +0 -24
  108. data/docs/.gitignore +0 -1
  109. data/docs/Makefile +0 -181
  110. data/docs/README.md +0 -17
  111. data/docs/make.bat +0 -242
  112. data/docs/source/_static/.gitignore +0 -0
  113. data/docs/source/_static/centos.png +0 -0
  114. data/docs/source/_static/debian.png +0 -0
  115. data/docs/source/_static/kameleon-logo.png +0 -0
  116. data/docs/source/_static/kameleon-logo.xcf +0 -0
  117. data/docs/source/_static/kameleon-long.png +0 -0
  118. data/docs/source/_static/ubuntu.png +0 -0
  119. data/docs/source/_themes/sphinx_rtd_theme/__init__.py +0 -17
  120. data/docs/source/_themes/sphinx_rtd_theme/breadcrumbs.html +0 -19
  121. data/docs/source/_themes/sphinx_rtd_theme/footer.html +0 -32
  122. data/docs/source/_themes/sphinx_rtd_theme/layout.html +0 -160
  123. data/docs/source/_themes/sphinx_rtd_theme/layout_old.html +0 -205
  124. data/docs/source/_themes/sphinx_rtd_theme/search.html +0 -50
  125. data/docs/source/_themes/sphinx_rtd_theme/searchbox.html +0 -7
  126. data/docs/source/_themes/sphinx_rtd_theme/static/css/badge_only.css +0 -1
  127. data/docs/source/_themes/sphinx_rtd_theme/static/css/theme.css +0 -4
  128. data/docs/source/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf +0 -0
  129. data/docs/source/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot +0 -0
  130. data/docs/source/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.svg +0 -414
  131. data/docs/source/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf +0 -0
  132. data/docs/source/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff +0 -0
  133. data/docs/source/_themes/sphinx_rtd_theme/static/js/theme.js +0 -47
  134. data/docs/source/_themes/sphinx_rtd_theme/theme.conf +0 -8
  135. data/docs/source/_themes/sphinx_rtd_theme/versions.html +0 -37
  136. data/docs/source/aliases.rst +0 -31
  137. data/docs/source/atlas_debian_g5k.yaml +0 -36
  138. data/docs/source/checkpoint.rst +0 -30
  139. data/docs/source/commands.rst +0 -63
  140. data/docs/source/conf.py +0 -262
  141. data/docs/source/context.rst +0 -47
  142. data/docs/source/debian_customized.yaml +0 -28
  143. data/docs/source/debian_customized_g5k.yaml +0 -21
  144. data/docs/source/faq.rst +0 -43
  145. data/docs/source/getting_started.rst +0 -260
  146. data/docs/source/grid5000_tutorial.rst +0 -525
  147. data/docs/source/index.rst +0 -53
  148. data/docs/source/install_atlas.yaml +0 -25
  149. data/docs/source/install_hpl.yaml +0 -24
  150. data/docs/source/installation.rst +0 -51
  151. data/docs/source/persistent_cache.rst +0 -34
  152. data/docs/source/recipe.rst +0 -177
  153. data/docs/source/tau_install.yaml +0 -19
  154. data/docs/source/tau_install_g5k.yaml +0 -25
  155. data/docs/source/use_cases.rst +0 -93
  156. data/docs/source/workspace.rst +0 -13
  157. data/lib/kameleon/logger.rb +0 -56
  158. data/omnibus/.gitignore +0 -11
  159. data/omnibus/.kitchen.yml +0 -25
  160. data/omnibus/Berksfile +0 -9
  161. data/omnibus/Berksfile.lock +0 -25
  162. data/omnibus/Gemfile +0 -12
  163. data/omnibus/README.md +0 -94
  164. data/omnibus/config/projects/kameleon.rb +0 -23
  165. data/omnibus/config/software/kameleon.rb +0 -24
  166. data/omnibus/config/software/polipo.rb +0 -30
  167. data/omnibus/config/software/ruby.rb +0 -158
  168. data/omnibus/files/mac_dmg/Resources/background.png +0 -0
  169. data/omnibus/files/mac_dmg/Resources/icon.png +0 -0
  170. data/omnibus/files/mac_pkg/Resources/background.png +0 -0
  171. data/omnibus/files/mac_pkg/Resources/license.html +0 -1
  172. data/omnibus/files/mac_pkg/Resources/welcome.html +0 -9
  173. data/omnibus/omnibus.rb +0 -27
  174. data/omnibus/package-scripts/kameleon/makeselfinst +0 -27
  175. data/omnibus/package-scripts/kameleon/postrm +0 -9
  176. data/templates/fedora20.yaml +0 -105
  177. data/templates/steps/bootstrap/archlinux/install_bootloader.yaml +0 -46
  178. data/templates/steps/bootstrap/archlinux/populate_disk.yaml +0 -39
  179. data/templates/steps/bootstrap/fedora/liveos_bootstrap.yaml +0 -123
  180. data/templates/steps/bootstrap/initialize_disk_qemu.yaml +0 -72
  181. data/templates/steps/bootstrap/install_bootloader.yaml +0 -42
  182. data/templates/steps/bootstrap/ubuntu/debootstrap.yaml +0 -27
  183. data/templates/steps/export/save_appliance.yaml +0 -58
  184. data/templates/steps/export/save_vagrant_box.yaml +0 -29
  185. data/templates/vagrant-debian7.yaml +0 -31
File without changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,17 +0,0 @@
1
- """Sphinx ReadTheDocs theme.
2
-
3
- From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
4
-
5
- """
6
- import os
7
-
8
- VERSION = (0, 1, 5)
9
-
10
- __version__ = ".".join(str(v) for v in VERSION)
11
- __version_full__ = __version__
12
-
13
-
14
- def get_html_theme_path():
15
- """Return list of HTML theme paths."""
16
- cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
17
- return cur_dir
@@ -1,19 +0,0 @@
1
- <div role="navigation" aria-label="breadcrumbs navigation">
2
- <ul class="wy-breadcrumbs">
3
- <li><a href="{{ pathto(master_doc) }}">Docs</a> &raquo;</li>
4
- {% for doc in parents %}
5
- <li><a href="{{ doc.link|e }}">{{ doc.title }}</a> &raquo;</li>
6
- {% endfor %}
7
- <li>{{ title }}</li>
8
- <li class="wy-breadcrumbs-aside">
9
- {% if display_github %}
10
- <a href="https://github.com/{{ github_user }}/{{ github_repo }}/blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}{{ source_suffix }}" class="fa fa-github"> Edit on GitHub</a>
11
- {% elif display_bitbucket %}
12
- <a href="https://bitbucket.org/{{ bitbucket_user }}/{{ bitbucket_repo }}/src/{{ bitbucket_version}}{{ conf_py_path }}{{ pagename }}{{ source_suffix }}" class="fa fa-bitbucket"> Edit on Bitbucket</a>
13
- {% elif show_source and has_source and sourcename %}
14
- <a href="{{ pathto('_sources/' + sourcename, true)|e }}" rel="nofollow"> View page source</a>
15
- {% endif %}
16
- </li>
17
- </ul>
18
- <hr/>
19
- </div>
@@ -1,32 +0,0 @@
1
- <footer>
2
- {% if next or prev %}
3
- <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
4
- {% if next %}
5
- <a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}">Next <span class="fa fa-arrow-circle-right"></span></a>
6
- {% endif %}
7
- {% if prev %}
8
- <a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}"><span class="fa fa-arrow-circle-left"></span> Previous</a>
9
- {% endif %}
10
- </div>
11
- {% endif %}
12
-
13
- <hr/>
14
-
15
- <div role="contentinfo">
16
- <p>
17
- {%- if show_copyright %}
18
- {%- if hasdoc('copyright') %}
19
- {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
20
- {%- else %}
21
- {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
22
- {%- endif %}
23
- {%- endif %}
24
-
25
- {%- if last_updated %}
26
- {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
27
- {%- endif %}
28
- </p>
29
- </div>
30
-
31
- {% trans %}<a href="https://github.com/snide/sphinx_rtd_theme">Sphinx theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %}
32
- </footer>
@@ -1,160 +0,0 @@
1
- {# TEMPLATE VAR SETTINGS #}
2
- {%- set url_root = pathto('', 1) %}
3
- {%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
4
- {%- if not embedded and docstitle %}
5
- {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
6
- {%- else %}
7
- {%- set titlesuffix = "" %}
8
- {%- endif %}
9
-
10
- <!DOCTYPE html>
11
- <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
12
- <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
13
- <head>
14
- <meta charset="utf-8">
15
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
16
- {% block htmltitle %}
17
- <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
18
- {% endblock %}
19
-
20
- {# FAVICON #}
21
- {% if favicon %}
22
- <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
23
- {% endif %}
24
-
25
- {# CSS #}
26
- <link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
27
-
28
- {# OPENSEARCH #}
29
- {% if not embedded %}
30
- {% if use_opensearch %}
31
- <link rel="search" type="application/opensearchdescription+xml" title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}" href="{{ pathto('_static/opensearch.xml', 1) }}"/>
32
- {% endif %}
33
-
34
- {% endif %}
35
-
36
- {# RTD hosts this file, so just load on non RTD builds #}
37
- {% if not READTHEDOCS %}
38
- <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
39
- {% endif %}
40
-
41
- {% for cssfile in css_files %}
42
- <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
43
- {% endfor %}
44
-
45
- {%- block linktags %}
46
- {%- if hasdoc('about') %}
47
- <link rel="author" title="{{ _('About these documents') }}"
48
- href="{{ pathto('about') }}"/>
49
- {%- endif %}
50
- {%- if hasdoc('genindex') %}
51
- <link rel="index" title="{{ _('Index') }}"
52
- href="{{ pathto('genindex') }}"/>
53
- {%- endif %}
54
- {%- if hasdoc('search') %}
55
- <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}"/>
56
- {%- endif %}
57
- {%- if hasdoc('copyright') %}
58
- <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}"/>
59
- {%- endif %}
60
- <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}"/>
61
- {%- if parents %}
62
- <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}"/>
63
- {%- endif %}
64
- {%- if next %}
65
- <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}"/>
66
- {%- endif %}
67
- {%- if prev %}
68
- <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}"/>
69
- {%- endif %}
70
- {%- endblock %}
71
- {%- block extrahead %} {% endblock %}
72
-
73
- {# Keep modernizr in head - http://modernizr.com/docs/#installing #}
74
- <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
75
-
76
- </head>
77
-
78
- <body class="wy-body-for-nav" role="document">
79
-
80
- <div class="wy-grid-for-nav">
81
-
82
- {# SIDE NAV, TOGGLES ON MOBILE #}
83
- <nav data-toggle="wy-nav-shift" class="wy-nav-side">
84
- <div class="wy-side-nav-search">
85
- <a href="{{ pathto(master_doc) }}" class="fa fa-home"> {{ project }}</a>
86
- {% include "searchbox.html" %}
87
- </div>
88
-
89
- <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
90
- {% set toctree = toctree(maxdepth=2, collapse=False, includehidden=True) %}
91
- {% if toctree %}
92
- {{ toctree }}
93
- {% else %}
94
- <!-- Local TOC -->
95
- <div class="local-toc">{{ toc }}</div>
96
- {% endif %}
97
- </div>
98
- &nbsp;
99
- </nav>
100
-
101
- <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
102
-
103
- {# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #}
104
- <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
105
- <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
106
- <a href="{{ pathto(master_doc) }}">{{ project }}</a>
107
- </nav>
108
-
109
-
110
- {# PAGE CONTENT #}
111
- <div class="wy-nav-content">
112
- <div class="rst-content">
113
- {% include "breadcrumbs.html" %}
114
- <div role="main">
115
- {% block body %}{% endblock %}
116
- </div>
117
- {% include "footer.html" %}
118
- </div>
119
- </div>
120
-
121
- </section>
122
-
123
- </div>
124
- {% include "versions.html" %}
125
-
126
- {% if not embedded %}
127
-
128
- <script type="text/javascript">
129
- var DOCUMENTATION_OPTIONS = {
130
- URL_ROOT:'{{ url_root }}',
131
- VERSION:'{{ release|e }}',
132
- COLLAPSE_INDEX:false,
133
- FILE_SUFFIX:'{{ '' if no_search_suffix else file_suffix }}',
134
- HAS_SOURCE: {{ has_source|lower }}
135
- };
136
- </script>
137
- {%- for scriptfile in script_files %}
138
- <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
139
- {%- endfor %}
140
-
141
- {% endif %}
142
-
143
- {# RTD hosts this file, so just load on non RTD builds #}
144
- {% if not READTHEDOCS %}
145
- <script type="text/javascript" src="{{ pathto('_static/js/theme.js', 1) }}"></script>
146
- {% endif %}
147
-
148
- {# STICKY NAVIGATION #}
149
- {% if theme_sticky_navigation %}
150
- <script type="text/javascript">
151
- jQuery(function () {
152
- SphinxRtdTheme.StickyNav.enable();
153
- });
154
- </script>
155
- {% endif %}
156
-
157
- {%- block footer %} {% endblock %}
158
-
159
- </body>
160
- </html>
@@ -1,205 +0,0 @@
1
- {#
2
- basic/layout.html
3
- ~~~~~~~~~~~~~~~~~
4
-
5
- Master layout template for Sphinx themes.
6
-
7
- :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
8
- :license: BSD, see LICENSE for details.
9
- #}
10
- {%- block doctype -%}
11
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
12
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13
- {%- endblock %}
14
- {%- set reldelim1 = reldelim1 is not defined and ' &raquo;' or reldelim1 %}
15
- {%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
16
- {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
17
- (sidebars != []) %}
18
- {%- set url_root = pathto('', 1) %}
19
- {# XXX necessary? #}
20
- {%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
21
- {%- if not embedded and docstitle %}
22
- {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
23
- {%- else %}
24
- {%- set titlesuffix = "" %}
25
- {%- endif %}
26
-
27
- {%- macro relbar() %}
28
- <div class="related">
29
- <h3>{{ _('Navigation') }}</h3>
30
- <ul>
31
- {%- for rellink in rellinks %}
32
- <li class="right" {% if loop.first %}style="margin-right: 10px"{% endif %}>
33
- <a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}"
34
- {{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a>
35
- {%- if not loop.first %}{{ reldelim2 }}{% endif %}</li>
36
- {%- endfor %}
37
- {%- block rootrellink %}
38
- <li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li>
39
- {%- endblock %}
40
- {%- for parent in parents %}
41
- <li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
42
- {%- endfor %}
43
- {%- block relbaritems %} {% endblock %}
44
- </ul>
45
- </div>
46
- {%- endmacro %}
47
-
48
- {%- macro sidebar() %}
49
- {%- if render_sidebar %}
50
- <div class="sphinxsidebar">
51
- <div class="sphinxsidebarwrapper">
52
- {%- block sidebarlogo %}
53
- {%- if logo %}
54
- <p class="logo"><a href="{{ pathto(master_doc) }}">
55
- <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
56
- </a></p>
57
- {%- endif %}
58
- {%- endblock %}
59
- {%- if sidebars != None %}
60
- {#- new style sidebar: explicitly include/exclude templates #}
61
- {%- for sidebartemplate in sidebars %}
62
- {%- include sidebartemplate %}
63
- {%- endfor %}
64
- {%- else %}
65
- {#- old style sidebars: using blocks -- should be deprecated #}
66
- {%- block sidebartoc %}
67
- {%- include "localtoc.html" %}
68
- {%- endblock %}
69
- {%- block sidebarrel %}
70
- {%- include "relations.html" %}
71
- {%- endblock %}
72
- {%- block sidebarsourcelink %}
73
- {%- include "sourcelink.html" %}
74
- {%- endblock %}
75
- {%- if customsidebar %}
76
- {%- include customsidebar %}
77
- {%- endif %}
78
- {%- block sidebarsearch %}
79
- {%- include "searchbox.html" %}
80
- {%- endblock %}
81
- {%- endif %}
82
- </div>
83
- </div>
84
- {%- endif %}
85
- {%- endmacro %}
86
-
87
- {%- macro script() %}
88
- <script type="text/javascript">
89
- var DOCUMENTATION_OPTIONS = {
90
- URL_ROOT: '{{ url_root }}',
91
- VERSION: '{{ release|e }}',
92
- COLLAPSE_INDEX: false,
93
- FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
94
- HAS_SOURCE: {{ has_source|lower }}
95
- };
96
- </script>
97
- {%- for scriptfile in script_files %}
98
- <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
99
- {%- endfor %}
100
- {%- endmacro %}
101
-
102
- {%- macro css() %}
103
- <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
104
- <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
105
- {%- for cssfile in css_files %}
106
- <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
107
- {%- endfor %}
108
- {%- endmacro %}
109
-
110
- <html xmlns="http://www.w3.org/1999/xhtml">
111
- <head>
112
- <meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
113
- {{ metatags }}
114
- {%- block htmltitle %}
115
- <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
116
- {%- endblock %}
117
- {{ css() }}
118
- {%- if not embedded %}
119
- {{ script() }}
120
- {%- if use_opensearch %}
121
- <link rel="search" type="application/opensearchdescription+xml"
122
- title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
123
- href="{{ pathto('_static/opensearch.xml', 1) }}"/>
124
- {%- endif %}
125
- {%- if favicon %}
126
- <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
127
- {%- endif %}
128
- {%- endif %}
129
- {%- block linktags %}
130
- {%- if hasdoc('about') %}
131
- <link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
132
- {%- endif %}
133
- {%- if hasdoc('genindex') %}
134
- <link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
135
- {%- endif %}
136
- {%- if hasdoc('search') %}
137
- <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
138
- {%- endif %}
139
- {%- if hasdoc('copyright') %}
140
- <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
141
- {%- endif %}
142
- <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
143
- {%- if parents %}
144
- <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
145
- {%- endif %}
146
- {%- if next %}
147
- <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
148
- {%- endif %}
149
- {%- if prev %}
150
- <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
151
- {%- endif %}
152
- {%- endblock %}
153
- {%- block extrahead %} {% endblock %}
154
- </head>
155
- <body>
156
- {%- block header %}{% endblock %}
157
-
158
- {%- block relbar1 %}{{ relbar() }}{% endblock %}
159
-
160
- {%- block content %}
161
- {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
162
-
163
- <div class="document">
164
- {%- block document %}
165
- <div class="documentwrapper">
166
- {%- if render_sidebar %}
167
- <div class="bodywrapper">
168
- {%- endif %}
169
- <div class="body">
170
- {% block body %} {% endblock %}
171
- </div>
172
- {%- if render_sidebar %}
173
- </div>
174
- {%- endif %}
175
- </div>
176
- {%- endblock %}
177
-
178
- {%- block sidebar2 %}{{ sidebar() }}{% endblock %}
179
- <div class="clearer"></div>
180
- </div>
181
- {%- endblock %}
182
-
183
- {%- block relbar2 %}{{ relbar() }}{% endblock %}
184
-
185
- {%- block footer %}
186
- <div class="footer">
187
- {%- if show_copyright %}
188
- {%- if hasdoc('copyright') %}
189
- {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
190
- {%- else %}
191
- {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
192
- {%- endif %}
193
- {%- endif %}
194
- {%- if last_updated %}
195
- {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
196
- {%- endif %}
197
- {%- if show_sphinx %}
198
- {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
199
- {%- endif %}
200
- </div>
201
- <p>asdf asdf asdf asdf 22</p>
202
- {%- endblock %}
203
- </body>
204
- </html>
205
-