X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=trash%2Fsliceview.py;h=b50eb26fb343f1060d9606371374ae07db909941;hb=401546ae932e7f2d120ec210c13e2db1ce754cc7;hp=4f4202df6cec1fc70af716199e82ae680f31df56;hpb=64be7f204b6f00244951821884a37fb74b3bbe36;p=myslice.git diff --git a/trash/sliceview.py b/trash/sliceview.py index 4f4202df..b50eb26f 100644 --- a/trash/sliceview.py +++ b/trash/sliceview.py @@ -6,105 +6,262 @@ from django.shortcuts import render_to_response from django.contrib.auth.decorators import login_required from unfold.page import Page -from manifold.manifoldquery import ManifoldQuery +#from manifold.manifoldquery import ManifoldQuery +from manifold.core.query import Query, AnalyzedQuery +from plugins.raw.raw import Raw from plugins.stack.stack import Stack from plugins.tabs.tabs import Tabs -from plugins.hazelnut.hazelnut import Hazelnut from plugins.lists.slicelist import SliceList +from plugins.hazelnut.hazelnut import Hazelnut +from plugins.googlemap.googlemap import GoogleMap +from plugins.senslabmap.senslabmap import SensLabMap from plugins.querycode.querycode import QueryCode from plugins.quickfilter.quickfilter import QuickFilter +from plugins.messages.messages import Messages from myslice.viewutils import quickfilter_criterias from myslice.viewutils import topmenu_items, the_user -tmp_default_slice='ple.inria.sfatest' +# XXX JORDAN +from manifold.metadata import MetaData as Metadata + +tmp_default_slice='ple.inria.heartbeat' +debug = True @login_required def slice_view (request, slicename=tmp_default_slice): page = Page(request) + page.expose_js_metadata() + + + # TODO The query to run is embedded in the URL + main_query = Query({'action': 'get', 'object': 'slice'}).filter_by('slice_hrn', '=', slicename) - main_query = ManifoldQuery (action='get', - subject='resource', - timestamp='latest', - fields=['hrn','hostname'], - filters= [ [ 'slice_hrn', '=', slicename, ] ], - # xxx filter : should filter on the slices the logged user can see - # we don't have the user's hrn yet - # in addition this currently returns all slices anyways - # filter = ... - sort='slice_hrn', - ) - page.enqueue_query (main_query) + # Get default fields from metadata unless specified + if not main_query.fields: + md_fields = page.get_metadata() + md_fields = md_fields.details_by_subject('slice') + if debug: + print "METADATA", md_fields + # TODO Get default fields + main_query.fields = ['slice_hrn', 'resource.hrn', 'resource.hostname', 'resource.type', 'resource.authority'] +#old# main_query = ManifoldQuery (action='get', +#old# subject='resource', +#old# timestamp='latest', +#old# fields=['network','type','hrn','hostname'], +#old# filters= [ [ 'slice_hrn', '=', slicename, ] ], +#old# ) + + aq = AnalyzedQuery(main_query) + page.enqueue_query(main_query, analyzed_query=aq) + + # Prepare the display according to all metadata + # (some parts will be pending, others can be triggered by users). + # + # For example slice measurements will not be requested by default... + + # Create the base layout (Stack)... main_plugin = Stack ( page=page, - title="global container", + title="Slice view for %s"%slicename, + domid='thestack', togglable=False, - sons=[Tabs ( - page=page, - title="different angles", - active_domid='with-checkboxes', - sons=[ - Hazelnut ( - page=page, - title='a sample and simple hazelnut', - togglable=False, - # this is the query at the core of the slice list - query=main_query, - ), - Hazelnut ( - page=page, - title='with checkboxes', - domid='with-checkboxes', - togglable=False, - checkboxes=True, - # this is the query at the core of the slice list - query=main_query, - ), - ]), - QueryCode ( + sons=[ + Messages ( page=page, - title='xmlrpc code', - query=main_query, - toggled=False, + title="Runtime messages for slice %s"%slicename, + domid="msgs-pre", + levels="ALL", ), - ]) + Raw (page=page,togglable=False, toggled=True,html="

Slice page for %s

"%slicename), + ] + ) - # variables that will get passed to the view-plugin.html template + # ... responsible for the slice properties... + + main_plugin.insert( + Raw (page=page,togglable=False, toggled=True,html='Description: TODO') + ) + + + # ... and for the relations + # XXX Let's hardcode resources for now + sq = aq.subquery('resource') + + tab_resources = Tabs ( + page = page, + title = 'Resources', + domid = 'thetabs', + # activeid = 'checkboxes', + active_domid = 'gmap', + ) + main_plugin.insert(tab_resources) + + jj = aq.to_json() + print "="*80 + print "AQ=", jj + print "="*80 + tab_resources.insert( + Hazelnut ( + page = page, + title = 'List', + domid = 'checkboxes', + # tab's sons preferably turn this off + togglable = False, + # this is the query at the core of the slice list + query = sq, + checkboxes = True, + datatables_options = { + # for now we turn off sorting on the checkboxes columns this way + # this of course should be automatic in hazelnut + 'aoColumns' : [None, None, None, None, {'bSortable': False}], + 'iDisplayLength' : 25, + 'bLengthChange' : True, + }, + ) + ) + tab_resources.insert( + GoogleMap ( + page = page, + title = 'Geographic view', + domid = 'gmap', + # tab's sons preferably turn this off + togglable = False, + query = sq, + # center on Paris + latitude = 49., + longitude = 2.2, + zoom = 3, + ) + ) + + # END OF JORDAN's CODE + +#old# main_plugin = Stack ( +#old# page=page, +#old# title="Slice view for %s"%slicename, +#old# domid='thestack', +#old# togglable=False, +#old# sons=[ +#old# Raw (page=page,togglable=False, toggled=True,html="

Slice page for %s

"%slicename), +#old# Messages ( +#old# page=page, +#old# title="Runtime messages for slice %s"%slicename, +#old# domid="msgs-pre", +#old# levels="ALL", +#old# ), +#old# Tabs ( +#old# page=page, +#old# title="2 tabs : w/ and w/o checkboxes", +#old# domid='thetabs', +#old# # active_domid='checkboxes', +#old# active_domid='gmap', +#old# sons=[ +#old# Hazelnut ( +#old# page=page, +#old# title='a sample and simple hazelnut', +#old# domid='simple', +#old# # tab's sons preferably turn this off +#old# togglable=False, +#old# # this is the query at the core of the slice list +#old# query=main_query, +#old# ), +#old# Hazelnut ( +#old# page=page, +#old# title='with checkboxes', +#old# domid='checkboxes', +#old# # tab's sons preferably turn this off +#old# togglable=False, +#old# # this is the query at the core of the slice list +#old# query=main_query, +#old# checkboxes=True, +#old# datatables_options = { +#old# # for now we turn off sorting on the checkboxes columns this way +#old# # this of course should be automatic in hazelnut +#old# 'aoColumns' : [ None, None, None, None, {'bSortable': False} ], +#old# 'iDisplayLength' : 25, +#old# 'bLengthChange' : True, +#old# }, +#old# ), +#old# GoogleMap ( +#old# page=page, +#old# title='geographic view', +#old# domid='gmap', +#old# # tab's sons preferably turn this off +#old# togglable=False, +#old# query=main_query, +#old# # center on Paris +#old# latitude=49., +#old# longitude=2.2, +#old# zoom=3, +#old# ), +#old# Raw ( +#old## SensLabMap ( +#old# page=page, +#old# title='3D view (disabled)', +#old# domid='smap', +#old## # tab's sons preferably turn this off +#old# togglable=False, +#old## query=main_query, +#old# html="""

+#old#Thierry: I am commeting off the use of which, +#old# although rudimentarily ported to the django framework, +#old#causes a weird behaviour especially wrt scrolling. +#old#On my Mac any longer +#old#if I keep this active, so for now it's disabled +#old#

""", +#old# ), +#old# ]), +#old# Hazelnut ( +#old# page=page, +#old# title='a hazelnut not in tabs', +#old# domid='standalone', +#old# # this is the query at the core of the slice list +#old# query=main_query, +#old# columns=['hrn','hostname'], +#old# ), +#old# # you don't *have to* set a domid, but if you plan on using toggled=persistent then it's required +#old# # because domid is the key for storing toggle status in the browser +#old# QueryCode ( +#old# page=page, +#old# title='xmlrpc code (toggled=False)', +#old# query=main_query, +#old## domid='xmlrpc', +#old# toggled=False, +#old# ), +#old# QuickFilter ( +#old# page=page, +#old# title="QuickFilter - requires metadata (toggled=False)", +#old# criterias=quickfilter_criterias, +#old# domid='filters', +#old# toggled=False, +#old# ), +#old# Messages ( +#old# page=page, +#old# title="Runtime messages (again)", +#old# domid="msgs-post", +#old# ) +#old# ]) + + # variables that will get passed to the view-unfold1.html template template_env = {} - # define 'unfold1_main' to the template engine + # define 'unfold1_main' to the template engine - the main contents template_env [ 'unfold1_main' ] = main_plugin.render(request) # more general variables expected in the template - template_env [ 'title' ] = 'Test view for hazelnut' + template_env [ 'title' ] = 'Test view that combines various plugins' # the menu items on the top template_env [ 'topmenu_items' ] = topmenu_items('slice', request) # so we can sho who is logged template_env [ 'username' ] = the_user (request) -### # ########## add another plugin with the same request, on the RHS pane -### # will show up in the right-hand side area named 'related' -### related_plugin = SliceList ( -### page=page, -### title='Same request, other layout', -### domid='sidelist', -### with_datatables=True, -### header='paginated main', -### # share the query -### query=main_query, -### ) -### # likewise but on the side view -### template_env [ 'unfold1_margin' ] = related_plugin.render (request) -### -### # add our own css in the mix -### page.add_css_files ( 'css/hazelnut.css') - # don't forget to run the requests - page.exec_queue_asynchroneously () + page.expose_queries () # xxx create another plugin with the same query and a different layout (with_datatables) # show that it worls as expected, one single api call to backend and 2 refreshed views @@ -113,5 +270,6 @@ def slice_view (request, slicename=tmp_default_slice): # define {js,css}_{files,chunks} prelude_env = page.prelude_env() template_env.update(prelude_env) - return render_to_response ('view-plugin.html',template_env, + result=render_to_response ('view-unfold1.html',template_env, context_instance=RequestContext(request)) + return result