add a querycode
[unfold.git] / trash / haze.py
1 # Create your views here.
2
3 from django.template import RequestContext
4 from django.shortcuts import render_to_response
5
6 from django.contrib.auth.decorators import login_required
7
8 from unfold.page import Page
9 from manifold.manifoldquery import ManifoldQuery
10
11 from plugins.stack.stack import Stack
12 from plugins.hazelnut.hazelnut import Hazelnut 
13 from plugins.lists.slicelist import SliceList
14 from plugins.querycode.querycode import QueryCode
15 from plugins.quickfilter.quickfilter import QuickFilter
16
17 from myslice.viewutils import quickfilter_criterias
18
19 from myslice.viewutils import topmenu_items, the_user
20
21 @login_required
22 def hazelnut_view (request):
23     
24     page = Page(request)
25
26     main_query = ManifoldQuery (action='get',
27                                 subject='resource',
28                                 timestamp='latest',
29                                 fields=['hrn','hostname'],
30                                 filters= [ [ 'slice_hrn', '=', 'ple.inria.omftest', ] ],
31                                 # xxx filter : should filter on the slices the logged user can see
32                                 # we don't have the user's hrn yet
33                                 # in addition this currently returns all slices anyways
34                                 # filter = ...
35                                 sort='slice_hrn',
36                                 )
37     page.enqueue_query (main_query)
38
39     main_plugin = Stack (
40         page=page,
41         title="global container",
42         sons=[ 
43             Hazelnut ( # setting visible attributes first
44                 page=page,
45                 title='a sample and simple hazelnut',
46                 # this is the query at the core of the slice list
47                 query=main_query,
48                 ),
49             QueryCode (
50                 page=page,
51                 title='xmlrpc code',
52                 query=main_query,
53                 ),
54             ])
55
56     # variables that will get passed to the view-plugin.html template
57     template_env = {}
58     
59     # define 'unfold1_main' to the template engine
60     template_env [ 'unfold1_main' ] = main_plugin.render(request)
61
62     # more general variables expected in the template
63     template_env [ 'title' ] = 'Test view for hazelnut'
64     # the menu items on the top
65     template_env [ 'topmenu_items' ] = topmenu_items('hazelnut', request) 
66     # so we can sho who is logged
67     template_env [ 'username' ] = the_user (request) 
68
69 ### #   ########## add another plugin with the same request, on the RHS pane
70 ### #   will show up in the right-hand side area named 'related'
71 ###     related_plugin = SliceList (
72 ###         page=page,
73 ###         title='Same request, other layout',
74 ###         domid='sidelist',
75 ###         with_datatables=True, 
76 ###         header='paginated main',
77 ###         # share the query
78 ###         query=main_query,
79 ###         )
80 ###     # likewise but on the side view
81 ###     template_env [ 'unfold1_margin' ] = related_plugin.render (request)
82 ###     
83 ###     # add our own css in the mix
84 ###     page.add_css_files ( 'css/hazelnut.css')
85     
86     # don't forget to run the requests
87     page.exec_queue_asynchroneously ()
88
89     # xxx create another plugin with the same query and a different layout (with_datatables)
90     # show that it worls as expected, one single api call to backend and 2 refreshed views
91
92     # the prelude object in page contains a summary of the requirements() for all plugins
93     # define {js,css}_{files,chunks}
94     prelude_env = page.prelude_env()
95     template_env.update(prelude_env)
96     return render_to_response ('view-plugin.html',template_env,
97                                context_instance=RequestContext(request))