Merge "Fix some reST field lists in docstrings"

This commit is contained in:
Jenkins
2017-06-30 20:46:05 +00:00
committed by Gerrit Code Review
+13 -13
View File
@@ -230,7 +230,7 @@ class Controller(controller.BaseController):
:param create_props: List of properties to check
:param req: The WSGI/Webob Request object
:raises: HTTPForbidden if request forbidden to create a property
:raises HTTPForbidden: if request forbidden to create a property
"""
if property_utils.is_property_protection_enabled():
for key in create_props:
@@ -270,7 +270,7 @@ class Controller(controller.BaseController):
:param orig_meta: Mapping of existing metadata about image
:param req: The WSGI/Webob Request object
:raises: HTTPForbidden if request forbidden to create a property
:raises HTTPForbidden: if request forbidden to create a property
"""
if property_utils.is_property_protection_enabled():
for key in update_props:
@@ -302,7 +302,7 @@ class Controller(controller.BaseController):
:param orig_meta: Mapping of existing metadata about image
:param req: The WSGI/Webob Request object
:raises: HTTPForbidden if request forbidden to create a property
:raises HTTPForbidden: if request forbidden to create a property
"""
if property_utils.is_property_protection_enabled():
for key in delete_props:
@@ -453,7 +453,7 @@ class Controller(controller.BaseController):
:param id: The opaque image identifier
:returns: similar to 'show' method but without image_data
:raises: HTTPNotFound if image metadata is not available to user
:raises HTTPNotFound: if image metadata is not available to user
"""
self._enforce(req, 'get_image')
image_meta = self.get_image_meta_or_404(req, id)
@@ -528,7 +528,7 @@ class Controller(controller.BaseController):
:param req: The WSGI/Webob Request object
:param id: The opaque image identifier
:raises: HTTPNotFound if image is not available to user
:raises HTTPNotFound: if image is not available to user
"""
self._enforce(req, 'get_image')
@@ -570,8 +570,8 @@ class Controller(controller.BaseController):
:param id: The opaque image identifier
:param image_meta: The image metadata
:raises: HTTPConflict if image already exists
:raises: HTTPBadRequest if image metadata is not valid
:raises HTTPConflict: if image already exists
:raises HTTPBadRequest: if image metadata is not valid
"""
location = self._external_source(image_meta, req)
scheme = image_meta.get('store')
@@ -641,7 +641,7 @@ class Controller(controller.BaseController):
:param req: The WSGI/Webob Request object
:param image_meta: Mapping of metadata about image
:raises: HTTPConflict if image already exists
:raises HTTPConflict: if image already exists
:returns: The location where the image was stored
"""
@@ -905,7 +905,7 @@ class Controller(controller.BaseController):
:param image_meta: Mapping of metadata about image
:param image_data: Actual image data that is to be stored
:raises: HTTPBadRequest if x-image-meta-location is missing
:raises HTTPBadRequest: if x-image-meta-location is missing
and the request body is not application/octet-stream
image data.
"""
@@ -1111,9 +1111,9 @@ class Controller(controller.BaseController):
:param req: The WSGI/Webob Request object
:param id: The opaque image identifier
:raises: HttpBadRequest if image registry is invalid
:raises: HttpNotFound if image or any chunk is not available
:raises: HttpUnauthorized if image or any chunk is not
:raises HttpBadRequest: if image registry is invalid
:raises HttpNotFound: if image or any chunk is not available
:raises HttpUnauthorized: if image or any chunk is not
deleteable by the requesting user
"""
self._enforce(req, 'delete_image')
@@ -1202,7 +1202,7 @@ class Controller(controller.BaseController):
:param request: The WSGI/Webob Request object
:param scheme: The backend store scheme
:raises: HTTPBadRequest if store does not exist
:raises HTTPBadRequest: if store does not exist
"""
try:
return store.get_store_from_scheme(scheme)