Merge branch 'configfile' into checkboxes
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 1 Oct 2013 12:39:20 +0000 (14:39 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 1 Oct 2013 12:39:20 +0000 (14:39 +0200)
1  2 
portal/sliceview.py

diff --combined portal/sliceview.py
@@@ -21,6 -21,8 +21,8 @@@ from plugins.active_filters          im
  from plugins.quickfilter             import QuickFilter
  from plugins.messages                import Messages
  
+ from myslice.config                  import Config
  tmp_default_slice='ple.upmc.myslicedemo'
  
  # temporary : turn off the users part to speed things up
@@@ -33,8 -35,9 +35,9 @@@ class SliceView (LoginRequiredAutoLogou
          page = Page(request)
          page.add_css_files ('css/slice-view.css')
          page.add_js_files  ( [ "js/common.functions.js" ] )
-         page.add_js_chunks ('$(function() { console.log("sliceview: jQuery version " + $.fn.jquery); });')
-         page.add_js_chunks ('$(function() { console.log("sliceview: users turned %s"); });'%("on" if do_query_users else "off"))
+         page.add_js_chunks ('$(function() { messages.debug("sliceview: jQuery version " + $.fn.jquery); });')
+         page.add_js_chunks ('$(function() { messages.debug("sliceview: users turned %s"); });'%("on" if do_query_users else "off"))
+         page.add_js_chunks ('$(function() { messages.debug("manifold URL %s"); });'%(Config.manifold_url()))
          page.expose_js_metadata()
      
          metadata = page.get_metadata()
              query_all  = query_resource_all,
              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,
                  'bAutoWidth'    : True,
                  outline_complete    = True,
                  togglable           = True,
                  title               = 'Users',
 -                active_domid        = 'checkboxes2',
 +                active_domid        = 'users-list',
                  )
              main_stack.insert(tab_users)
      
              tab_users.insert(Hazelnut( 
                  page        = page,
                  title       = 'Users List',
 -                domid       = 'checkboxes2',
 +                domid       = 'users-list',
                  # tab's sons preferably turn this off
                  togglable   = False,
                  # this is the query at the core of the slice list
          # MEASUREMENTS
          tab_measurements = Tabs (
              page                = page,
 -            active_domid        = 'checkboxes3',
 +            active_domid        = 'measurements-list',
              outline_complete    = True,
              togglable           = True,
              title               = 'Measurements',
          tab_measurements.insert(Hazelnut( 
              page        = page,
              title       = 'Measurements',
 -            domid       = 'checkboxes3',
 +            domid       = 'measurements-list',
              # tab's sons preferably turn this off
              togglable   = False,
              # this is the query at the core of the slice list