remove guides menu item from homepage

Change-Id: I8256258f3d14c757893873229381aea630552463
This commit is contained in:
Jim Phillips 2015-05-22 23:12:41 -04:00 committed by Irina Povolotskaya
parent e24d6b7a81
commit 3c9a3a7b04
4 changed files with 184 additions and 840 deletions

View File

@ -41,6 +41,45 @@ function generateCopyButton(url) {
return '<a data-toggle="tooltip" data-placement="bottom"class="copyMe" data-clipboard-text="' + url + '" data-original-title="Copy permalink to clipboard"><i class="fa fa-clipboard"></i></a>';
}
function populateGuides(guides) {
$(guides).find('.section').each(function(i){
var index = i + 1;
var el = $(this).find('.reference');
var href = $(el).attr('href');
var heading = $(el).text();
var content = $(this).find('p').html();
$('#guides').append('<div class="col-sm-3"><a href="' + href + '"><div class="panel panel-default"><div class="panel-body"><h4>' + heading + '</h4><p>' + content + '</p></div></div></a></div>');
});
var columns = $('#guides .col-sm-3');
for(var i = 0; i < columns.length; i+=4) {
columns.slice(i, i+4).wrapAll("<div class='row'></div>");
}
}
function populatePdfs(pdfs){
$(pdfs).each(function(){
var href = $(this).attr('href');
var link = $(this).text();
$('#pdfs').append('<div class="col-lg-6"><a class="btn btn-default red btn-block" href="' + href + '"><i class="fa fa-file-pdf-o"></i> ' + link + '</a></div>');
});
var columns = $('#pdfs .col-lg-6');
for(var i = 0; i < columns.length; i+=2) {
columns.slice(i, i+2).wrapAll("<div class='row'></div>");
}
}
function populateDownload(download){
var el = $(download).find('h1 > .reference');
var href = $(el).attr('href');
var link = $(el).text();
var content = $(download).clone().find('h1').remove().end().find('.note').addClass('alert alert-info').end().html();
$('#download_content').append('<a href="' + href + '" class="btn btn-danger btn-lg btn-block" id="download_openstack">' + link + '</a>' + content);
}
$(document).ready(function () {
var url = window.location.pathname;
@ -53,23 +92,30 @@ $(document).ready(function () {
$.get( "index_content.html", function( data ) {
var homeTitle = $(data).find('.home-title').html();
var home = $(data).find('.what-is-mirantis-openstack').html();
var planningGuide = $(data).find('.planning-guide').html();
var userGuide = $(data).find('.user-guide').html();
var operationsGuide = $(data).find('.operations-guide').html();
var monitoringGuide = $(data).find('.monitoring-guide').html();
var virtualbox = $(data).find('.virtualbox').html();
var pluginDev = $(data).find('.plugin-dev').html();
var styleGuide = $(data).find('.style-guide').html();
var guides = $(data).find('#guides');
populateGuides(guides);
var pdfs = $(data).find('#pdf .reference');
populatePdfs(pdfs);
var download = $(data).find('#download-mirantis-openstack');
populateDownload(download);
$('#home').html(home);
$('#main').html(homeTitle);
$('.planning-guide').html(planningGuide);
$('.user-guide').html(userGuide);
$('.operations-guide').html(operationsGuide);
$('.monitoring-guide').html(monitoringGuide);
$('.virtualbox').html(virtualbox);
$('.plugin-dev').html(pluginDev);
$('.style-guide').html(styleGuide);
});
$.get("eula.html", function(data) {
var fuel_license = $(data).find('#fuel-license').html();
$('#fuel-license').html($(fuel_license).find('pre'));
});
$.get("third-party-licenses.html", function(data){
var third_party = $(data).find(".section > .section");
$(third_party).each(function(i,v){
var el = $(v).find('.reference');
var href = $(el).attr('href');
var heading = $(el).text();
$('#third-party-licenses').append('<a class="btn btn-default red btn-block" href="' + href + '"><i class="fa fa-file-pdf-o"></i> ' + heading + '</a>');
});
});
}

View File

@ -55,513 +55,7 @@
<div class="collapse navbar-collapse nav-collapse">
<ul class="nav navbar-nav">
<li class="dropdown globaltoc-container">
<a role="button"
id="dLabelGlobalToc"
data-toggle="dropdown"
data-target="#"
href="contents.html">Guide <b class="caret"></b></a>
<ul class="dropdown-menu globaltoc"
role="menu"
aria-labelledby="dLabelGlobalToc">
<ul>
<li class="toctree-l1"><a class="reference internal" href="planning-guide.html">Planning
Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#introduction-to-mirantis-openstack-and-fuel">Introduction
to Mirantis OpenStack and Fuel</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#system-requirements">System
Requirements</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#planning-summary">Planning
Summary</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#choose-network-topology">Choose
Network Topology</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#linux-distribution-for-nodes">Linux
Distribution for Nodes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#choosing-the-storage-model">Choosing
the Storage Model</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#nodes-and-roles">Nodes and
Roles</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#plan-monitoring-facilities">Plan
Monitoring Facilities</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#planning-a-sahara-deployment">Planning
a Sahara Deployment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#preparing-for-vsphere-integration">Preparing
for vSphere Integration</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#preparing-to-run-fuel-on-vsphere">Preparing
to run Fuel on vSphere</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#calculate-hardware-requirements">Calculate
hardware requirements</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#example-of-hardware-requirements-calculation">Example
of Hardware Requirements Calculation</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#reference-configuration-of-hardware-switches">Reference
configuration of hardware switches</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#ha-testing-summary">HA testing
summary</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#example-1-ha-nova-network-flatdhcp-manager">Example
1: HA + Nova-network FlatDHCP manager</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#example-2-ha-neutron-with-gre">Example
2: HA + Neutron with GRE</a></li>
<li class="toctree-l2"><a class="reference internal"
href="planning-guide.html#example-3-ha-neutron-with-vlan-sr-iov-iser">Example
3: HA + Neutron with VLAN + SR-IOV &amp; iSER</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="user-guide.html">User Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#introduction-to-the-user-guide">Introduction
to the User Guide</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#confirm-hardware">Confirm
hardware</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#download-and-install-fuel">Download
and Install Fuel</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#changing-pxe-network-parameters-during-installation">Changing
PXE Network Parameters During Installation</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#boot-the-fuel-master-node">Boot the
Fuel Master Node</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#boot-the-node-servers">Boot the node
servers</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#install-fuel-plugins">Install Fuel
plugins</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#create-a-new-openstack-environment">Create
a new OpenStack environment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#configure-your-environment">Configure
your Environment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#deploy-changes">Deploy Changes</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#next-steps">Next Steps</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#post-deployment-check">Post-Deployment
Check</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#installing-sahara">Installing
Sahara</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#upgrading-and-updating-from-earlier-releases">Upgrading
and Updating from Earlier Releases</a></li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#using-fuel-cli">Using Fuel CLI</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="user-guide.html#vmware-integration-notes">VMware
integration notes</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="operations.html">Operations
Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#introduction">Introduction</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#accessing-the-shell-on-the-nodes">Accessing
the shell on the nodes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#how-to-exclude-some-drives-from-raid-1-array">How
To: Exclude some drives from RAID-1 array</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#how-to-modify-kernel-parameters">How
To: Modify Kernel Parameters</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-create-an-xfs-disk-partition">HowTo:
Create an XFS disk partition</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-enable-disable-galera-cluster-autorebuild-mechanism">HowTo:
Enable/Disable Galera Cluster Autorebuild Mechanism</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-backport-galera-pacemaker-ocf-script">HowTo:
Backport Galera Pacemaker OCF script</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-backport-memcached-backend-fixes">HowTo:
Backport Memcached backend fixes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-backport-rabbitmq-pacemaker-ocf-script">HowTo:
Backport RabbitMQ Pacemaker OCF script</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-manage-openstack-services">HowTo:
Manage OpenStack services</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#adding-redeploying-and-replacing-nodes">Adding,
Redeploying, and Replacing Nodes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#how-to-safely-remove-a-ceph-osd-node">How
To: Safely remove a Ceph OSD node</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-shut-down-the-whole-cluster">HowTo:
Shut down the whole cluster</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#creating-and-configuring-ml2-drivers-for-neutron">Creating
and Configuring ML2 Drivers for Neutron</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#configuring-multiple-cluster-networks">Configuring
Multiple Cluster Networks</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#using-yaml-configuration-files">Using
YAML configuration files</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#docker-containers-and-dockerctl">Docker
Containers and Dockerctl</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#enable-experimental-features">Enable
Experimental Features</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#fuel-access-control">Fuel Access
Control</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#sahara-deployment">Sahara
Deployment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#murano-deployment-notes">Murano
Deployment Notes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#running-vcenter">Running vCenter</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#performance-notes">Performance
Notes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#howto-backup-and-restore-fuel-master">HowTo:
Backup and restore Fuel Master</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#how-slave-nodes-choose-the-interface-to-use-for-pxe-booting">How
slave nodes choose the interface to use for PXE booting</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#running-ceilometer">Running
Ceilometer</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#heat-deployment-notes">Heat
Deployment Notes</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#details-of-health-checks">Details of
Health Checks</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#network-issues">Network Issues</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#troubleshooting">Troubleshooting</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#applying-a-patch">Applying a
Patch</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#ha-testing-scenarios">HA testing
scenarios</a></li>
<li class="toctree-l2"><a class="reference internal"
href="operations.html#openstack-database-backup-and-restore-with-percona-xtrabackup">OpenStack
Database Backup and Restore with Percona XtraBackup</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="monitoring-guide.html">Monitoring
Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#introduction">Introduction</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#assumptions">Assumptions</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#intended-audience">Intended
Audience</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#document-scope">Document
Scope</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#common-monitoring-practices">Common
Monitoring Practices</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#monitoring-activities-details">Monitoring
Activities Details</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#storage-clusters">Storage
clusters</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#hardware-and-system-monitoring">Hardware
and System Monitoring</a></li>
<li class="toctree-l2"><a class="reference internal"
href="monitoring-guide.html#appendix">Appendix</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="virtualbox.html">Running Mirantis
OpenStack on VirtualBox</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#introduction">Introduction</a></li>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#installing-using-automated-scripts">Installing
using automated scripts</a></li>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#manual-installation">Manual
Installation</a></li>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#networking">Networking</a></li>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#deployment-configuration-to-access-openstack-api-and-vms-from-host-machine">Deployment
configuration to access OpenStack API and VMs from host machine</a></li>
<li class="toctree-l2"><a class="reference internal"
href="virtualbox.html#additional-notes">Additional
Notes</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="reference-architecture.html">Reference
Architectures</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#openstack-environment-architecture">OpenStack
Environment Architecture</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#multi-node-with-ha-deployment">Multi-node
with HA Deployment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#details-of-multi-node-with-ha-deployment">Details
of Multi-node with HA Deployment</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#ha-logical-setup">HA
Logical Setup</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#how-ha-with-pacemaker-and-corosync-works">How
HA with Pacemaker and Corosync Works</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#mysql-and-galera">MySQL
and Galera</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#vmware-vsphere-integration">VMware
vSphere Integration</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#ceph-monitors">Ceph
Monitors</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#network-architecture">Network
Architecture</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#neutron-network-topologies">Neutron
Network Topologies</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#nova-network-topologies">Nova
Network Topologies</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#advanced-network-configuration-using-open-vswitch">Advanced
Network Configuration using Open VSwitch</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#nics-aggregation">NICs
Aggregation</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#zabbix-implementation">Zabbix
implementation</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#how-fuel-upgrade-works">How
Fuel upgrade works</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#how-the-operating-system-role-is-provisioned">How
the Operating System Role is provisioned</a></li>
<li class="toctree-l2"><a class="reference internal"
href="reference-architecture.html#the-fuel-master-node-containers-structure">The
Fuel Master node containers structure</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="terminology.html">Terminology
Reference</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="terminology.html#terminology-main">Terminology
Reference</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugin-dev.html">Fuel Plugin
Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal" href="plugin-dev.html#links">Fuel
Plugin Guide</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="file-ref.html">File Format
Reference</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="file-ref.html#fuel-file-reference-pages">Fuel File
Reference Pages</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="release-notes.html">Release
Notes</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#release-notes-for-mirantis-openstack-6-1">Release
Notes for Mirantis OpenStack 6.1</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#what-s-new-in-mirantis-openstack-6-1">What's
New in Mirantis OpenStack 6.1</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#other-enhancements">Other
Enhancements</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#major-component-versions">Major
Component Versions</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#fuel-installation-and-deployment-issues">Fuel
Installation and Deployment Issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#hardware-support-issues">Hardware
support issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#networking-issues">Networking
issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#openstack-deployment-issues">OpenStack
Deployment Issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#update-and-upgrade-issues">Update
and Upgrade Issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#test-and-verification-issues">Test
and Verification Issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#storage-technologies-issues">Storage
technologies Issues</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#issues-in-vmware-technologies">Issues
in VMware technologies</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#issues-in-other-components">Issues
in other components</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#how-to-obtain-the-product">How to
Obtain the Product</a></li>
<li class="toctree-l2"><a class="reference internal"
href="release-notes.html#contacting-support">Contacting
Support</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="style-guide.html">Style Guide</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#introduction">Introduction</a></li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#terminology-lists">Terminology
lists</a></li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#writing-syntax">Writing syntax</a>
</li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#coding-and-formatting-practices">Coding
and formatting practices</a></li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#creating-documentation-for-fuel-plugins">Creating
documentation for Fuel Plugins</a></li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#git-and-gerrit-practices">Git and
Gerrit practices</a></li>
<li class="toctree-l2"><a class="reference internal"
href="style-guide.html#reviewer-s-checklist">Reviewer's
Checklist</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="eula.html">Fuel License</a></li>
<li class="toctree-l1"><a class="reference internal" href="third-party-licenses.html">Third-Party
Components Licenses</a>
<ul>
<li class="toctree-l2"><a class="reference internal"
href="third-party-licenses.html#deb-packages-licenses">DEB
Packages Licenses</a></li>
<li class="toctree-l2"><a class="reference internal"
href="third-party-licenses.html#rpm-packages-licenses">RPM
Packages Licenses</a></li>
<li class="toctree-l2"><a class="reference internal"
href="third-party-licenses.html#javascript-libraries-licenses">JavaScript
Libraries Licenses</a></li>
</ul>
</li>
</ul>
</ul>
</li>
<li class="dropdown">
<a role="button"
id="dLabelLocalToc"
data-toggle="dropdown"
data-target="#"
href="#">Section <b class="caret"></b></a>
<ul class="dropdown-menu localtoc"
role="menu"
aria-labelledby="dLabelLocalToc">
<ul>
<li><a class="reference internal" href="#">Welcome to Mirantis OpenStack Documentation</a>
<ul>
<li><a class="reference internal" href="#planning-guide-pdf"><code
class="docutils literal"><span class="pre">planning-guide</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#user-guide-pdf"><code
class="docutils literal"><span class="pre">user-guide</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#operations-guide-pdf"><code
class="docutils literal"><span class="pre">operations-guide</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#monitoring-guide-pdf"><code
class="docutils literal"><span class="pre">monitoring-guide</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#virtualbox-pdf"><code
class="docutils literal"><span class="pre">virtualbox</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#ref-arch-pdf"><code
class="docutils literal"><span class="pre">ref-arch</span></code> (pdf)</a>
</li>
<li><a class="reference internal" href="#plugin-dev-pdf"><code
class="docutils literal"><span class="pre">plugin-dev</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#terminology-ref-pdf"><code
class="docutils literal"><span class="pre">terminology-ref</span></code>
(pdf)</a></li>
<li><a class="reference internal" href="#file-ref-pdf"><code
class="docutils literal"><span class="pre">file-ref</span></code> (pdf)</a>
</li>
<li><a class="reference internal" href="#style-guide"><code
class="docutils literal"><span class="pre">style-guide</span></code></a>
</li>
<li><a class="reference internal" href="#release-notes-pdf"><code
class="docutils literal"><span class="pre">release-notes</span></code> (pdf)</a>
</li>
<li><a class="reference internal" href="#download-mirantis-openstack">Download
Mirantis OpenStack</a></li>
<li><a class="reference internal" href="#demos-and-tutorials">Demos and
tutorials</a></li>
</ul>
</li>
</ul>
</ul>
</li>
<li class="hidden-sm"></li>
</ul>
@ -614,280 +108,19 @@
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="guides">
<div class="row">
<div class="col-sm-3">
<a href="planning-guide.html#planning-guide">
<div class="panel panel-default">
<div class="panel-body planning-guide">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
<div class="col-sm-3">
<a href="user-guide.html#user-guide">
<div class="panel panel-default">
<div class="panel-body user-guide">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
<div class="col-sm-3">
<a href="operations.html#operations-guide">
<div class="panel panel-default">
<div class="panel-body operations-guide">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
<div class="col-sm-3">
<a href="monitoring-guide.html#monitoring-guide">
<div class="panel panel-default">
<div class="panel-body monitoring-guide">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<a href="virtualbox.html#virtualbox">
<div class="panel panel-default">
<div class="panel-body virtualbox">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
<div class="col-sm-3">
<a href="plugin-dev.html#plugin-dev">
<div class="panel panel-default">
<div class="panel-body plugin-dev">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
<div class="col-sm-3">
<a href="style-guide.html#style-guide">
<div class="panel panel-default">
<div class="panel-body style-guide">
<!-- placeholder for ajax content -->
</div>
</div>
</a>
</div>
</div>
<!-- placeholder for guides -->
</div>
<div role="tabpanel" class="tab-pane fade" id="license">
<h3>Fuel License</h3>
<div class="col-sm-8">
<h3 class="no-margin">Fuel License</h3>
<div class="highlight-none">
<div class="highlight"><pre> Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</pre>
<div class="highlight-none">
<div class="highlight" id="fuel-license"></div>
</div>
</div>
<div class="col-sm-4">
<h4>Third-Party Components Licenses</h4>
<div id="third-party-licenses">
</div>
</div>
</div>
@ -924,52 +157,14 @@
</div>
<div role="tabpanel" class="tab-pane fade" id="downloads">
<div class="col-sm-4">
<div class="panel panel-default panel-sidebar">
<!-- Default panel contents -->
<div class="panel-heading">Download Mirantis OpenStack Guides</div>
<div id="download_content">
<div class="list-group">
<a href="pdf/Mirantis-OpenStack-6.0-PlanningGuide.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Planning Guide</a>
<a href="pdf/Mirantis-OpenStack-6.0-UserGuide.pdf" class="list-group-item"><i
class="fa fa-file-pdf-o"></i> User Guide</a>
<a href="pdf/Mirantis-OpenStack-6.0-OperationsGuide.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Operations Guide</a>
<a href="pdf/Mirantis-OpenStack-6.0-MonitoringGuide.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Monitoring Guide</a>
<a href="pdf/Mirantis-OpenStack-6.0-Running-Mirantis-OpenStack-on-VirtualBox.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Running Mirantis
OpenStack on VirtualBox</a>
<a href="pdf/Mirantis-OpenStack-6.0-ReferenceArchitecture.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Reference
Architectures</a>
<a href="pdf/Mirantis-OpenStack-6.0-FuelPluginGuide.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Fuel Plugin
Guide</a>
<a href="pdf/Mirantis-OpenStack-6.0-Terminology-Reference.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> Terminology
Reference</a>
<a href="pdf/Mirantis-OpenStack-6.0-File-Format-Reference.pdf"
class="list-group-item"><i class="fa fa-file-pdf-o"></i> File Format
Reference</a>
<a href="pdf/Mirantis-OpenStack-6.0-RelNotes.pdf" class="list-group-item"><i
class="fa fa-file-pdf-o"></i> Release Notes</a>
</div>
</div>
</div>
<div class="col-sm-8">
<h3>Download Mirantis OpenStack</h3>
<p>You can download the Mirantis OpenStack ISO, IMG, and VirtualBox scripts at <a
class="reference external" href="http://software.mirantis.com">http://software.mirantis.com</a>
</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">You must sign in to download Mirantis OpenStack.
If you do not have an account, sign up for a free account now.</p>
</div>
<div id="pdfs">
<h3>Download Mirantis OpenStack Guides</h3>
</div>
</div>
</div>
</div>

View File

@ -26,6 +26,8 @@ h4, h5 {
font-weight: bold;
}
h3.no-margin { margin-top: 0; }
a.toc-backref {
color: #41454D;
text-decoration: none;
@ -406,12 +408,6 @@ h1#main {
min-height: 176px;
}
.panel-body:not(.panel-sidebar) > p:first-of-type {
font-size: 16px;
font-weight: bold;
font-family: 'PT Sans Caption', 'PT Sans', arial, sans-serif;
}
.panel p {
font-size: 14px;
}
@ -438,6 +434,12 @@ ul#menuNav {
margin-bottom: 25px;
}
a.list-group-item:focus, a.list-group-item:hover {
color: #FFF;
text-decoration: none;
background-color: #D3301A;
}
#preview-area {
width: 60px;
height: 60px;
@ -453,6 +455,35 @@ ul#menuNav {
user-select: none;
}
.btn-default.red {
margin-bottom: 15px;
text-align: left;
}
.btn-default.red.active, .btn-default.red.focus, .btn-default.red:active, .btn-default.red:focus, .btn-default.red:hover {
color: #fff;
background-color: #D3301A;
border-color: #AD2816;
}
i.fa-file-pdf-o {
color: #D3301A;
}
.btn-default.red:hover i.fa-file-pdf-o {
color: #fff;
}
.btn-danger {
background-color: #D3301A;
border-color: #AD2816;
margin-bottom: 15px;
}
#pdfs h3 {
margin-top: 0;
}
.spinner {
width: 30px;
height: 30px;

View File

@ -36,6 +36,7 @@
Click on "pdf" in the list below
to get a PDF file of that document.
.. container:: planning-guide
Planning Guide
@ -112,10 +113,81 @@
fixed issues, and known limitations in Mirantis OpenStack |version|.
PDF
~~~
`Planning Guide PDF <pdf/Mirantis-OpenStack-6.0-PlanningGuide.pdf>`_
`User Guide PDF <pdf/Mirantis-OpenStack-6.0-UserGuide.pdf>`_
`Operations Guide PDF <pdf/Mirantis-OpenStack-6.0-OperationsGuide.pdf>`_
`Monitoring Guide PDF <pdf/Mirantis-OpenStack-6.0-MonitoringGuide.pdf>`_
`Running Mirantis OpenStack on VirtualBox PDF <pdf/Mirantis-OpenStack-6.0-Running-Mirantis-OpenStack-on-VirtualBox.pdf>`_
`Reference Architectures PDF <pdf/Mirantis-OpenStack-6.0-ReferenceArchitecture.pdf>`_
`Fuel Plugin Guide PDF <pdf/Mirantis-OpenStack-6.0-FuelPluginGuide.pdf>`_
`Terminology Reference PDF <pdf/Mirantis-OpenStack-6.0-Terminology-Reference.pdf>`_
`File Format Reference PDF <pdf/Mirantis-OpenStack-6.0-File-Format-Reference.pdf>`_
`Release Notes PDF <pdf/Mirantis-OpenStack-6.0-RelNotes.pdf>`_
Guides
~~~~~~
`Planning Guide <planning-guide.html#planning-guide>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Explains how to plan Mirantis OpenStack deployment before installing
Fuel.
`User Guide <user-guide.html#user-guide>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Describes how to deploy and use Mirantis OpenStack environments
with Fuel.
`Operations Guide <operations.html#operations-guide>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Contains instructions on how to use and manage
your Mirantis OpenStack environment.
`Monitoring Guide <monitoring-guide.html#monitoring-guide>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Provides general concept on how to monitor OpenStack.
`Running Mirantis OpenStack on VirtualBox <virtualbox.html#virtualbox>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Explains how to run Mirantis OpenStack on VirtualBox
for demonstration and evaluation purposes.
`Reference Architecture <reference-architecture.html#ref-arch>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Provides the deep dive into the structure of the Mirantis OpenStack environment,
network considerations, deployment options and architectures.
`Fuel Plugin Guide <plugin-dev.html#plugin-dev>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Explains how to develop and certify your own plugin for Fuel.
`Terminology Reference <terminology.html#terminology-ref>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Explains OpenStack terminology and technology
with references to other documentation and other useful information.
`File Format Reference <file-ref.html#file-ref>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Provides information on how to use Fuel configuration files.
`Style Guide <style-guide.html#style-guide>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Contains style guidelines and instructions on
how to write documentation for Mirantis OpenStack.
`Release Notes <release-notes.html#release-notes>`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Provide general information about new features,
fixed issues, and known limitations in Mirantis OpenStack |version|.
`Download Mirantis OpenStack <http://software.mirantis.com>`__
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can download the Mirantis OpenStack ISO, IMG, and VirtualBox scripts at http://software.mirantis.com
You can download the Mirantis OpenStack ISO, IMG, and VirtualBox scripts
.. note:: You must sign in to download Mirantis OpenStack.
If you do not have an account, sign up for a free account now.