renamed hazelnut into querytable
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 4 Nov 2013 10:46:16 +0000 (11:46 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 4 Nov 2013 10:46:16 +0000 (11:46 +0100)
29 files changed:
plugins/debug_platform/__init__.py
plugins/debug_platform/static/js/debug_platform.js
plugins/googlemap/static/js/googlemap.js
plugins/myplugin/static/js/myplugin.js
plugins/querytable/__init__.py [moved from plugins/hazelnut/__init__.py with 89% similarity]
plugins/querytable/static/css/querytable.css [moved from plugins/hazelnut/static/css/hazelnut.css with 60% similarity]
plugins/querytable/static/img/README [moved from plugins/hazelnut/static/img/README with 100% similarity]
plugins/querytable/static/img/tablesort-bullet1.png [moved from plugins/hazelnut/static/img/tablesort-bullet1.png with 100% similarity]
plugins/querytable/static/img/tablesort-bullet2.png [moved from plugins/hazelnut/static/img/tablesort-bullet2.png with 100% similarity]
plugins/querytable/static/img/tablesort-col-alt.png [moved from plugins/hazelnut/static/img/tablesort-col-alt.png with 100% similarity]
plugins/querytable/static/img/tablesort-gradient.png [moved from plugins/hazelnut/static/img/tablesort-gradient.png with 100% similarity]
plugins/querytable/static/img/tablesort-header-down.png [moved from plugins/hazelnut/static/img/tablesort-header-down.png with 100% similarity]
plugins/querytable/static/img/tablesort-header-sortable.png [moved from plugins/hazelnut/static/img/tablesort-header-sortable.png with 100% similarity]
plugins/querytable/static/img/tablesort-header-up.png [moved from plugins/hazelnut/static/img/tablesort-header-up.png with 100% similarity]
plugins/querytable/static/img/tablesort-header.png [moved from plugins/hazelnut/static/img/tablesort-header.png with 100% similarity]
plugins/querytable/static/img/tablesort-td-alt.png [moved from plugins/hazelnut/static/img/tablesort-td-alt.png with 100% similarity]
plugins/querytable/static/img/toggle-hidden.png [moved from plugins/hazelnut/static/img/toggle-hidden.png with 100% similarity]
plugins/querytable/static/img/toggle-visible.png [moved from plugins/hazelnut/static/img/toggle-visible.png with 100% similarity]
plugins/querytable/static/js/querytable.js [moved from plugins/hazelnut/static/js/hazelnut.js with 93% similarity]
plugins/querytable/templates/querytable.html [moved from plugins/hazelnut/templates/hazelnut.html with 92% similarity]
plugins/resources_selected/static/js/resources_selected.js
plugins/slicestat/static/js/slicestat.js
portal/platformsview.py
portal/platformview.py
portal/resourceview.py
portal/sliceview.py
to-be-integrated/plugins/code_editor/static/js/code_editor.js
trash/pluginview.py
unfold/static/css/onelab_marko.css

index e14a478..fa76ba4 100644 (file)
@@ -1,7 +1,7 @@
 from unfold.plugin       import Plugin
 from unfold.page         import Page
 #from plugins.code_editor import CodeEditor
-from plugins.hazelnut    import Hazelnut
+from plugins.querytable  import QueryTable
 
 class DebugPlatform(Plugin):
 
@@ -29,6 +29,6 @@ class DebugPlatform(Plugin):
         # This part should be moved to a Layout
         env = {}
         env['topleft'] = CodeEditor(page=self.page, lineNumbers=True).render(request)
-        env['bottomleft'] = Hazelnut(page=self.page, columns=['dummy']).render(request)
+        env['bottomleft'] = QueryTable(page=self.page, columns=['dummy']).render(request)
         return env
 
index cbbd0b7..dda946c 100644 (file)
 
             return this.each(function() {
                 var $this = $(this);
-                var hazelnut = $this.data('Manifold');
+                var querytable = $this.data('Manifold');
 
                 // Unbind all events using namespacing
                 $(window).unbind('Manifold');
 
                 // Remove associated data
-                hazelnut.remove();
+                querytable.remove();
                 $this.removeData('Manifold');
             });
         }, // destroy
index 424b3aa..9a56d37 100644 (file)
@@ -35,7 +35,7 @@ googlemap_debug_detailed=false;
             /* XXX Events */
             this.elmt().on('show', this, this.on_show);
             // TODO in destructor
-            // $(window).unbind('Hazelnut');
+            // $(window).unbind('QueryTable');
 
             var query = manifold.query_store.find_analyzed_query(this.options.query_uuid);
             this.object = query.object;
@@ -105,7 +105,7 @@ googlemap_debug_detailed=false;
            //return this.escape_id(key_value).replace(/\\/g, '');
            //  however this sequence removes backslashes from hrn's and as a result
            // resources_selected was getting all mixed up
-           // hazelnut does publish hrn's with backslashes and that seems like the thing to do
+           // querytable does publish hrn's with backslashes and that seems like the thing to do
            return key_value;
        },          
 
index 20f8573..26a2992 100644 (file)
@@ -44,7 +44,7 @@
         },
 
         /* PLUGIN EVENTS */
-        // on_show like in hazelnut
+        // on_show like in querytable
 
 
         /* GUI EVENTS */
similarity index 89%
rename from plugins/hazelnut/__init__.py
rename to plugins/querytable/__init__.py
index eab5004..96456f5 100644 (file)
@@ -1,6 +1,6 @@
 from unfold.plugin import Plugin
 
-class Hazelnut (Plugin):
+class QueryTable (Plugin):
 
     # set checkboxes if a final column with checkboxes is desired
     # pass columns as the initial set of columns
@@ -37,16 +37,16 @@ class Hazelnut (Plugin):
         if self.checkboxes:
             # we use aoColumnDefs rather than aoColumns -- ignore user-provided aoColumns
             if 'aoColumns' in self.datatables_options:
-                print 'WARNING: hazelnut uses aoColumnDefs, your aoColumns spec. is discarded'
+                print 'WARNING: querytable uses aoColumnDefs, your aoColumns spec. is discarded'
                 del self.datatables_options['aoColumns']
             # set aoColumnDefs in datatables_options - might already have stuff in there
             aoColumnDefs = self.datatables_options.setdefault ('aoColumnDefs',[])
             # here 'checkbox' is the class that we give to the <th> dom elem
-            # dom-checkbox is a sorting type that we define in hazelnut.js
+            # dom-checkbox is a sorting type that we define in querytable.js
             aoColumnDefs.append ( {'aTargets': ['checkbox'], 'sSortDataType': 'dom-checkbox' } )
 
     def template_file (self):
-        return "hazelnut.html"
+        return "querytable.html"
 
     def template_env (self, request):
         env={}
@@ -60,15 +60,15 @@ class Hazelnut (Plugin):
                            "js/dataTables.js", "js/dataTables.bootstrap.js", "js/with-datatables.js",
                            "js/manifold.js", "js/manifold-query.js", 
                            "js/unfold-helper.js",
-                          # hazelnut.js needs to be loaded after dataTables.js as it extends 
+                          # querytable.js needs to be loaded after dataTables.js as it extends 
                           # dataTableExt.afnSortData
-                           "js/hazelnut.js", 
+                           "js/querytable.js", 
                            ] ,
             'css_files': [ "css/dataTables.bootstrap.css",
                            # hopefully temporary, when/if datatables supports sPaginationType=bootstrap3
                            # for now we use full_numbers, with our own ad hoc css 
                            "css/dataTables.full_numbers.css",
-                           "css/hazelnut.css" , 
+                           "css/querytable.css" , 
                            ],
             }
         return reqs
similarity index 60%
rename from plugins/hazelnut/static/css/hazelnut.css
rename to plugins/querytable/static/css/querytable.css
index 31c1184..edbc683 100644 (file)
@@ -1,7 +1,7 @@
 /* the bottom of the datatable needs more space */
-div.hazelnut-spacer { padding: 8px 4px 15px 4px; }
+div.querytable-spacer { padding: 8px 4px 15px 4px; }
 
-div.Hazelnut table.dataTable th {
+div.QueryTable table.dataTable th {
     font: bold 12px/22px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
     color: #4f6b72;
     border-right: 1px solid #C1DAD7;
@@ -15,25 +15,25 @@ div.Hazelnut table.dataTable th {
 /*    background: #CAE8EA url(../img/tablesort-header.jpg) no-repeat; */
 }
 
-div.Hazelnut table.dataTable th.checkbox {
+div.QueryTable table.dataTable th.checkbox {
     padding-left: 14px;
 }
 
-div.Hazelnut table.dataTable td, div.Hazelnut table.dataTable textarea, div.Hazelnut table.dataTable input [type="text"] {
+div.QueryTable table.dataTable td, div.QueryTable table.dataTable textarea, div.QueryTable table.dataTable input [type="text"] {
     font: normal 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
     border-right: 1px solid #C1DAD7;
     border-bottom: 1px solid #C1DAD7;
 }
-div.Hazelnut table.dataTable td {
+div.QueryTable table.dataTable td {
     padding: 4px 8px 4px 8px;
     /* this applies on even rows only, odd ones have a setting in bootstrap of rbg 249.249.249 */
     background-color: #f4f4f4;
 }
-div.Hazelnut table.dataTable td a {
+div.QueryTable table.dataTable td a {
     font-weight:normal;
 }
 /* these come from bootstrap */
-div.Hazelnut div.dataTables_info {
+div.QueryTable div.dataTables_info {
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
 }
 
@@ -43,20 +43,20 @@ div.Hazelnut div.dataTables_info {
  * which would look less conspicuous in case of overflow
 */
 
-div.Hazelnut table.dataTable thead .sorting { background: url('../img/tablesort-header-sortable.png') no-repeat; }
-div.Hazelnut table.dataTable thead .sorting_asc { background: url('../img/tablesort-header-up.png') no-repeat; }
-div.Hazelnut table.dataTable thead .sorting_desc { background: url('../img/tablesort-header-down.png') no-repeat; }
+div.QueryTable table.dataTable thead .sorting { background: url('../img/tablesort-header-sortable.png') no-repeat; }
+div.QueryTable table.dataTable thead .sorting_asc { background: url('../img/tablesort-header-up.png') no-repeat; }
+div.QueryTable table.dataTable thead .sorting_desc { background: url('../img/tablesort-header-down.png') no-repeat; }
 /* this icons set does not have that exact equivalent - using an approximation for now */
-div.Hazelnut table.dataTable thead .sorting_asc_disabled { background: url('../img/tablesort-header.png') repeat-x; }
-div.Hazelnut table.dataTable thead .sorting_desc_disabled { background: url('../img/tablesort-header.png') repeat-x; }
+div.QueryTable table.dataTable thead .sorting_asc_disabled { background: url('../img/tablesort-header.png') repeat-x; }
+div.QueryTable table.dataTable thead .sorting_desc_disabled { background: url('../img/tablesort-header.png') repeat-x; }
 
 /* the footers are not active */
-div.Hazelnut table.dataTable tfoot { 
+div.QueryTable table.dataTable tfoot { 
     background: url('../img/tablesort-header.png') repeat-x;
     background-color: #caebea;
 }
 /* and when sorting is turned off it's useful to set this on header too */
-div.Hazelnut table.dataTable thead { 
+div.QueryTable table.dataTable thead { 
     background: url('../img/tablesort-header.png') repeat-x;
     background-color: #caebea;
 }
similarity index 93%
rename from plugins/hazelnut/static/js/hazelnut.js
rename to plugins/querytable/static/js/querytable.js
index 7c042b1..30c727b 100644 (file)
@@ -9,7 +9,7 @@
     var debug=false;
 //    debug=true
 
-    var Hazelnut = Plugin.extend({
+    var QueryTable = Plugin.extend({
 
         init: function(options, element) 
         {
@@ -36,7 +36,7 @@
             this.elmt().on('show', this, this.on_show);
             // Unbind all events using namespacing
             // TODO in destructor
-            // $(window).unbind('Hazelnut');
+            // $(window).unbind('QueryTable');
 
             var query = manifold.query_store.find_analyzed_query(this.options.query_uuid);
             this.method = query.object;
@@ -64,9 +64,9 @@
             /* temp disabled... useful ? -- jordan
             $(this).each(function(i,elt) {
                 if (jQuery(elt).hasClass('dataTables')) {
-                    var myDiv=jQuery('#hazelnut-' + this.id).parent();
+                    var myDiv=jQuery('#querytable-' + this.id).parent();
                     if(myDiv.height()==0) {
-                        var oTable=$('#hazelnut-' + this.id).dataTable();            
+                        var oTable=$('#querytable-' + this.id).dataTable();            
                         oTable.fnDraw();
                     }
                 }
@@ -96,7 +96,7 @@
                 // WARNING: this one causes tables in a 'tabs' that are not exposed at the time this is run to show up empty
                 // sScrollX: '100%',       /* Horizontal scrolling */
                 bProcessing: true,      /* Loading */
-                fnDrawCallback: function() { self._hazelnut_draw_callback.call(self); }
+                fnDrawCallback: function() { self._querytable_draw_callback.call(self); }
                 // XXX use $.proxy here !
             };
             // the intention here is that options.datatables_options as coming from the python object take precedence
                 /* No filtering if the table does not match */
                 if (oSettings.nTable.id != self.options.plugin_uuid + '__table')
                     return true;
-                return self._hazelnut_filter.call(self, oSettings, aData, iDataIndex);
+                return self._querytable_filter.call(self, oSettings, aData, iDataIndex);
             });
 
             /* Processing hidden_columns */
             var result="";
             // Prefix id with plugin_uuid
             result += "<input";
-            result += " class='hazelnut-checkbox'";
+            result += " class='querytable-checkbox'";
             result += " id='" + this.flat_id(this.id('checkbox', value)) + "'";
             result += " name='" + key + "'";
             result += " type='checkbox'";
 
         on_field_clear: function()
         {
-            alert('Hazelnut::clear_fields() not implemented');
+            alert('QueryTable::clear_fields() not implemented');
         },
 
         /* XXX TODO: make this generic a plugin has to subscribe to a set of Queries to avoid duplicated code ! */
 
         on_all_field_clear: function()
         {
-            alert('Hazelnut::clear_fields() not implemented');
+            alert('QueryTable::clear_fields() not implemented');
         },
 
 
         /************************** PRIVATE METHODS ***************************/
 
         /** 
-         * @brief Hazelnut filtering function
+         * @brief QueryTable filtering function
          */
-        _hazelnut_filter: function(oSettings, aData, iDataIndex)
+        _querytable_filter: function(oSettings, aData, iDataIndex)
         {
             var ret = true;
             $.each (this.filters, function(index, filter) { 
             return ret;
         },
 
-        _hazelnut_draw_callback: function()
+        _querytable_draw_callback: function()
         {
             /* 
              * Handle clicks on checkboxes: reassociate checkbox click every time
              * the table is redrawn 
              */
-            this.elts('hazelnut-checkbox').unbind('click').click(this, this._check_click);
+            this.elts('querytable-checkbox').unbind('click').click(this, this._check_click);
 
             if (!this.table)
                 return;
             var minRowsPerPage = this.table.fnSettings().aLengthMenu[0];
 
             if ( rowsToShow <= rowsPerPage || rowsPerPage == -1 ) {
-                $('.hazelnut_paginate', wrapper).css('visibility', 'hidden');
+                $('.querytable_paginate', wrapper).css('visibility', 'hidden');
             } else {
-                $('.hazelnut_paginate', wrapper).css('visibility', 'visible');
+                $('.querytable_paginate', wrapper).css('visibility', 'visible');
             }
 
             if ( rowsToShow <= minRowsPerPage ) {
-                $('.hazelnut_length', wrapper).css('visibility', 'hidden');
+                $('.querytable_length', wrapper).css('visibility', 'hidden');
             } else {
-                $('.hazelnut_length', wrapper).css('visibility', 'visible');
+                $('.querytable_length', wrapper).css('visibility', 'visible');
             }
         },
 
             var self = e.data;
 
             // XXX this.value = key of object to be added... what about multiple keys ?
-           if (debug) messages.debug("hazelnut click handler checked=" + this.checked + " hrn=" + this.value);
+           if (debug) messages.debug("querytable click handler checked=" + this.checked + " hrn=" + this.value);
             manifold.raise_event(self.options.query_uuid, this.checked?SET_ADD:SET_REMOVED, this.value);
             //return false; // prevent checkbox to be checked, waiting response from manifold plugin api
             
         {
             // requires jQuery id
             var uuid=this.id.split("-");
-            var oTable=$("#hazelnut-"+uuid[1]).dataTable();
-            // Function available in Hazelnut 1.9.x
+            var oTable=$("#querytable-"+uuid[1]).dataTable();
+            // Function available in QueryTable 1.9.x
             // Filter : displayed data only
             var filterData = oTable._('tr', {"filter":"applied"});   
             /* TODO: WARNING if too many nodes selected, use filters to reduce nuber of nodes */        
 
     });
 
-    $.plugin('Hazelnut', Hazelnut);
+    $.plugin('QueryTable', QueryTable);
 
   /* define the 'dom-checkbox' type for sorting in datatables 
      http://datatables.net/examples/plug-ins/dom_sort.html
similarity index 92%
rename from plugins/hazelnut/templates/hazelnut.html
rename to plugins/querytable/templates/querytable.html
index d51776d..902c55c 100644 (file)
@@ -1,4 +1,4 @@
-<div id='main-{{ domid }}' class='hazelnut-spacer'>
+<div id='main-{{ domid }}' class='querytable-spacer'>
   <table class='table table-striped table-bordered dataTable' id='{{domid}}__table'>
     <thead>
       <tr>
index 9a06447..0e710a4 100644 (file)
@@ -31,7 +31,7 @@
 
             var self = this;
             this.table = this.elmt('table').dataTable({
-// the original hazelnut layout was
+// the original querytable layout was
 //                sDom: "<'row'<'col-xs-5'l><'col-xs-1'r><'col-xs-6'f>>t<'row'<'col-xs-5'i><'col-xs-7'p>>",
 // however the bottom line with 'showing blabla...' and the navigation widget are not really helpful
                 sDom: "<'row'<'col-xs-5'l><'col-xs-1'r><'col-xs-6'f>>t>",
                 button
             ];
             if (!row) {
-                // XXX second parameter refresh = false can improve performance. todo in hazelnut also
+                // XXX second parameter refresh = false can improve performance. todo in querytable also
                 this.table.fnAddData(newline);
                 row = this.find_row(data.value);
             } else {
index 0e3dc53..da17722 100644 (file)
@@ -51,7 +51,7 @@
         },
 
         /* PLUGIN EVENTS */
-        // on_show like in hazelnut
+        // on_show like in querytable
 
 
         /* GUI EVENTS */
index 0a6677e..12e9485 100644 (file)
@@ -4,7 +4,7 @@ from unfold.page                 import Page
 from unfold.loginrequired       import FreeAccessView
 from ui.topmenu                  import topmenu_items, the_user
 
-from plugins.hazelnut            import Hazelnut
+from plugins.querytable          import QueryTable
 
 # View for platforms
 class PlatformsView(FreeAccessView):
@@ -19,7 +19,7 @@ class PlatformsView(FreeAccessView):
 
         page.expose_js_metadata()
         page.expose_queries()
-        platformlist = Hazelnut(
+        platformlist = QueryTable(
             page  = page,
             title = 'List',
             domid = 'checkboxes',
index 69fd1b0..a81ba87 100644 (file)
@@ -4,7 +4,7 @@ from unfold.page                 import Page
 from unfold.loginrequired        import FreeAccessView
 from ui.topmenu                  import topmenu_items, the_user
 
-from plugins.hazelnut            import Hazelnut
+from plugins.querytable          import QueryTable
 
 # View for 1 platform and its details
 class PlatformView(FreeAccessView):
@@ -25,7 +25,7 @@ class PlatformView(FreeAccessView):
 
         page.expose_js_metadata()
         page.expose_queries()
-        networklist = Hazelnut(
+        networklist = QueryTable(
             page  = page,
             title = 'List',
             domid = 'checkboxes',
index c9fa5ba..f0f856a 100644 (file)
@@ -5,7 +5,7 @@ from unfold.loginrequired        import FreeAccessView
 from ui.topmenu                  import topmenu_items, the_user
 
 from plugins.googlemap           import GoogleMap
-from plugins.hazelnut            import Hazelnut
+from plugins.querytable          import QueryTable
 from plugins.lists.simplelist    import SimpleList
 from plugins.slicestat           import SliceStat
 
@@ -31,7 +31,7 @@ class ResourceView(FreeAccessView):
         page.expose_js_metadata()
         page.expose_queries()
 
-        resourcelist = Hazelnut(
+        resourcelist = QueryTable(
             page  = page,
             title = 'List',
             domid = 'checkboxes',
index 8461b1a..96bb218 100644 (file)
@@ -11,7 +11,7 @@ from ui.topmenu                      import topmenu_items, the_user
 from plugins.raw                     import Raw
 from plugins.stack                   import Stack
 from plugins.tabs                    import Tabs
-from plugins.hazelnut                import Hazelnut 
+from plugins.querytable              import QueryTable 
 from plugins.resources_selected      import ResourcesSelected
 from plugins.googlemap               import GoogleMap
 from plugins.senslabmap              import SensLabMap
@@ -160,7 +160,7 @@ class SliceView (LoginRequiredAutoLogoutView):
             zoom       = 4,
         )
 
-        resources_as_list = Hazelnut
+        resources_as_list = QueryTable
             page       = page,
             domid      = 'resources-list',
             title      = 'List view',
@@ -175,7 +175,7 @@ class SliceView (LoginRequiredAutoLogoutView):
                 },
             )
 
-       # with the new 'Filter' stuff on top, no need for anything but the hazelnut
+       # with the new 'Filter' stuff on top, no need for anything but the querytable
         resources_as_list_area = resources_as_list 
 
         resources_area = Tabs ( page=page, 
@@ -202,7 +202,7 @@ class SliceView (LoginRequiredAutoLogoutView):
                 )
             main_stack.insert(tab_users)
     
-            tab_users.insert(Hazelnut
+            tab_users.insert(QueryTable
                 page        = page,
                 title       = 'Users List',
                 domid       = 'users-list',
@@ -287,7 +287,7 @@ class SliceView (LoginRequiredAutoLogoutView):
 #        )
 #        main_stack.insert(tab_measurements)
 #    
-#        tab_measurements.insert(Hazelnut
+#        tab_measurements.insert(QueryTable
 #            page        = page,
 #            title       = 'Measurements',
 #            domid       = 'measurements-list',
index 664bbdc..4811101 100644 (file)
 
             return this.each(function() {
                 var $this = $(this);
-                var hazelnut = $this.data('Manifold');
+                var querytable = $this.data('Manifold');
 
                 // Unbind all events using namespacing
                 $(window).unbind('Manifold');
 
                 // Remove associated data
-                hazelnut.remove();
+                querytable.remove();
                 $this.removeData('Manifold');
             });
         }, // destroy
             var $this=$(this);
             // xxx wtf. why [1] ? would expect 0...
             if (debug)
-                messages.debug("Hitting suspicious line in hazelnut.show");
+                messages.debug("Hitting suspicious line in querytable.show");
             var oTable = $($('.dataTable', $this)[1]).dataTable();
             oTable.fnAdjustColumnSizing()
 
             /* Refresh dataTabeles if click on the menu to display it : fix dataTables 1.9.x Bug */
             $(this).each(function(i,elt) {
                 if (jQuery(elt).hasClass('dataTables')) {
-                    var myDiv=jQuery('#hazelnut-' + this.id).parent();
+                    var myDiv=jQuery('#querytable-' + this.id).parent();
                     if(myDiv.height()==0) {
-                        var oTable=$('#hazelnut-' + this.id).dataTable();
+                        var oTable=$('#querytable-' + this.id).dataTable();
                         oTable.fnDraw();
                     }
                 }
index 0b22e11..491900a 100644 (file)
@@ -17,7 +17,7 @@ from plugins.quickfilter                import QuickFilter
 from plugins.querycode                  import QueryCode
 from plugins.raw                        import Raw
 from plugins.messages                   import Messages
-from plugins.hazelnut                   import Hazelnut
+from plugins.querytable                 import QueryTable
 
 from ui.topmenu                         import topmenu_items, the_user
 from trash.trashutils                   import hard_wired_slice_names, hard_wired_list, lorem_p, lorem, quickfilter_criterias
@@ -35,7 +35,7 @@ def test_plugin_view (request):
     
     slicename='ple.inria.heartbeat'
     main_query = Query.get('resource').filter_by('slice_hrn', '=', slicename).select(['network','type','hrn','hostname','sliver'])
-    # without an hazelnut, this would use use : run_it=False as nothing would listen to the results
+    # without an querytable, this would use use : run_it=False as nothing would listen to the results
     page.enqueue_query (main_query, # run_it=False
                         )
 
@@ -53,11 +53,11 @@ def test_plugin_view (request):
                     domid="messages-transient",
                     levels='ALL',
                     ),
-            Hazelnut (
+            QueryTable (
                     page=page,
                     title="Slice %s - checkboxes"%slicename,
                     query=main_query,
-                    domid="hazelnut",
+                    domid="querytable",
                     checkboxes=True,
                     togglable=True,
                     ),
index 8fa53dd..edb95ec 100644 (file)
@@ -270,9 +270,9 @@ div.dataTables_info {
 
 
 
-/* HAZELNUT */
+/* QUERYTABLE */
 
-div.Hazelnut table.dataTable th {
+div.QueryTable table.dataTable th {
     font: bold 12px/22px Ubuntu, Arial, sans-serif;
     color: #333 !important;
     border-right: 0px solid #333 !important;
@@ -286,18 +286,18 @@ div.Hazelnut table.dataTable th {
     background: url('../img/tablesort-header.jpg') no-repeat !important; 
 }
 
-div.Hazelnut table.dataTable td, div.Hazelnut table.dataTable textarea, div.Hazelnut table.dataTable input [type="text"] {
+div.QueryTable table.dataTable td, div.QueryTable table.dataTable textarea, div.QueryTable table.dataTable input [type="text"] {
     font: normal 12px Ubuntu, Arial, Helvetica, sans-serif;
     border-right: 0px solid #fff !important;
     border-bottom: 1px solid #fff !important;
 }
 
-div.Hazelnut table.dataTable thead { 
+div.QueryTable table.dataTable thead { 
     background: url('../img/tablesort-header.png') repeat-x !important;
     background-color: #caebea;
 }
 
-div.Hazelnut table.dataTable tfoot { 
+div.QueryTable table.dataTable tfoot { 
     background: url('../img/tablesort-header.png') repeat-x !important;
     /* background-color: # !important; */
 }