From a2ae7986853adb271361957a08effd0c9537e7a3 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 14 Mar 2013 15:41:24 +0100 Subject: [PATCH] minor --- myslice/viewutils.py | 8 +++++--- plugins/querycode/querycode.js | 12 +++--------- trash/pluginview.py | 7 ++++--- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/myslice/viewutils.py b/myslice/viewutils.py index 98f16fd7..2073ab48 100644 --- a/myslice/viewutils.py +++ b/myslice/viewutils.py @@ -59,6 +59,8 @@ hard_wired_list.append("just like a standard plugin can be set as visible or not hard_wired_list.append("") hard_wired_list.append("OTOH and IMHO, there should be two separate and explicit subclasses of SimpleList for slices or testbeds") -quickfilter_criterias = [{'key': 'Slice', 'values': ['slice1','slice2']}, \ - {'key': 'Type', 'values': ['type1','type2']}, \ - {'key': 'Network', 'values': ['net1','net2']}] +quickfilter_criterias = [ + {'key': 'Slice', 'values': ['slice1','slice2']}, + {'key': 'Type', 'values': ['type1','type2']}, + {'key': 'Network', 'values': ['net1','net2']}, + ] diff --git a/plugins/querycode/querycode.js b/plugins/querycode/querycode.js index 15f9b1e5..e8719c3a 100644 --- a/plugins/querycode/querycode.js +++ b/plugins/querycode/querycode.js @@ -7,12 +7,6 @@ * License: GPLv3 */ -function debug_object (msg, o) { - var keys=[]; - for (var k in o) keys.push(k); - console.log (msg + " Keys : " + keys); -} - // xxx TODO // . turn back on syntax highlighting @@ -131,7 +125,7 @@ function debug_object (msg, o) { }); ofs = '[' + ofs + ']'; - output += 'pp srv.call("' + title_case(query.action) +'", auth, "' + query.method + '", "' + query.timestamp + '", ' + ifs + ', ' + ofs + ')'; + output += 'pp srv.call("' + mixed_case(query.action) +'", auth, "' + query.method + '", "' + query.timestamp + '", ' + ifs + ', ' + ofs + ')'; var output = '
' + output + "
"; return output; @@ -164,12 +158,12 @@ function debug_object (msg, o) { }); ofs = '[' + ofs + ']'; - output += 'srv.' + title_case(query.action) + '(auth, "' + query.method + '", ' + ifs + ', {}, ' + ofs + ')'; + output += 'srv.' + mixed_case(query.action) + '(auth, "' + query.method + '", ' + ifs + ', {}, ' + ofs + ')'; var output = '
' + output + "
"; return output; } - function title_case (txt){ return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();} + function mixed_case (txt){ return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();} })(jQuery); // end closure wrapper diff --git a/trash/pluginview.py b/trash/pluginview.py index 5d29eb5b..b6d67665 100644 --- a/trash/pluginview.py +++ b/trash/pluginview.py @@ -56,9 +56,10 @@ def test_plugin_view (request): title='SimpleList with slice names', list=hard_wired_slice_names, ), - QuickFilter (list=quickfilter_criterias, - page=page, - title='QuickFilter in main content') ] ) + QuickFilter (page=page, + title='QuickFilter in main content', + list=quickfilter_criterias, + ) ] ) # define 'content_main' to the template engine template_env [ 'content_main' ] = main_plugin.render(request) -- 2.43.0