openstack-manuals/www/2023.1/language-bindings.html
Kristi Nikolla 86b1b7ff11 Attempt at fixing broken docs
This patch attempts to fix the broken docs by having the series
name match the branch name (2023.1 instead of 2023.1.antelope)

A patch was previously merged and reverted[0]. It changed the
name of the series, but missed updating the directory names
under the www directory.

I did test this locally, and it did correctly pupulate the pages
with links for the various projects, but I do not know if it
fully resolves the issue.

Additionally adds redirects for /2023.1.antelope to /2023.1
and 2023.2.bobcat to 2023.2.

[0]. https://review.opendev.org/c/openstack/openstack-manuals/+/880060

Change-Id: I39e0740e57502fd96299fea79409e55e49c10367
2023-05-16 19:41:16 +00:00

69 lines
2.7 KiB
HTML

{% set projects = PROJECT_DATA[SERIES] %}
{% extends "templates/base.tmpl" %}
{% block pagetitle %}{{SERIES_TITLE}} Language bindings{% endblock %}
{% block title %}
<a href="https://docs.openstack.org/">Documentation</a> &gt; Language Bindings and Python Clients
{% endblock %}
{% block content %}
<!-- Begin Page Content -->
<div class="top-docs-wrapper">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-8">
<h1>OpenStack {{SERIES_TITLE}} API Bindings</h1>
<p>
This page contains documentation about the Python
bindings provided by OpenStack and how to use them.
</p>
</div>
</div>
</div>
<div class="mid-docs-wrapper" id="docs-main-body">
<div class="container">
<div class="row docs-toc">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="docs-link-sections">
<h3><i class="fa fa-book"></i>Bindings for the OpenStack APIs</h3>
{% for project in projects|sort(attribute='service') -%}
{% if project.type == 'cloud-client' and project.name != 'python-openstackclient' %}
<a href="/{{project.name}}/{{SERIES}}/">
{{project.service}} ({{project.description}})
</a><br />
{% endif %}
{%- endfor %}
</div>
<div class="docs-link-sections">
<h3><i class="fa fa-book"></i> Bindings for individual OpenStack service APIs</h3>
{% for project in projects|sort(attribute='service') -%}
{% if project.type == 'service-client' %}
<a href="/{{project.name}}/{{SERIES}}/">
{{project.service}} ({{project.description}})
</a><br />
{% endif %}
{%- endfor %}
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="docs-link-sections">
<h3><i class="fa fa-cloud"></i>Use the unified command-line client</h3>
<a href="/python-openstackclient/{{SERIES}}/">
Unified OpenStack Client
</a><br />
<p>
Documentation for python-openstackclient, a unified shell command structure.
</p>
</div>
</div>
</div>
<div class="row docs-contribute-wrapper">
<div class="col-lg-12">
<p>Documentation treated like code, powered by the community - interested?</p>
<a href="/doc-contrib-guide/" class="overview-btn contribute-btn"
>How To Contribute <i class="fa fa-chevron-right"></i></a>
</div>
</div>
</div>
</div>
{% endblock content %}