~ubuntu-branches/ubuntu/quantal/horizon/quantal

« back to all changes in this revision

Viewing changes to horizon/dashboards/syspanel/networks/ports/urls.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandelman
  • Date: 2012-08-16 14:01:33 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20120816140133-8b0f0fobvtg7wm0j
Tags: 2012.2~f3-0ubuntu1
[ Chuck Short ]
* New upstream release.
* debian/patches/fix-ubuntu-tests.patch: Fix test suites again to
  run during the builds.
* debian/watch: Update.
* debian/control: Add python-glanceclient. (LP: #1030911)
* debian/openstack-dashboard.conf: Don't hijack apache's webroot. (LP:
  #1020313)
* debian/control: Update horizon deps to reflect reality.

[ Adam Gandelman ]
* debian/control: Bump required python-django version to 1.4.
* wrap-and-sort.
* Fix (LP: #1036571):
    - debian/rules, openstack-dashboard.{links, dirs, postinst}: Add required
      symlinks and directories to allow Horizon to function with the packaged
      lessc.
    - debian/control: Add python-{cinder, swift, quantum}client,
      python-django-openstack-auth, python-netaddr, python-compressor, lessc.
* debian/rules: Improve dh_auto_clean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Copyright 2012 NEC Corporation
 
4
#
 
5
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
6
#    not use this file except in compliance with the License. You may obtain
 
7
#    a copy of the License at
 
8
#
 
9
#         http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#    Unless required by applicable law or agreed to in writing, software
 
12
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
13
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
14
#    License for the specific language governing permissions and limitations
 
15
#    under the License.
 
16
 
 
17
from django.conf.urls.defaults import patterns, url
 
18
 
 
19
from horizon.dashboards.nova.networks.ports.views import DetailView
 
20
 
 
21
PORTS = r'^(?P<port_id>[^/]+)/%s$'
 
22
 
 
23
urlpatterns = patterns('horizon.dashboards.syspanel.networks.ports.views',
 
24
    url(PORTS % 'detail', DetailView.as_view(), name='detail'))