diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-22 14:59:08 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-22 14:59:08 +0000 |
commit | 1d2016b4a881538aa86f4824f1131dfada186ae0 (patch) | |
tree | 238cbc5b79065e485c08d9eec11e72e491b9ce98 /synapse | |
parent | Fix manifest. Ignore contrib and docs directories when checking manifest agai... (diff) | |
download | synapse-1d2016b4a881538aa86f4824f1131dfada186ae0.tar.xz |
Move client v1 api rest servlets into a "client/v1" directory
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/client/__init__.py | 14 | ||||
-rw-r--r-- | synapse/client/v1/__init__.py (renamed from synapse/rest/__init__.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/admin.py (renamed from synapse/rest/admin.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/base.py (renamed from synapse/rest/base.py) | 2 | ||||
-rw-r--r-- | synapse/client/v1/directory.py (renamed from synapse/rest/directory.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/events.py (renamed from synapse/rest/events.py) | 2 | ||||
-rw-r--r-- | synapse/client/v1/initial_sync.py (renamed from synapse/rest/initial_sync.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/login.py (renamed from synapse/rest/login.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/presence.py (renamed from synapse/rest/presence.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/profile.py (renamed from synapse/rest/profile.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/register.py (renamed from synapse/rest/register.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/room.py (renamed from synapse/rest/room.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/transactions.py (renamed from synapse/rest/transactions.py) | 0 | ||||
-rw-r--r-- | synapse/client/v1/voip.py (renamed from synapse/rest/voip.py) | 0 | ||||
-rw-r--r-- | synapse/server.py | 2 |
15 files changed, 17 insertions, 3 deletions
diff --git a/synapse/client/__init__.py b/synapse/client/__init__.py new file mode 100644 index 0000000000..1a84d94cd9 --- /dev/null +++ b/synapse/client/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 OpenMarket Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/synapse/rest/__init__.py b/synapse/client/v1/__init__.py index 88ec9cd27d..88ec9cd27d 100644 --- a/synapse/rest/__init__.py +++ b/synapse/client/v1/__init__.py diff --git a/synapse/rest/admin.py b/synapse/client/v1/admin.py index 0aa83514c8..0aa83514c8 100644 --- a/synapse/rest/admin.py +++ b/synapse/client/v1/admin.py diff --git a/synapse/rest/base.py b/synapse/client/v1/base.py index c583945527..d005206b77 100644 --- a/synapse/rest/base.py +++ b/synapse/client/v1/base.py @@ -15,7 +15,7 @@ """ This module contains base REST classes for constructing REST servlets. """ from synapse.api.urls import CLIENT_PREFIX -from synapse.rest.transactions import HttpTransactionStore +from .transactions import HttpTransactionStore import re import logging diff --git a/synapse/rest/directory.py b/synapse/client/v1/directory.py index 7ff44fdd9e..7ff44fdd9e 100644 --- a/synapse/rest/directory.py +++ b/synapse/client/v1/directory.py diff --git a/synapse/rest/events.py b/synapse/client/v1/events.py index bedcb2bcc6..c2515528ac 100644 --- a/synapse/rest/events.py +++ b/synapse/client/v1/events.py @@ -18,7 +18,7 @@ from twisted.internet import defer from synapse.api.errors import SynapseError from synapse.streams.config import PaginationConfig -from synapse.rest.base import RestServlet, client_path_pattern +from .base import RestServlet, client_path_pattern import logging diff --git a/synapse/rest/initial_sync.py b/synapse/client/v1/initial_sync.py index b13d56b286..b13d56b286 100644 --- a/synapse/rest/initial_sync.py +++ b/synapse/client/v1/initial_sync.py diff --git a/synapse/rest/login.py b/synapse/client/v1/login.py index 6b8deff67b..6b8deff67b 100644 --- a/synapse/rest/login.py +++ b/synapse/client/v1/login.py diff --git a/synapse/rest/presence.py b/synapse/client/v1/presence.py index ca4d2d21f0..ca4d2d21f0 100644 --- a/synapse/rest/presence.py +++ b/synapse/client/v1/presence.py diff --git a/synapse/rest/profile.py b/synapse/client/v1/profile.py index dc6eb424b0..dc6eb424b0 100644 --- a/synapse/rest/profile.py +++ b/synapse/client/v1/profile.py diff --git a/synapse/rest/register.py b/synapse/client/v1/register.py index e3b26902d9..e3b26902d9 100644 --- a/synapse/rest/register.py +++ b/synapse/client/v1/register.py diff --git a/synapse/rest/room.py b/synapse/client/v1/room.py index 48bba2a5f3..48bba2a5f3 100644 --- a/synapse/rest/room.py +++ b/synapse/client/v1/room.py diff --git a/synapse/rest/transactions.py b/synapse/client/v1/transactions.py index d933fea18a..d933fea18a 100644 --- a/synapse/rest/transactions.py +++ b/synapse/client/v1/transactions.py diff --git a/synapse/rest/voip.py b/synapse/client/v1/voip.py index 011c35e69b..011c35e69b 100644 --- a/synapse/rest/voip.py +++ b/synapse/client/v1/voip.py diff --git a/synapse/server.py b/synapse/server.py index d861efd2fd..57a95bf753 100644 --- a/synapse/server.py +++ b/synapse/server.py @@ -24,7 +24,7 @@ from synapse.events.utils import serialize_event from synapse.notifier import Notifier from synapse.api.auth import Auth from synapse.handlers import Handlers -from synapse.rest import RestServletFactory +from synapse.client.v1 import RestServletFactory from synapse.state import StateHandler from synapse.storage import DataStore from synapse.types import UserID, RoomAlias, RoomID, EventID |