mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-13 14:39:28 +00:00
474 lines
24 KiB
HTML
474 lines
24 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>
|
||
|
||
{%- 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>
|
||
|
||
{%- block header %}
|
||
|
||
<!-- <div id="stickywrapper"> -->
|
||
<!-- <div id="stickycontent"> -->
|
||
<div id="header"><div class="header">
|
||
<div class="logo"><a href="http://www.percona.com/" onfocus="this.blur()"><img src="http://s3.percona.com/ui-logo.png" alt="Percona Performance Consulting Experts" width="240" height="55" /></a></div>
|
||
<div class="right">
|
||
<div class="searchlink"><a onmouseover="SEARCH.Open()"><img id="searchlink-anchor" src="http://s2.percona.com/ui-search.png" alt="" /></a></div>
|
||
<span class="inv"><![CDATA[<noindex>]]></span>
|
||
<div class="navicontainer"><div class="navi">
|
||
<span id="navilink-span-about-us" ><a id="navilink-a-about-us" href="http://www.percona.com/about-us/">About Us</a></span><span id="navilink-span-mysql-consulting" ><a id="navilink-a-mysql-consulting" href="http://www.percona.com/mysql-consulting/">Consulting</a></span><span id="navilink-span-support" ><a id="navilink-a-support" href="http://www.percona.com/mysql-support/">Support</a></span><span id="navilink-span-training" ><a id="navilink-a-training" href="http://www.percona.com/training/">Training</a></span><span id="navilink-span-development" ><a id="navilink-a-development" href="http://www.percona.com/development/">Development</a></span><span id="navilink-span-software" class="selected"><a id="navilink-a-software" class="selected" href="http://www.percona.com/software/">Software</a></span><span id="navilink-span-prices" ><a id="navilink-a-prices" href="http://www.percona.com/prices/">Prices</a></span><span id="navilink-span-contact" ><a id="navilink-a-contact" href="http://www.percona.com/contact/">Contact Us</a></span> </div></div>
|
||
<span class="inv"><![CDATA[</noindex>]]></span>
|
||
</div>
|
||
</div></div>
|
||
<div id="stripe"></div>
|
||
|
||
{% 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-toolkit">Percona Toolkit 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-toolkit/+filebug?field.tags=doc&field.comment=[In:{{ title|e }}]&?field.tags=doc&field.title=[DOC] ">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 %}
|
||
<span class="inv"><!--[CDATA[<noindex-->]]></span>
|
||
<div id="submenus">
|
||
<div class="navi-dropdown" id="navi-dropdown-about-us">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/about-us/our-mission/">Our Mission</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/why-percona/">Why Percona?</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/procedures/">Coordinating with Percona</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/customers/">Customers</a></div>
|
||
<div class="item"><a href="http://www.percona.com/webinars/">Webinars</a></div>
|
||
<div class="item"><a href="http://www.percona.com/events/">Events</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/mysql-case-studies/">MySQL Case Studies</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/our-team/">Our Team</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/books/">Our Books</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/blogs/">Our Blogs</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/mysql-white-papers/">MySQL White Papers</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/conferences/">Conferences</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/presentations/">Presentations</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/newsletters/">Newsletters</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/pressreleases/">Press Releases</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/careers/">Careers</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-mysql-consulting">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/overview/">MySQL Consulting Overview</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/architecture/">MySQL Architecture & Design</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/mysql-backups/">MySQL Backups</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/cloud-computing/">MySQL Cloud Solutions</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/cluster/">MySQL Cluster Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/data-warehousing/">MySQL Data Warehousing</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/data-recovery/">MySQL Data Recovery</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/high-availability/">MySQL High Availability</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/mysql-monitoring-graphing/">MySQL Monitoring & Graphing</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/mysql-onsite-consulting/">MySQL Onsite Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/performance-audit/">MySQL Performance Audit</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/remote-dba/">MySQL Remote DBA</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/mysql-replication/">MySQL Replication</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/upgrade/">MySQL Version Upgrades</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/24x7-emergency/">Emergency 24×7 Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/migration/">Migration to MySQL</a></div>
|
||
<div class="item"><a href="http://www.percona.com/drizzle-consulting/">Drizzle Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/sphinx/">Sphinx Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/drbd/">DRBD Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/memcached/">Memcached Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-consulting/other-services/">Other Consulting Services</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-support">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/">Support for MySQL</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/tco-calculator/">Calculate your Savings</a></div>
|
||
<div class="item"><a href="http://www.percona.com/drizzle-support/">Drizzle Support</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/policies/">Support Policies</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/policies/supported-software/">Supported Software</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/policies/supported-platforms/">Supported Platforms & Versions</a></div>
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/consulting-vs-support/">Consulting vs. Support</a></div>
|
||
<div class="item"><a href="https://customers.percona.com">Customer Portal Login</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-training">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/training/">MySQL Training Overview</a></div>
|
||
<div class="item"><a href="http://www.percona.com/training/classes/dba/">MySQL DBA Training</a></div>
|
||
<div class="item"><a href="http://www.percona.com/training/classes/developers/">MySQL Developer Training</a></div>
|
||
<div class="item"><a href="http://www.percona.com/training/classes/operations/">MySQL Operations Training</a></div>
|
||
<div class="item"><a href="http://www.percona.com/training/classes/innodb/">InnoDB & XtraDB Training</a></div>
|
||
<div class="item"><a href="http://www.percona.com/training/classes/custom-onsite/">Custom Onsite Training</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-development">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/development/mysql/">Development for MySQL</a></div>
|
||
<div class="item"><a href="http://www.percona.com/development/maintenance/">Maintenance for MySQL</a></div>
|
||
<div class="item"><a href="http://www.percona.com/development/benchmarking/">Custom Product Evaluation</a></div>
|
||
<div class="item"><a href="http://www.percona.com/development/maatkit/">Custom Maatkit Development</a></div>
|
||
<div class="item"><a href="http://www.percona.com/development/custom-tools/">Custom Tools Development</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-software">
|
||
<div class="navi-dropdown-header-l"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/software/">Percona Software for MySQL</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/percona-server/">Percona Server with XtraDB</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/percona-xtrabackup/">Percona XtraBackup</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/mysql-innodb-data-recovery-tools/">Data Recovery Toolkit</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/percona-xtradb/">Percona XtraDB</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/percona-toolkit/">Percona Toolkit</a></div>
|
||
<div class="item"><a href="http://www.percona.com/downloads/">Downloads</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/repositories/">Repositories</a></div>
|
||
<div class="item"><a href="http://www.percona.com/software/documentation/">Documentation</a></div>
|
||
<div class="item"><a href="http://forum.percona.com">Forum</a></div>
|
||
<div class="item"><a href="http://groups.google.com/group/percona-discussion">Google Discussion</a></div>
|
||
<div class="item"><a href="https://launchpad.net/percona-server">Launchpad</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-prices">
|
||
<div class="navi-dropdown-header-r"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/mysql-support/">Support Contracts</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/per-hour-prices/">Per Hour Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/prepaid-prices/">Prepaid Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/on-site-prices/">On-Site Consulting</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/training/">Training</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/software/">Software</a></div>
|
||
<div class="item"><a href="http://www.percona.com/prices/other-prices/">Other Services</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div class="navi-dropdown" id="navi-dropdown-contact">
|
||
<div class="navi-dropdown-header-r"><!-- //--></div>
|
||
<div class="navi-dropdown-content">
|
||
<div class="item"><a href="http://www.percona.com/contact/24x7-emergency/">24×7 Emergency</a></div>
|
||
<div class="item"><a href="http://www.percona.com/contact/sales/">Sales & General Inquiries</a></div>
|
||
<div class="item"><a href="http://www.percona.com/contact/billing/">Billing Inquiries</a></div>
|
||
<div class="item"><a href="https://customers.percona.com">Customer Portal Login</a></div>
|
||
<div class="item"><a href="http://www.percona.com/contact/phone-directory/">Phone Directory</a></div>
|
||
<div class="item"><a href="http://www.percona.com/about-us/newsletters/subscribe/">Subscribe to Newsletter</a></div>
|
||
</div>
|
||
<div class="navi-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
<div id="search-dropdown" class="search-dropdown">
|
||
<div class="search-dropdown-header"><!-- //--></div>
|
||
<div class="search-dropdown-content">
|
||
<div class="search-info">Search Percona.com:</div>
|
||
<form method="get" action="http://search.percona.com/search/" id="search-form">
|
||
<div class="form"><input type="text" id="search-input" name="q" maxlength="100"></div>
|
||
</form>
|
||
</div>
|
||
<div class="search-dropdown-footer"><!-- //--></div>
|
||
</div>
|
||
</div>
|
||
<div id="stats">
|
||
<!-- GA //-->
|
||
<script src="http://www.percona.com/static/js/urchin.js" type="text/javascript"></script>
|
||
<script type="text/javascript">
|
||
_uacct = "UA-343802-3";
|
||
urchinTracker();
|
||
</script>
|
||
<!-- /GA //-->
|
||
<!-- NAVI //-->
|
||
<script type="text/javascript">//<![CDATA[
|
||
var navi = [{id:"about-us", direction: "l"},{id:"mysql-consulting", direction: "l"},{id:"support", direction: "l"},{id:"training", direction: "l"},{id:"development", direction: "l"},{id:"software", direction: "l"},{id:"prices", direction: "r"},{id:"contact", direction: "r"}];
|
||
for(var i = 0, c = navi.length; i < c; i++) {
|
||
window.jQuery('#navilink-a-' + navi[i].id).bind('mouseover',{id: navi[i].id, direction:navi[i].direction}, function(e) { NAVI.Open(e.data.id, e.data.direction); } );
|
||
}
|
||
window.jQuery('#search-form').bind('submit', function() { window.location.href = jQuery('#search-form').attr('action') + jQuery('#search-input').val(); return false; });
|
||
//]]></script>
|
||
<!-- /NAVI //-->
|
||
<script type="text/javascript">
|
||
//<![CDATA[
|
||
Percona.host = 'www.percona.com';
|
||
Percona.getRecentServerVersion('#recentServerVersion');
|
||
//]]>
|
||
</script>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
|
||
|
||
|
||
{% if theme_collapsiblesidebar|tobool %}
|
||
{% set script_files = script_files + ['_static/sidebar.js'] %}
|
||
{% endif %}
|