8d43c3fba1
The scheduler hints and disk config extensions were not using proper prefixes when deserializing xml. This patch modifes them to deserialize properly. It leaves the old deserialization in place as well so anyone using the broken implementation will continue to work. It also updates the api samples to use the new format. Note that the proper fix required changing the alias for the scheduler hints extension, since the alias is used for xml, so the samples had to be moved. Finally it fixes an issue with deserialization, allowing it to support multiple hints with the same name. Part of bug 1050997 Change-Id: I9969582d65d44de25388f07b6d2013fb7d093fb2
OpenStack Nova Documentation README
Included documents:
- developer reference guide(devref)
- man pages
Building the docs
From the root nova director:
python setup.py build_sphinx
Building just the man pages
from the root nova director:
python setup.py build_sphinx -b man
Installing the man pages
After building the man pages, they can be found in
doc/build/man/
. You can install the man page onto your
system by following the following steps:
- Example for
nova-manage
:: -
# mkdir /usr/local/man/man1 # install -g 0 -o 0 -m 0644 doc/build/man/nova-manage.1 /usr/local/man/man1/nova-manage.1 # gzip /usr/local/man/man1/nova-manage.1 # man nova-manage