bin
doc
manpages
source
_ga
_static
_theme
layout.html
theme.conf
account.rst
admin_guide.rst
apache_deployment_guide.rst
associated_projects.rst
conf.py
container.rst
cors.rst
db.rst
deployment_guide.rst
development_auth.rst
development_guidelines.rst
development_saio.rst
getting_started.rst
howto_installmultinode.rst
index.rst
misc.rst
object.rst
overview_architecture.rst
overview_auth.rst
overview_container_sync.rst
overview_expiring_objects.rst
overview_large_objects.rst
overview_object_versioning.rst
overview_reaper.rst
overview_replication.rst
overview_ring.rst
proxy.rst
ratelimit.rst
ring.rst
etc
locale
swift
test
tools
.coveragerc
.functests
.gitignore
.gitreview
.mailmap
.probetests
.unittests
AUTHORS
CHANGELOG
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
babel.cfg
setup.cfg
setup.py
tox.ini

Removed sidebar with broken (static) links referencing out-of-date docs. Added an external link to the Swift API docs fixes bug #1025099 Change-Id: I7f3106175b84b1063f74aa6c5693ab1e422cdb59
67 lines
2.7 KiB
HTML
67 lines
2.7 KiB
HTML
{% extends "sphinxdoc/layout.html" %}
|
|
{% set css_files = css_files + ['_static/tweaks.css'] %}
|
|
|
|
{%- macro sidebar() %}
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
<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 %}
|
|
{%- endblock %}
|
|
{%- block sidebartoc %}
|
|
{%- if display_toc %}
|
|
<h3><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></h3>
|
|
{{ toc }}
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
{%- block sidebarrel %}
|
|
{%- if prev %}
|
|
<h4>{{ _('Previous topic') }}</h4>
|
|
<p class="topless"><a href="{{ prev.link|e }}"
|
|
title="{{ _('previous chapter') }}">{{ prev.title }}</a></p>
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<h4>{{ _('Next topic') }}</h4>
|
|
<p class="topless"><a href="{{ next.link|e }}"
|
|
title="{{ _('next chapter') }}">{{ next.title }}</a></p>
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
{%- block sidebarsourcelink %}
|
|
{%- if show_source and has_source and sourcename %}
|
|
<h3>{{ _('This Page') }}</h3>
|
|
<ul class="this-page-menu">
|
|
<li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
|
|
rel="nofollow">{{ _('Show Source') }}</a></li>
|
|
</ul>
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
{%- if customsidebar %}
|
|
{% include customsidebar %}
|
|
{%- endif %}
|
|
{%- block sidebarsearch %}
|
|
{%- if pagename != "search" %}
|
|
<div id="searchbox" style="display: none">
|
|
<h3>{{ _('Quick search') }}</h3>
|
|
<form class="search" action="{{ pathto('search') }}" method="get">
|
|
<input type="text" name="q" size="18" />
|
|
<input type="submit" value="{{ _('Go') }}" />
|
|
<input type="hidden" name="check_keywords" value="yes" />
|
|
<input type="hidden" name="area" value="default" />
|
|
</form>
|
|
<p class="searchtip" style="font-size: 90%">
|
|
{{ _('Enter search terms or a module, class or function name.') }}
|
|
</p>
|
|
</div>
|
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
|
{%- endif %}
|
|
|
|
{%- endblock %}
|
|
</div>
|
|
</div>
|
|
{%- endif %}{% endif %}
|
|
{%- endmacro %}
|