add landing pages for historical versions
Add landing pages with references to all of the historical versions for completeness. For the versions where we do have guides still published, include links. Change-Id: I62211adab1628f10e88f4892dd85a50170da1d96 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
c6831022ff
commit
37c83af5a5
@ -29,8 +29,20 @@ import requests
|
||||
import yaml
|
||||
|
||||
|
||||
# List released series for which documentation is still published.
|
||||
# List previously released series.
|
||||
PAST_SERIES = [
|
||||
'austin',
|
||||
'bexar',
|
||||
'cactus',
|
||||
'diablo',
|
||||
'essex',
|
||||
'folsom',
|
||||
'grizzly',
|
||||
'havana',
|
||||
'icehouse',
|
||||
'juno',
|
||||
'kilo',
|
||||
'liberty',
|
||||
'mitaka',
|
||||
'newton',
|
||||
]
|
||||
|
@ -10,21 +10,6 @@ redirectmatch 301 ^/index.html$ /{{RELEASED_SERIES}}/
|
||||
redirectmatch 301 ^/openstack-projects.html$ /{{RELEASED_SERIES}}/projects.html
|
||||
redirectmatch 301 ^/language-bindings.html$ /{{RELEASED_SERIES}}/language-bindings.html
|
||||
|
||||
# Redirecting End-of-Life (EOL) versions, see https://wiki.openstack.org/wiki/Releases:
|
||||
redirectmatch 301 /bexar/.*$ /index.html
|
||||
redirectmatch 301 /cactus/.*$ /index.html
|
||||
redirectmatch 301 /diablo/.*$ /index.html
|
||||
redirectmatch 301 /essex/.*$ /index.html
|
||||
redirectmatch 301 /folsom/.*$ /index.html
|
||||
redirectmatch 301 /grizzly/.*$ /index.html
|
||||
redirectmatch 301 /havana/.*$ /index.html
|
||||
|
||||
# We still have the config-reference available
|
||||
redirectmatch 301 /icehouse/(?!config-reference)/.*$ /index.html
|
||||
redirectmatch 301 /juno/(?!config-reference)/.*$ /index.html
|
||||
redirectmatch 301 /kilo/(?!config-reference)/.*$ /index.html
|
||||
redirectmatch 301 /liberty/(?!config-reference)/.*$ /index.html
|
||||
|
||||
# Redirect docs.openstack.org index.html subpage pointers to main page
|
||||
redirect 301 /install/ /{{RELEASED_SERIES}}/install/
|
||||
redirect 301 /basic-install/ /{{RELEASED_SERIES}}/install/
|
||||
|
63
www/austin/index.html
Normal file
63
www/austin/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/bexar/index.html
Normal file
63
www/bexar/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/cactus/index.html
Normal file
63
www/cactus/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/diablo/index.html
Normal file
63
www/diablo/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/essex/index.html
Normal file
63
www/essex/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/folsom/index.html
Normal file
63
www/folsom/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/grizzly/index.html
Normal file
63
www/grizzly/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
63
www/havana/index.html
Normal file
63
www/havana/index.html
Normal file
@ -0,0 +1,63 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a cloud operating system that controls large pools of compute, storage, and networking resources throughout a datacenter, all managed through a dashboard that gives administrators control while empowering their users to provision resources through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
For documentation, please refer to a newer
|
||||
release. The most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row docs-contribute-wrapper">
|
||||
<div class="col-lg-12">
|
||||
<p>Documentation treated like code, powered by the community - interested?</p>
|
||||
<a href="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
89
www/icehouse/index.html
Normal file
89
www/icehouse/index.html
Normal file
@ -0,0 +1,89 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a
|
||||
cloud operating system that controls large pools
|
||||
of compute, storage, and networking resources
|
||||
throughout a datacenter, all managed through a
|
||||
dashboard that gives administrators control while
|
||||
empowering their users to provision resources
|
||||
through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
Minimal documentation is still published here to
|
||||
assist users running this version. For additional
|
||||
documentation, please refer to a newer release. The
|
||||
most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12"></div>
|
||||
</div>
|
||||
|
||||
<div class="row docs-toc">
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="configuration-guides"><i class="fa fa-wrench"></i> Configuration Guides</h3>
|
||||
<a href="config-guide/">Configuration Reference</a>
|
||||
<p>Installation and configuration options for OpenStack</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="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
88
www/juno/index.html
Normal file
88
www/juno/index.html
Normal file
@ -0,0 +1,88 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a
|
||||
cloud operating system that controls large pools
|
||||
of compute, storage, and networking resources
|
||||
throughout a datacenter, all managed through a
|
||||
dashboard that gives administrators control while
|
||||
empowering their users to provision resources
|
||||
through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
Minimal documentation is still published here to
|
||||
assist users running this version. For additional
|
||||
documentation, please refer to a newer release. The
|
||||
most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12"></div>
|
||||
</div>
|
||||
|
||||
<div class="row docs-toc">
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="configuration-guides"><i class="fa fa-wrench"></i> Configuration Guides</h3>
|
||||
<a href="config-guide/">Configuration Reference</a>
|
||||
<p>Installation and configuration options for OpenStack</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="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
93
www/kilo/index.html
Normal file
93
www/kilo/index.html
Normal file
@ -0,0 +1,93 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a
|
||||
cloud operating system that controls large pools
|
||||
of compute, storage, and networking resources
|
||||
throughout a datacenter, all managed through a
|
||||
dashboard that gives administrators control while
|
||||
empowering their users to provision resources
|
||||
through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
Minimal documentation is still published here to
|
||||
assist users running this version. For additional
|
||||
documentation, please refer to a newer release. The
|
||||
most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12"></div>
|
||||
</div>
|
||||
|
||||
<div class="row docs-toc">
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="configuration-guides"><i class="fa fa-wrench"></i> Configuration Guides</h3>
|
||||
<a href="config-guide/">Configuration Reference</a>
|
||||
<p>Installation and configuration options for OpenStack</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="ops-and-admin-guides"><i class="fa fa-users"></i> Operations and Administration Guides</h3>
|
||||
<a href="networking-guide/">Networking Guide</a>
|
||||
<p>Deploy and manage OpenStack Networking (neutron)</p>
|
||||
</div>
|
||||
</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="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
104
www/liberty/index.html
Normal file
104
www/liberty/index.html
Normal file
@ -0,0 +1,104 @@
|
||||
{% extends "templates/indexbase.tmpl" %}
|
||||
{% block pagetitle %}{{SERIES_TITLE}}{% endblock %}
|
||||
{% block title %}{% endblock %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
{% 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>Welcome to OpenStack Documentation</h1>
|
||||
<p>
|
||||
<strong>What is OpenStack?</strong> OpenStack is a
|
||||
cloud operating system that controls large pools
|
||||
of compute, storage, and networking resources
|
||||
throughout a datacenter, all managed through a
|
||||
dashboard that gives administrators control while
|
||||
empowering their users to provision resources
|
||||
through a web interface.
|
||||
</p>
|
||||
<hr>
|
||||
<h3>What are the next steps?</h3>
|
||||
<a href="#docs-main-body" class="overview-btn docs-btn">View The Docs <i class="fa fa-arrow-circle-o-down"></i></a>
|
||||
<a href="https://www.openstack.org/software/start/" class="overview-btn docs-btn">Get OpenStack <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
<a href="https://www.openstack.org/marketplace/training" class="overview-btn docs-btn">Get Training <i class="fa fa-arrow-circle-o-right"></i></a>
|
||||
{% include 'templates/swiftype_search.tmpl' %}
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 superuser-wrapper">
|
||||
<div id="superuser-img"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mid-docs-wrapper" id="docs-main-body">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<h2>Documentation for {{SERIES_TITLE}}</h2>
|
||||
<p>
|
||||
The {{SERIES_TITLE}} release of OpenStack is no
|
||||
longer supported by the community. For more
|
||||
information about the release, refer to
|
||||
the <a href="https://releases.openstack.org/{{SERIES}}/">releases
|
||||
web site</a>.
|
||||
</p>
|
||||
<p>
|
||||
Minimal documentation is still published here to
|
||||
assist users running this version. For additional
|
||||
documentation, please refer to a newer release. The
|
||||
most recently released version is
|
||||
<a href="../{{RELEASED_SERIES}}/">{{RELEASED_SERIES|title}}</a>
|
||||
and the version in development is
|
||||
<a href="../{{SERIES_IN_DEVELOPMENT}}">{{SERIES_IN_DEVELOPMENT|title}}</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% include 'templates/dropdown_releases_and_languages.tmpl' %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12"></div>
|
||||
</div>
|
||||
|
||||
<div class="row docs-toc">
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="install-guides"><i class="fa fa-cogs"></i> Installation Tutorials and Guides</h3>
|
||||
<p>Getting started with the most commonly used OpenStack services</p>
|
||||
<a href="install-guide-obs/">Installation Tutorials and Guides for openSUSE or SUSE Linux Enterpreise</a><br/>
|
||||
<a href="install-guide-rdo/">Installation Tutorials and Guides for CentOS or Red Hat Enterprise Linux</a><br/>
|
||||
<a href="install-guide-ubuntu/">Installation Tutorials and Guides for Ubuntu Linux</a><br/>
|
||||
</div>
|
||||
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="configuration-guides"><i class="fa fa-wrench"></i> Configuration Guides</h3>
|
||||
<a href="config-guide/">Configuration Reference</a>
|
||||
<p>Installation and configuration options for OpenStack</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6 col-md-6 col-sm-6">
|
||||
<div class="docs-link-sections">
|
||||
<h3 id="ops-and-admin-guides"><i class="fa fa-users"></i> Operations and Administration Guides</h3>
|
||||
<a href="networking-guide/">Networking Guide</a>
|
||||
<p>Deploy and manage OpenStack Networking (neutron)</p>
|
||||
</div>
|
||||
</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="/contributor-guide/index.html" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Page Content -->
|
||||
{% endblock content %}
|
Loading…
x
Reference in New Issue
Block a user