[Pkg-mozext-commits] [firebug] 81/82: Do not disable cmd api, just remove from help (issue 6220)

David Prévot taffit at moszumanska.debian.org
Mon Mar 31 22:45:43 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag fbtest-1.11.2
in repository firebug.

commit c937350fb7fe97cdbd0816ea76ef9248614f17ea
Author: Jan Odvarko <odvarko at gmail.com>
Date:   Wed Feb 6 16:01:54 2013 +0100

    Do not disable cmd api, just remove from help (issue 6220)
---
 extension/content/firebug/console/commandLine.js | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/extension/content/firebug/console/commandLine.js b/extension/content/firebug/console/commandLine.js
index 6df9c06..0528761 100644
--- a/extension/content/firebug/console/commandLine.js
+++ b/extension/content/firebug/console/commandLine.js
@@ -1169,33 +1169,25 @@ function FirebugCommandLineAPI(context)
 
     this.traceAll = function()
     {
-        // See issue 6220
-        Firebug.Console.log(Locale.$STR("commandline.MethodDisabled"));
-        //Firebug.Debugger.traceAll(Firebug.currentContext);
+        Firebug.Debugger.traceAll(Firebug.currentContext);
         return Firebug.Console.getDefaultReturnValue(context.window);
     };
 
     this.untraceAll = function()
     {
-        // See issue 6220
-        Firebug.Console.log(Locale.$STR("commandline.MethodDisabled"));
-        //Firebug.Debugger.untraceAll(Firebug.currentContext);
+        Firebug.Debugger.untraceAll(Firebug.currentContext);
         return Firebug.Console.getDefaultReturnValue(context.window);
     };
 
     this.traceCalls = function(fn)
     {
-        // See issue 6220
-        Firebug.Console.log(Locale.$STR("commandline.MethodDisabled"));
-        //Firebug.Debugger.traceCalls(Firebug.currentContext, fn);
+        Firebug.Debugger.traceCalls(Firebug.currentContext, fn);
         return Firebug.Console.getDefaultReturnValue(context.window);
     };
 
     this.untraceCalls = function(fn)
     {
-        // See issue 6220
-        Firebug.Console.log(Locale.$STR("commandline.MethodDisabled"));
-        //Firebug.Debugger.untraceCalls(Firebug.currentContext, fn);
+        Firebug.Debugger.untraceCalls(Firebug.currentContext, fn);
         return Firebug.Console.getDefaultReturnValue(context.window);
     };
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git



More information about the Pkg-mozext-commits mailing list