~ubuntu-branches/ubuntu/utopic/horizon/utopic-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/api/ceilometer.py

  • Committer: Package Import Robot
  • Author(s): James Page, Chris Johnston, James Page
  • Date: 2014-10-03 17:54:18 UTC
  • mfrom: (0.4.1) (1.1.44) (70.1.2 utopic)
  • Revision ID: package-import@ubuntu.com-20141003175418-1jomx0azdvnl5fxz
Tags: 1:2014.2~rc1-0ubuntu1
[ Chris Johnston ]
* d/theme/css/ubuntu.css: Fix Ubuntu theme for Instances "more" dropdown
  (LP: #1308651).

[ James Page ]
* New upstream release candidate:
  - d/p/*: Refresh.
* d/watch: Use tarballs.openstack.org for upstream releases. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from django.utils.translation import ugettext_lazy as _
20
20
 
21
21
from horizon import exceptions
 
22
from horizon.utils.memoized import memoized  # noqa
22
23
 
23
24
from openstack_dashboard.api import base
24
25
from openstack_dashboard.api import keystone
268
269
              'duration', 'duration_start', 'duration_end']
269
270
 
270
271
 
 
272
@memoized
271
273
def ceilometerclient(request):
272
274
    """Initialization of Ceilometer client."""
273
275