diff --git a/magnum/api/controllers/v1.py b/magnum/api/controllers/v1.py index c65c84d7ad..d229001f28 100644 --- a/magnum/api/controllers/v1.py +++ b/magnum/api/controllers/v1.py @@ -181,7 +181,7 @@ class ContainerController(rest.RestController): @wsme_pecan.wsexpose(Container, wtypes.text) def get_one(self, container_id): - # TODO(dims): Returns all the containers + # TODO(dims): Returns specified container pecan.response.status = 200 return @@ -193,6 +193,6 @@ class ContainerController(rest.RestController): @wsme_pecan.wsexpose(None, status_code=204) def delete(self): - # TODO(dims): DELETE the containers + # TODO(dims): DELETE this container pecan.response.status = 204 return diff --git a/magnum/api/templates/index.html b/magnum/api/templates/index.html index f17c3862ee..a7b143a76e 100644 --- a/magnum/api/templates/index.html +++ b/magnum/api/templates/index.html @@ -7,28 +7,11 @@ ## now define the body of the template
-

+

-

This is a sample Pecan project.

- -

- Instructions for getting started can be found online at pecanpy.org -

- -

- ...or you can search the documentation here: -

- -
-
- - -
- Enter search terms or a module, class or function name. -
+

This is the OpenStack Containers project named Magnum

diff --git a/magnum/api/templates/layout.html b/magnum/api/templates/layout.html index 409085919f..26129fda36 100644 --- a/magnum/api/templates/layout.html +++ b/magnum/api/templates/layout.html @@ -10,7 +10,7 @@ <%def name="title()"> - Default Title + Magnum <%def name="style()"> diff --git a/magnum/public/images/logo.png b/magnum/public/images/logo.png deleted file mode 100644 index a8f403e4a4..0000000000 Binary files a/magnum/public/images/logo.png and /dev/null differ