various
[myslice.git] / plugins / querycode / querycode.js
index eab1238..65c6d0d 100644 (file)
@@ -28,7 +28,7 @@
 
     var methods = {
        init : function (options) {
-           console.log("temporarily turned off SyntaxHighlighter ...");
+           if (debug) console.log("temporarily turned off SyntaxHighlighter ...");
 //          SyntaxHighlighter.all();
            return this.each(function() {
                var $this=$(this);
@@ -86,7 +86,7 @@
        }
        html_code=fun(query);
        dom.html(html_code);
-       console.log("turned off SyntaxHighlighter.highlight");
+       if (debug) console.log("turned off SyntaxHighlighter.highlight");
 //     SyntaxHighlighter.highlight()
 
     }
        });
        ofs = '[' + ofs + ']';
 
-       output += 'pp srv.call("' + mixed_case(query.action) +'", auth, "' + query.method + '", "' + query.timestamp + '", ' + ifs + ', ' + ofs + ')';
+       output += 'pp srv.call("' + mixed_case(query.action) +'", auth, "' + query.subject + '", "' + query.timestamp + '", ' + ifs + ', ' + ofs + ')';
 
        var output = '<pre class="brush: ruby; toolbar: false;">' + output + "</pre>";
        return output;
        });
        ofs = '[' + ofs + ']';
 
-       output += 'srv.' + mixed_case(query.action) + '(auth, "' + query.method + '", ' + ifs + ', {}, ' + ofs + ')';
+       output += 'srv.' + mixed_case(query.action) + '(auth, "' + query.subject + '", ' + ifs + ', {}, ' + ofs + ')';
        var output = '<pre class="brush: python; toolbar: false;">' + output + "</pre>";
        return output;
     }