summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitreview2
-rw-r--r--HACKING.rst4
-rw-r--r--MANIFEST.in2
-rw-r--r--README.rst2
-rw-r--r--oslosphinx/__init__.py2
-rw-r--r--oslosphinx/intersphinx.py2
-rw-r--r--oslosphinx/theme/openstack/static/basic.css4
-rw-r--r--setup.cfg2
-rw-r--r--test-requirements.txt2
9 files changed, 13 insertions, 9 deletions
diff --git a/.gitreview b/.gitreview
index 5311087..b1c77ee 100644
--- a/.gitreview
+++ b/.gitreview
@@ -1,4 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
-project=openstack/oslo.sphinx.git
+project=openstack/oslosphinx.git
diff --git a/HACKING.rst b/HACKING.rst
index 49f01d1..dbdbc2f 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -1,11 +1,11 @@
-oslo.sphinx Style Commandments
+oslosphinx Style Commandments
===========================
- Step 1: Read the OpenStack Style Commandments
http://docs.openstack.org/developer/hacking/
- Step 2: Read on
-oslo.sphinx Specific Commandments
+oslosphinx Specific Commandments
---------------------------------
None so far
diff --git a/MANIFEST.in b/MANIFEST.in
index 1d918af..393e4dc 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,4 @@
-recursive-include oslo *.html *.css *.js *.conf *.jpg *.gif
+recursive-include oslosphinx *.html *.css *.js *.conf *.jpg *.gif
include AUTHORS
include HACKING.rst
include ChangeLog
diff --git a/README.rst b/README.rst
index 46d6eb5..7ce7888 100644
--- a/README.rst
+++ b/README.rst
@@ -4,5 +4,5 @@ OpenStack Sphinx Extensions
Theme and extension support for Sphinx documentation from the
OpenStack project.
-To use the theme, add ``'oslo.sphinx'`` to the ``extensions`` list in
+To use the theme, add ``'oslosphinx'`` to the ``extensions`` list in
the ``conf.py`` file in your Sphinx project.
diff --git a/oslosphinx/__init__.py b/oslosphinx/__init__.py
index 0c04dda..08224b4 100644
--- a/oslosphinx/__init__.py
+++ b/oslosphinx/__init__.py
@@ -1,5 +1,3 @@
-# vim: tabstop=4 shiftwidth=4 softtabstop=4
-#
# Copyright 2013 New Dream Network, LLC (DreamHost)
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/oslosphinx/intersphinx.py b/oslosphinx/intersphinx.py
index b452c9e..d1ab95f 100644
--- a/oslosphinx/intersphinx.py
+++ b/oslosphinx/intersphinx.py
@@ -18,7 +18,7 @@
To use this mapping in a project, first add 'sphinx.ext.intersphinx' to
your extensions list in conf.py. Then::
- from oslo.sphinx import intersphinx
+ from oslosphinx import intersphinx
intersphinx_mapping = intersphinx.mapping
You'll be able to link to other project's documentation, such as:
diff --git a/oslosphinx/theme/openstack/static/basic.css b/oslosphinx/theme/openstack/static/basic.css
index d909ce3..cc289c8 100644
--- a/oslosphinx/theme/openstack/static/basic.css
+++ b/oslosphinx/theme/openstack/static/basic.css
@@ -73,6 +73,10 @@ div.sphinxsidebar input {
font-size: 1em;
}
+div.sphinxsidebar span.pre {
+ word-wrap: break-word;
+}
+
img {
border: 0;
}
diff --git a/setup.cfg b/setup.cfg
index b019dfc..b65ee52 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,6 +16,8 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.3
Topic :: Documentation
[global]
diff --git a/test-requirements.txt b/test-requirements.txt
index f0dd00b..a19a9e3 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1 +1 @@
-hacking>=0.5.6,<0.8
+hacking>=0.8.0,<0.9