source: main/waeup.kofa/trunk/src/waeup/kofa/mandates/browser.py @ 17176

Last change on this file since 17176 was 13990, checked in by Henrik Bettermann, 8 years ago

Use url method properly.

  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1## $Id: browser.py 13990 2016-06-25 05:00:54Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""Views for mandates.
19"""
20import grok
21from urllib import urlencode
22from waeup.kofa.browser.layout import UtilityView
23from waeup.kofa.interfaces import IUniversity
24from waeup.kofa.interfaces import MessageFactory as _
25
26class MandateView(UtilityView, grok.View):
27    """View to execute mandate.
28    """
29    grok.context(IUniversity)
30    grok.name('mandate')
31    grok.require('waeup.Public')
32
33    def update(self, *args, **kw):
34        form = self.request.form
35        mandate_id = form.get('mandate_id', None)
36        if not mandate_id:
37            (self.msg, self.redirect_path) = (_('Misuse'), '')
38            return
39        mandates = grok.getSite()['mandates']
40        mandate = mandates.get(mandate_id, None)
41        if mandate is None:
42            (self.msg, self.redirect_path) = (_('No mandate.'), '')
43            return
44        (self.msg, self.redirect_path) = mandate.execute()
45        if mandate.REDIRECT_WITH_MANDATE_ID:
46            args = {'mandate_id':mandate_id}
47            self.redirect_path = self.redirect_path + '?%s' % urlencode(args)
48        return
49
50    def render(self):
51        if self.msg:
52            self.flash(self.msg, type='warning')
53        self.redirect(self.url(self.context) + self.redirect_path)
54        return
Note: See TracBrowser for help on using the repository browser.