Ryan Selden c4673437ba Removed minimized files
* Removed the minimized copies of bootstrap 3.2.0,
replacing with the latest, uncompressed version

* Removed minimized jquery 1.11.3 - replaced with not minimized 1.12.4

* Updated references in css.html and script_footer.html

* Added font-awesome files to the static directory as to not rely on cdn

* Added missing bootstrap font files

Change-Id: Ie0bf5b1d32e281ee70d9940a7f9ec0bb9d6e9b54
Closes-bug: #1502806
2016-11-24 01:24:09 +00:00
2016-10-06 12:05:28 -04:00
2016-08-22 10:27:45 -05:00
2015-02-03 12:28:09 -05:00
2016-09-01 20:56:42 +02:00
2016-07-01 16:59:22 +00:00
2015-12-23 00:36:03 +00:00
2016-09-02 17:15:54 +00:00

OpenStack docs.openstack.org Sphinx Theme

Theme and extension support for Sphinx documentation that is published to docs.openstack.org and developer.openstack.org.

Intended for use by OpenStack projects governed by the Technical Committee.

Using the Theme

Prior to using this theme, ensure your project can use the OpenStack brand by referring to the brand guidelines at http://www.openstack.org/brand.

Update the requirements list for your project to include openstackdocstheme (usually in test-requirements.txt).

If your project previously used the oslosphinx theme (without modifying the header navigation), remove oslosphinx from your requirements list, and then in your conf.py you can remove the import statement and extension listing for oslosphinx.

Some of the settings below are included in the file generated by Sphinx when you initialize a project, so they may already have values that need to be changed.

Then modify your Sphinx settings in conf.py to include:

import openstackdocstheme

html_theme = 'openstackdocs'
html_theme_path = [openstackdocstheme.get_html_theme_path()]

Also, you must include these variables so that the "Log a bug" link sends metadata for the project where the docs reside:

# We ask git for the SHA checksum
# The git SHA checksum is used by "log-a-bug"
git_cmd = ["/usr/bin/git", "rev-parse", "HEAD"]
gitsha = subprocess.Popen(
    git_cmd, stdout=subprocess.PIPE).communicate()[0].strip('\n')
# tag that reported bugs will be tagged with
bug_tag = "your-chosen-tag"
# source tree
pwd = os.getcwd()
# html_context allows us to pass arbitrary values into the html template
html_context = {"pwd": pwd, "gitsha": gitsha}
# Must set this variable to include year, month, day, hours, and minutes.
html_last_updated_fmt = '%Y-%m-%d %H:%M'
Description
Sphinx theme for RST-sourced documentation published to docs.openstack.org
Readme 9 MiB
Languages
Python 32.2%
HTML 30.3%
CSS 16.9%
Shell 7.2%
Makefile 5.4%
Other 8%