5303209b73
Removes V3 API images and image_metadata extensions as the same functionality can be accessed directly through glance. Also removes the associated testcases. There is a discussion about the decision here: http://lists.openstack.org/pipermail/openstack-dev/2013-August/012958.html Fixes the image bookmark links in server information requests so they point to glance Partially implements blueprint nova-v3-api Change-Id: Id32be0c0794b0f4dd220a928345ddf0133e9ffca
OpenStack Nova Documentation README =================================== Included documents: - developer reference guide(devref) - man pages Building the docs ----------------- From the root nova directory:: python setup.py build_sphinx Building just the man pages --------------------------- from the root nova directory:: 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-scheduler``:: mkdir /usr/local/man/man1 install -g 0 -o 0 -m 0644 doc/build/man/nova-scheduler.1 /usr/local/man/man1/nova-scheduler.1 gzip /usr/local/man/man1/nova-scheduler.1 man nova-scheduler