~ubuntu-branches/ubuntu/raring/horizon/raring

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/admin/volumes/forms.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-11-23 08:49:14 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20121123084914-95m0mzmiicdw64ti
Tags: 2013.1~g1-0ubuntu1
[ Adam Gandelman ]
* debian/patches/add_juju_settings_pannel.patch: Disable during
  Grizzly dev. cycle. 

[ Chuck Short ]
* New upstream relase.
* Refreshed patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Copyright 2012 United States Government as represented by the
 
4
# Administrator of the National Aeronautics and Space Administration.
 
5
# All Rights Reserved.
 
6
#
 
7
# Copyright 2012 Nebula, Inc.
 
8
#
 
9
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
10
#    not use this file except in compliance with the License. You may obtain
 
11
#    a copy of the License at
 
12
#
 
13
#         http://www.apache.org/licenses/LICENSE-2.0
 
14
#
 
15
#    Unless required by applicable law or agreed to in writing, software
 
16
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
17
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
18
#    License for the specific language governing permissions and limitations
 
19
#    under the License.
 
20
 
 
21
from django.utils.translation import ugettext_lazy as _
 
22
 
 
23
from horizon import exceptions
 
24
from horizon import forms
 
25
from horizon import messages
 
26
 
 
27
from openstack_dashboard.api import cinder
 
28
 
 
29
 
 
30
class CreateVolumeType(forms.SelfHandlingForm):
 
31
    name = forms.CharField(max_length="255", label=_("Name"))
 
32
 
 
33
    def handle(self, request, data):
 
34
        try:
 
35
            # Remove any new lines in the public key
 
36
            volume_type = cinder.volume_type_create(request,
 
37
                                                    data['name'])
 
38
            messages.success(request, _('Successfully created volume type: %s')
 
39
                                      % data['name'])
 
40
            return volume_type
 
41
        except:
 
42
            exceptions.handle(request,
 
43
                              _('Unable to create volume type.'))
 
44
            return False