Tools used by OpenStack Documentation
Go to file
KATO Tomoyuki 4403ef6367 Address pep8 warning at doc-tools-check-languages
Change-Id: Ifa6ae3657af2c55622b1d292b6451386403857b9
2016-01-17 22:24:27 +09:00
autogenerate_config_docs Merge "Move the config items in the manuals repository" 2016-01-11 09:33:35 +00:00
bin Address pep8 warning at doc-tools-check-languages 2016-01-17 22:24:27 +09:00
cleanup Use yaml.safe_load() instead of yaml.load() 2015-02-24 14:05:19 +01:00
doc/source [openstack-doc-tools] fix one typo 2015-08-10 15:50:37 +09:00
os_doc_tools Mark Block Storage API v1 as deprecate 2015-12-16 22:13:51 +09:00
releasenotes Set the bug project to i18n for the translated docs 2015-12-13 17:22:07 +09:00
sitemap [sitemap] set higher priority for files of the current release 2016-01-13 11:40:52 +01:00
.gitignore Add reno for release-notes 2015-11-07 17:10:06 +01:00
.gitreview Add .gitreview 2013-12-04 20:44:41 +01:00
.mailmap Add .mailmap 2014-01-07 08:39:30 +01:00
CONTRIBUTING.rst Fix up README to work with the release tools 2015-06-19 13:23:52 +00:00
HACKING.rst Add HACKING.rst 2014-01-02 12:13:33 +01:00
LICENSE Add LICENSE and README.rst 2013-12-10 15:45:37 +01:00
MANIFEST.in Move release notes into a separate file 2014-07-28 22:04:02 +02:00
README.rst Fix up README to work with the release tools 2015-06-19 13:23:52 +00:00
RELEASE_NOTES.rst Update RELEASE Notes 2015-11-15 09:56:56 +01:00
doc-test.conf.sample Allow setting of publish directory 2014-02-13 14:07:53 -06:00
openstack-common.conf Remove venv tools 2015-04-29 09:31:58 +02:00
pylintrc Add pylint target for testing 2014-05-19 18:30:07 +02:00
requirements.txt Updated from global requirements 2016-01-16 03:30:41 +00:00
setup.cfg Improve index page layout 2015-11-21 19:57:10 +01:00
setup.py Updated from global requirements 2015-09-17 12:15:35 +00:00
test-requirements.txt Updated from global requirements 2016-01-16 03:30:41 +00:00
tox.ini Merge "tox: remove the pypy env" 2016-01-09 08:23:45 +00:00

README.rst

OpenStack Doc Tools

This repository contains tools used by the OpenStack Documentation project.

For more details, see the OpenStack Documentation wiki page.

Prerequisites

Apache Maven must be installed to build the documentation.

To install Maven 3 for Ubuntu 12.04 and later, and Debian wheezy and later:

apt-get install maven

On Fedora:

yum install maven

You need to have Python 2.7 installed for using the tools.

This package needs a few external dependencies including lxml. If you do not have lxml installed, you can either install python-lxml or have it installed automatically and build from sources. To build lxml from sources, you need a C compiler and the xml and xslt development packages installed.

To install python-lxml, execute the following based on your distribution.

On Fedora:

yum install python-lxml

On openSUSE:

zypper in python-lxml

On Ubuntu:

apt-get install python-lxml

For building from source, install the dependencies of lxml.

On Fedora:

yum install python-devel libxml2-devel libxslt-devel

On openSUSE:

zypper in libxslt-devel

On Ubuntu:

apt-get install libxml2-dev libxslt-dev

Updating RNG schema files

The repository contains in the directory os_doc_tools/resources a local copy of some RNG schema files so that they do not need to be downloaded each time for validation of XML and WADL files.

Please see the README.txt in the directory for details on where these files come from.

Publishing of books

If you run the openstack-doc-test --check-build, it will copy all the books to the directory publish-docs in the top-level directory of your repository.

By default, it outputs a directory with the same name as the directory where the pom.xml file lives in, such as admin-guide-cloud. You can also check the output of the build job for the name.

Some books need special treatment and there are three options you can set in the file doc-test.conf:

  • book - the name of a book that needs special treatment
  • target_dir - the path of subdirectory starting at target that is the root for publishing
  • publish_dir - a new name to publish a book under

As an example, to publish the compute-api version 2 in the directory publish-docs/api/openstack-compute/2, use:

book = openstack-compute-api-2
target_dir = target/docbkx/webhelp/api/openstack-compute/2
publish_dir = api/openstack-compute/2

Note that these options can be specified multiple times and should always be used this way. You do not need to set publish_dir but if you set it, you need to use it every time.

Also note that these are optional settings, the logic in the tool is sufficient for many of the books.