remove archaic references to XML in api

Found another odd reference to XML in the api while grepping
around. This should just be removed, it's only confusing to people.

Change-Id: I7c4d9dc69fb386d937197ef466a6e96495dd8045
This commit is contained in:
Sean Dague 2015-12-14 12:39:47 -05:00
parent 44a36ba7af
commit 52a04af3bf

View File

@ -42,11 +42,7 @@ Action methods take parameters that are sucked out of the URL by mapper.connect(
Serialization
-------------
Actions return a dictionary, and wsgi.Controller serializes that to JSON or XML based on the request's content-type.
If you define a new controller, you'll need to define a ``_serialization_metadata`` attribute on the class, to tell wsgi.Controller how to convert your dictionary to XML. It needs to know the singular form of any list tag (e.g. ``<servers>`` list contains ``<server>`` tags) and which dictionary keys are to be XML attributes as opposed to subtags (e.g. ``<server id="4"/>`` instead of ``<server><id>4</id></server>``).
See `nova/api/openstack/compute/servers.py` for an example.
Actions return a dictionary, and wsgi.Controller serializes that to JSON.
Faults
------