~ubuntu-branches/ubuntu/raring/quantum/raring

« back to all changes in this revision

Viewing changes to quantum/api/v2/router.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-11-23 09:43:14 UTC
  • mfrom: (2.1.16)
  • Revision ID: package-import@ubuntu.com-20121123094314-e1tqsulrwe21b9aq
Tags: 2013.1~g1-0ubuntu1
[ Adam Gandelman ]
* debian/patches/*: Refreshed for opening of Grizzly.

[ Chuck Short ]
* New upstream release.
* debian/rules: FTFBS if there is missing binaries.
* debian/quantum-server.install: Add quantum-debug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
 
16
 
import logging
17
16
import urlparse
18
17
 
19
18
import routes as routes_mapper
21
20
import webob.dec
22
21
import webob.exc
23
22
 
 
23
from quantum.api import extensions
24
24
from quantum.api.v2 import attributes
25
25
from quantum.api.v2 import base
26
 
from quantum.extensions import extensions
27
26
from quantum import manager
28
27
from quantum.openstack.common import cfg
 
28
from quantum.openstack.common import log as logging
29
29
from quantum import wsgi
30
30
 
31
31