X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sandbox%2Fviews.py;fp=sandbox%2Fviews.py;h=dda1771889915ea1d1a1c6296055d08851a10309;hb=c5b4da52191579b5762f2571e6511c4a6f5abd22;hp=0000000000000000000000000000000000000000;hpb=0cb9639cd2b26d8836dc61d40d2028d6fda95b1b;p=unfold.git diff --git a/sandbox/views.py b/sandbox/views.py new file mode 100644 index 00000000..dda17718 --- /dev/null +++ b/sandbox/views.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# +# portal/views.py: views for the portal application +# This file is part of the Manifold project. +# +# Authors: +# Jordan Augé +# Mohammed Yasin Rahman +# Copyright 2013, UPMC Sorbonne Universités / LIP6 +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; see the file COPYING. If not, write to the Free Software +# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +import json + +from django.http import HttpResponseRedirect, HttpResponse +from django.shortcuts import render +from django.template.loader import render_to_string + +from unfold.loginrequired import FreeAccessView +from ui.topmenu import topmenu_items, the_user + +from unfold.page import Page + +from plugins.myplugin import MyPlugin + +# NOTE +# initially all the portal views were defined in this single file +# all the other ones have now migrated into separate classes/files for more convenience +# I'm leaving these ones here for now as I could not exactly figure what the purpose was +# (i.e. what the correct name should be, as presviewview was a bit cryptic) +class MyPluginView(FreeAccessView): + template_name = "view-unfold1.html" + + def get_context_data(self, **kwargs): + + page = Page(self.request) + +# pres_view = PresView(page = page) + plugin = MyPlugin(page = page, html="

PresView needs to be integrated

") + + context = super(MyPluginView, self).get_context_data(**kwargs) + + context['unfold_main'] = plugin.render(self.request) + + # more general variables expected in the template + context['title'] = 'Sandbox for MyPlugin plugin' + # the menu items on the top + context['topmenu_items'] = topmenu_items('PresView', self.request) + # so we can sho who is logged + context['username'] = the_user(self.request) + + prelude_env = page.prelude_env() + context.update(prelude_env) + + return context +