[Pkg-mozext-commits] [firebug] 01/04: Imported Upstream version 1.12.4

David Prévot taffit at alioth.debian.org
Sat Oct 19 14:11:26 UTC 2013


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

taffit pushed a commit to branch master
in repository firebug.

commit 187c23b616ad924f6d048af51d435fa18c01ec8d
Author: David Prévot <taffit at debian.org>
Date:   Sat Oct 19 09:41:25 2013 -0400

    Imported Upstream version 1.12.4
---
 content/firebug/branch.properties     |    2 +-
 content/firebug/chrome/knownIssues.js |    2 +-
 content/firebug/js/debugger.js        |   10 ++++++----
 install.rdf                           |    2 +-
 locale/en-US/firebug.properties       |    2 +-
 5 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/content/firebug/branch.properties b/content/firebug/branch.properties
index a06aa82..5212c22 100644
--- a/content/firebug/branch.properties
+++ b/content/firebug/branch.properties
@@ -1,5 +1,5 @@
 # DO NOT MERGE INTO TRUNK
-RELEASE=.3
+RELEASE=.4
 VERSION=1.12
 TRUNK=
 # To allow build.xml to drop the xpi directly into the svn working copy for getfirebug.com
diff --git a/content/firebug/chrome/knownIssues.js b/content/firebug/chrome/knownIssues.js
index 4090bea..9762489 100644
--- a/content/firebug/chrome/knownIssues.js
+++ b/content/firebug/chrome/knownIssues.js
@@ -116,7 +116,7 @@ var KnownIssues = Obj.extend(Firebug.Module,
     showSlowJSDMessage: function(context)
     {
         // Do not display twice for this context
-        if (!context.showSlowJSDMessage)
+        if (!context || !context.showSlowJSDMessage)
             return;
 
         // The message is displayed only if the Console panel is enabled.
diff --git a/content/firebug/js/debugger.js b/content/firebug/js/debugger.js
index d7625db..9b1112f 100644
--- a/content/firebug/js/debugger.js
+++ b/content/firebug/js/debugger.js
@@ -2679,8 +2679,10 @@ Firebug.Debugger = Obj.extend(Firebug.ActivableModule,
         if (!Firebug.Debugger.isAlwaysEnabled())
             return;
 
+        // xxxHonza: do not pause the debugger (see issue 6086).
+
         // can be called multiple times.
-        var paused = FBS.pause(this.debuggerName);
+        //var paused = FBS.pause(this.debuggerName);
 
         if (FBTrace.DBG_ACTIVATION)
             FBTrace.sysout("debugger.onSuspendFirebug paused: "+paused+" isAlwaysEnabled " +
@@ -2690,8 +2692,8 @@ Firebug.Debugger = Obj.extend(Firebug.ActivableModule,
         // Firebug is activated on another tab.
         // The start-button should somehow reflect that JSD can be still active (even if
         // Firebug is suspended for the current tab).
-        if (!paused)  // then we failed to suspend, undo
-            return true;
+        //if (!paused)  // then we failed to suspend, undo
+        //    return true;
 
         return false;
     },
@@ -2701,7 +2703,7 @@ Firebug.Debugger = Obj.extend(Firebug.ActivableModule,
         if (!Firebug.Debugger.isAlwaysEnabled())
             return;
 
-        var unpaused = FBS.unPause();
+        //var unpaused = FBS.unPause();
 
         if (FBTrace.DBG_ACTIVATION)
             FBTrace.sysout("debugger.onResumeFirebug unpaused: "+unpaused+" isAlwaysEnabled " +
diff --git a/install.rdf b/install.rdf
index b8ba139..4894606 100644
--- a/install.rdf
+++ b/install.rdf
@@ -5,7 +5,7 @@
 
   <Description about="urn:mozilla:install-manifest">
     <em:id>firebug at software.joehewitt.com</em:id>
-    <em:version>1.12.3</em:version>
+    <em:version>1.12.4</em:version>
     <em:type>2</em:type>
     <em:bootstrap>true</em:bootstrap>
 
diff --git a/locale/en-US/firebug.properties b/locale/en-US/firebug.properties
index bde9850..c6fac00 100644
--- a/locale/en-US/firebug.properties
+++ b/locale/en-US/firebug.properties
@@ -1758,5 +1758,5 @@ perftiming.unloadEventStart=Time just before the unload event is fired.
 # A message displayed when the Script panel is disabled. It warns users about known platform
 # problems related to JSD. The message is also displayed in the Console panel + a button that
 # allows to hide it.
-knownissues.message.slowJSD=<B>Warning:</B> Enabling the Script panel slows down tab switching and Firebug activation due to a <a>platform problem</a>. This will be fixed with the next major Firebug version.
+knownissues.message.slowJSD=<B>Warning:</B> Enabling the Script panel slows down Firebug activation and JavaScript execution in Firefox due to a <a>platform problem</a>. This will be fixed with the next major Firebug version.
 knownissues.message.slowJSD.GotIt=Got It

-- 
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