]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commit
pybind/mgr: move rest into dir
authorJohn Spray <john.spray@redhat.com>
Tue, 26 Jul 2016 10:30:45 +0000 (11:30 +0100)
committerJohn Spray <john.spray@redhat.com>
Thu, 29 Sep 2016 16:27:00 +0000 (17:27 +0100)
commit5366980c388df295fa88247901352ab2613b6a17
tree272add5fe8709a0db8af57009b8dc744908b1712
parent7eb4572944e048bee5f96f1b6c79c039d50b2cc8
pybind/mgr: move rest into dir

Let's make each module its own directory.

Signed-off-by: John Spray <john.spray@redhat.com>
56 files changed:
src/pybind/mgr/calamari_rest/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/fixtures/ceph_fake.json [deleted file]
src/pybind/mgr/calamari_rest/management/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/management/commands/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/management/commands/api_docs.py [deleted file]
src/pybind/mgr/calamari_rest/manager/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/manager/osd_request_factory.py [deleted file]
src/pybind/mgr/calamari_rest/manager/pool_request_factory.py [deleted file]
src/pybind/mgr/calamari_rest/manager/request_collection.py [deleted file]
src/pybind/mgr/calamari_rest/manager/request_factory.py [deleted file]
src/pybind/mgr/calamari_rest/manager/user_request.py [deleted file]
src/pybind/mgr/calamari_rest/models.py [deleted file]
src/pybind/mgr/calamari_rest/serializers/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/serializers/fields.py [deleted file]
src/pybind/mgr/calamari_rest/serializers/v1.py [deleted file]
src/pybind/mgr/calamari_rest/serializers/v2.py [deleted file]
src/pybind/mgr/calamari_rest/settings.py [deleted file]
src/pybind/mgr/calamari_rest/types.py [deleted file]
src/pybind/mgr/calamari_rest/urls/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/urls/v2.py [deleted file]
src/pybind/mgr/calamari_rest/util.py [deleted file]
src/pybind/mgr/calamari_rest/views/__init__.py [deleted file]
src/pybind/mgr/calamari_rest/views/exceptions.py [deleted file]
src/pybind/mgr/calamari_rest/views/paginated_mixin.py [deleted file]
src/pybind/mgr/calamari_rest/views/rpc_view.py [deleted file]
src/pybind/mgr/calamari_rest/views/v2.py [deleted file]
src/pybind/mgr/rest.py [deleted file]
src/pybind/mgr/rest/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/fixtures/ceph_fake.json [new file with mode: 0644]
src/pybind/mgr/rest/app/management/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/management/commands/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/management/commands/api_docs.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/osd_request_factory.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/pool_request_factory.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/request_collection.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/request_factory.py [new file with mode: 0644]
src/pybind/mgr/rest/app/manager/user_request.py [new file with mode: 0644]
src/pybind/mgr/rest/app/models.py [new file with mode: 0644]
src/pybind/mgr/rest/app/serializers/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/serializers/fields.py [new file with mode: 0644]
src/pybind/mgr/rest/app/serializers/v1.py [new file with mode: 0644]
src/pybind/mgr/rest/app/serializers/v2.py [new file with mode: 0644]
src/pybind/mgr/rest/app/settings.py [new file with mode: 0644]
src/pybind/mgr/rest/app/types.py [new file with mode: 0644]
src/pybind/mgr/rest/app/urls/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/urls/v2.py [new file with mode: 0644]
src/pybind/mgr/rest/app/util.py [new file with mode: 0644]
src/pybind/mgr/rest/app/views/__init__.py [new file with mode: 0644]
src/pybind/mgr/rest/app/views/exceptions.py [new file with mode: 0644]
src/pybind/mgr/rest/app/views/paginated_mixin.py [new file with mode: 0644]
src/pybind/mgr/rest/app/views/rpc_view.py [new file with mode: 0644]
src/pybind/mgr/rest/app/views/v2.py [new file with mode: 0644]
src/pybind/mgr/rest/logger.py [new file with mode: 0644]
src/pybind/mgr/rest/module.py [new file with mode: 0644]