mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
307 lines
12 KiB
HTML
307 lines
12 KiB
HTML
{#
|
|
basic/layout.html
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Master layout template for Sphinx themes.
|
|
|
|
:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
#}
|
|
{%- block doctype -%}
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
{%- endblock %}
|
|
{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %}
|
|
{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
|
|
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
|
|
(sidebars != []) %}
|
|
{%- set url_root = pathto('', 1) %}
|
|
{# XXX necessary? #}
|
|
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
|
|
{%- if not embedded and docstitle %}
|
|
{%- set titlesuffix = " — "|safe + docstitle|e %}
|
|
{%- else %}
|
|
{%- set titlesuffix = "" %}
|
|
{%- endif %}
|
|
|
|
{%- macro relbar() %}
|
|
<div class="related">
|
|
<h3>{{ _('Navigation') }}</h3>
|
|
<ul>
|
|
{%- for rellink in rellinks %}
|
|
<li class="right" {% if loop.first %}style="margin-right: 10px"{% endif %}>
|
|
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}"
|
|
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a>
|
|
{%- if not loop.first %}{{ reldelim2 }}{% endif %}</li>
|
|
{%- endfor %}
|
|
{%- block rootrellink %}
|
|
<li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li>
|
|
{%- endblock %}
|
|
{%- for parent in parents %}
|
|
<li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
|
|
{%- endfor %}
|
|
{%- block relbaritems %} {% endblock %}
|
|
</ul>
|
|
</div>
|
|
{%- endmacro %}
|
|
|
|
{%- macro sidebar() %}
|
|
{%- if render_sidebar %}
|
|
<div class="sphinxsidebar">
|
|
<div class="sphinxsidebarwrapper">
|
|
{%- block sidebarlogo %}
|
|
{%- if logo %}
|
|
<p class="logo"><a href="{{ pathto(master_doc) }}">
|
|
<img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
|
|
</a></p>
|
|
{%- endif %}
|
|
|
|
<div class="noborder" id="sidenavi">
|
|
|
|
<div class="sidebanner" id="sidebanner">
|
|
<div class="header"><a href="/contact/sales">Call Us</a></div>
|
|
<div class="numbers">
|
|
<div style="padding-bottom: 4px">
|
|
+1-888-316-9775 (USA - Sales)<br>
|
|
+1-208-473-2904 (USA - Sales)
|
|
</div>
|
|
<div>
|
|
+44-208-133-0309 (UK - Sales)
|
|
</div>
|
|
<div>
|
|
+1-888-488-8556 (Emergency)
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="sidefloater"></div>
|
|
</div>
|
|
|
|
{%- endblock %}
|
|
{%- if sidebars != None %}
|
|
{#- new style sidebar: explicitly include/exclude templates #}
|
|
{%- for sidebartemplate in sidebars %}
|
|
{%- include sidebartemplate %}
|
|
{%- endfor %}
|
|
{%- else %}
|
|
{#- old style sidebars: using blocks -- should be deprecated #}
|
|
{%- block sidebartoc %}
|
|
{%- include "localtoc.html" %}
|
|
{%- endblock %}
|
|
{%- block sidebarrel %}
|
|
{%- include "relations.html" %}
|
|
{%- endblock %}
|
|
{%- block sidebarsourcelink %}
|
|
{%- include "sourcelink.html" %}
|
|
{%- endblock %}
|
|
{%- if customsidebar %}
|
|
{%- include customsidebar %}
|
|
{%- endif %}
|
|
{%- block sidebarsearch %}
|
|
{%- include "searchbox.html" %}
|
|
{%- endblock %}
|
|
{%- endif %}
|
|
|
|
</div>
|
|
</div>
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro script() %}
|
|
<script type="text/javascript">
|
|
var DOCUMENTATION_OPTIONS = {
|
|
URL_ROOT: '{{ url_root }}',
|
|
VERSION: '{{ release|e }}',
|
|
COLLAPSE_INDEX: false,
|
|
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
|
|
HAS_SOURCE: {{ has_source|lower }}
|
|
};
|
|
</script>
|
|
{%- for scriptfile in script_files %}
|
|
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
|
|
{%- endfor %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro css() %}
|
|
<link rel="stylesheet" href="{{ pathto('_static/percona.com.css', 1) }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
|
|
{%- for cssfile in css_files %}
|
|
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
|
|
{%- endfor %}
|
|
{%- endmacro %}
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
|
|
{{ metatags }}
|
|
{%- block htmltitle %}
|
|
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
|
|
{%- endblock %}
|
|
|
|
{{ css() }}
|
|
{%- if not embedded %}
|
|
{{ script() }}
|
|
{%- if use_opensearch %}
|
|
<link rel="search" type="application/opensearchdescription+xml"
|
|
title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
|
|
href="{{ pathto('_static/opensearch.xml', 1) }}"/>
|
|
{%- endif %}
|
|
|
|
<script src="{{ pathto('_static/percona.com.js', 1)}}" type="text/javascript"></script>
|
|
|
|
<script type="text/javascript" src="{{ pathto('_static/jquery.min.js', 1) }}"></script>
|
|
|
|
{%- if favicon %}
|
|
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- block linktags %}
|
|
{%- if hasdoc('about') %}
|
|
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('genindex') %}
|
|
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('search') %}
|
|
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
|
|
{%- endif %}
|
|
{%- if hasdoc('copyright') %}
|
|
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
|
|
{%- endif %}
|
|
<link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
|
|
{%- if parents %}
|
|
<link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
|
|
{%- endif %}
|
|
{%- if prev %}
|
|
<link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
{%- block extrahead %} {% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
<div class="header">
|
|
<div class="logo"><a onfocus="this.blur()" href="http://www.percona.com/"><img width="240" height="55" alt="Percona Performance Consulting Experts" src="{{ pathto('_static/ui-logo.png', 1) }}"></a></div>
|
|
<div class="right">
|
|
<div class="searchlink"><a onmouseover="SEARCH.Open()"><img alt="" src="{{ pathto('_static/ui-search.png', 1) }}" id="searchlink-anchor"></a></div>
|
|
<span class="inv"><!--[CDATA[<noindex-->]]></span>
|
|
<div class="navicontainer"><div class="navi">
|
|
<span id="navilink-span-about-us"><a onmouseover="NAVI.Open('about-us','l')" href="http://www.percona.com/about-us/" id="navilink-a-about-us">About Us</a></span><span id="navilink-span-mysql-consulting"><a onmouseover="NAVI.Open('mysql-consulting','l')" href="http://www.percona.com/mysql-consulting/" id="navilink-a-mysql-consulting">Consulting</a></span><span id="navilink-span-support"><a onmouseover="NAVI.Open('support','l')" href="http://www.percona.com/mysql-support/" id="navilink-a-support">Support</a></span><span id="navilink-span-training"><a onmouseover="NAVI.Open('training','l')" href="http://www.percona.com/training/" id="navilink-a-training">Training</a></span><span id="navilink-span-development"><a onmouseover="NAVI.Open('development','l')" href="http://www.percona.com/development/" id="navilink-a-development">Development</a></span><span class="selected" id="navilink-span-software"><a onmouseover="NAVI.Open('software','l')" href="http://www.percona.com/software/" class="selected" id="navilink-a-software">Software</a></span><span id="navilink-span-prices"><a onmouseover="NAVI.Open('prices','r')" href="http://www.percona.com/prices/" id="navilink-a-prices">Prices</a></span><span id="navilink-span-contact"><a onmouseover="NAVI.Open('contact','r')" href="http://www.percona.com/contact/" id="navilink-a-contact">Contact Us</a></span> </div></div>
|
|
<span class="inv"><!--[CDATA[</noindex-->]]></span>
|
|
</div>
|
|
</div></div>
|
|
|
|
{%- block header %}{% endblock %}
|
|
|
|
<div id="stripe"></div>
|
|
|
|
{%- block content %}
|
|
|
|
|
|
|
|
{%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
|
|
|
|
<div class="document">
|
|
|
|
|
|
|
|
{%- block document %}
|
|
<div class="documentwrapper">
|
|
{%- if render_sidebar %}
|
|
<div class="bodywrapper">
|
|
{%- endif %}
|
|
|
|
{%- block relbar1 %}{{ relbar() }}{% endblock %}
|
|
|
|
<div class="body">
|
|
{% block body %} {% endblock %}
|
|
</div>
|
|
|
|
{%- block relbar2 %}{{ relbar() }}
|
|
|
|
{%- if render_sidebar %}
|
|
</div>
|
|
{%- endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{%- endblock %}
|
|
|
|
{%- block sidebar2 %}{{ sidebar() }}{% endblock %}
|
|
|
|
<div class="clearer"></div>
|
|
|
|
{%- if last_updated %}
|
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
{%- endif %}
|
|
|
|
<div class="license">
|
|
|
|
{%- if show_copyright %}
|
|
{%- if hasdoc('copyright') %}
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
|
|
{%- else %}
|
|
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
|
|
<br />
|
|
Except where otherwise noted, this documentation is licensed under the following license:
|
|
<br />
|
|
<a class="urlextern" rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">
|
|
CC Attribution-ShareAlike 2.0 Generic</a><br />
|
|
|
|
{%- if show_sphinx %}
|
|
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
|
|
{%- endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
{%- endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{%- block footer %}
|
|
|
|
<div class="file-bugs">
|
|
This documentation is developed in Launchpad as part of the <a href="https://code.launchpad.net/percona-xtrabackup">XtraBackup source code</a>.</br>
|
|
If you spotted innacuracies, errors, don't understood it or you think something is missing or should be improved, please <a href="https://bugs.launchpad.net/percona-xtrabackup/+filebug">file a bug</a>.
|
|
</div>
|
|
|
|
<div class="footer">
|
|
|
|
<div class="footer">
|
|
<div class="logo"><img width="110" height="25" alt="" src="{{ pathto('_static/ui-footer-logo.png', 1) }}">
|
|
</div>
|
|
|
|
<div class="text">
|
|
<span class="inv"><!--[CDATA[<noindex-->]]></span>
|
|
Call us: 1-888-316-9775 • <a href="/contact">Contact Us</a><br>
|
|
MySQL and InnoDB are trademarks of Oracle Corp.<br>
|
|
Proudly running <a href="/software/percona-server/">Percona Server<span id="recentServerVersion"></span></a><br>
|
|
Copyright © 2006-2011 Percona Inc.<br>
|
|
<a href="/about-us/policies/">Copyright, Trademark, and Privacy Policy</a> • <a href="/sitemap/">Sitemap</a>
|
|
<span class="inv"><!--[CDATA[</noindex-->]]></span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{%- endblock %}
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
{% if theme_collapsiblesidebar|tobool %}
|
|
{% set script_files = script_files + ['_static/sidebar.js'] %}
|
|
{% endif %}
|