goa/test/data/views.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Tue, 15 Sep 2009 16:02:17 +0200
branch3.5
changeset 3232 eccb7380dc3b
parent 1977 606923dff11b
child 4023 eae23c40627a
child 4212 ab6573088b4a
permissions -rw-r--r--
[controllers] allow onsuccess / onfailure callback to be passed to validateform For instance : validateform?__onsuccess=wp.addAndSelectHall will call the addAndSelectHall function on success rather than redirecting to a specific URL.

# -*- coding: utf-8 -*-
"""

:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
import os
os.environ["DJANGO_SETTINGS_MODULE"] = 'data.settings'

from django import template


def encode_output(self, output):
    # Check type so that we don't run str() on a Unicode object
    if not isinstance(output, basestring):
        return unicode(output)
    return output

template.VariableNode.encode_output = encode_output

from cubicweb.common.view import StartupView

INDEX_TEMPLATE = template.Template(u'''
 <h1>hellĂ´ {{ user.login }}</h1>
''')

class MyIndex(StartupView):
    id = 'index'

    def call(self):
        ctx = template.Context({'user': self.req.user})
        return INDEX_TEMPLATE.render(ctx)