Console² 1.0a3 Pre-Release

Announce and Discuss the Latest Theme and Extension Releases.
User avatar
Philip Chee
Posts: 6475
Joined: March 1st, 2005, 3:03 pm
Contact:

Console² 1.0a3 Pre-Release

Post by Philip Chee »

http://downloads.mozdev.org/console2/console2-1.0dev.xpi

This is a version for testing. Please kick the tires and let me know if something is broken.

Changes since v0.9:
  • # [fix] Show timestamps if available from either nsIScriptError or nsIScriptError2 due to interface changes (original patch by aceman).
    # [fix] Teach "Hide Duplicates" to ignore timestamps.
    # [fix] Mozilla Bug 764333 Link from error console to view source doesn't work for errors in subscripts.
    # Errors reported by the Addon SDK should be classed as chrome and not content (Patch by Kris Maglione).
    # Update locales from Babelzilla.
    # Fix Cannot copy messages if opened from CTRL-SHIFT-J (SeaMonkey Only)
    # Restore Error Console item removed in Mozilla Bug 602006.
    # Signature of nsIConsoleService::GetMessageArray changed in Mozilla Bug 664695. Implement a backward compatible fix.

Phil
makondo
Posts: 1961
Joined: October 18th, 2007, 5:26 pm
Location: Rocky Mountains

Re: Console² 1.0a3 Pre-Release

Post by makondo »

Thanks, Phil!
User avatar
WildcatRay
Posts: 7484
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: Console² 1.0a3 Pre-Release

Post by WildcatRay »

Thanks, Phil.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
User avatar
therube
Posts: 21703
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Console² 1.0a3 Pre-Release

Post by therube »

# Fix Cannot copy messages if opened from CTRL-SHIFT-J (SeaMonkey Only)

CTRL-SHIFT-J is working, though there is still an issue when NoScript generates an XSS warning & you use its option (Show Console...) to open the Error Console.

Image
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
User avatar
Philip Chee
Posts: 6475
Joined: March 1st, 2005, 3:03 pm
Contact:

Re: Console² 1.0a3 Pre-Release

Post by Philip Chee »

I haven't looked at his code but if his menu item is using:
oncommand="toJavaScriptConsole();
He could try:
command="Tasks:ErrorConsole" (SeaMonkey)
or
command="Tools:ErrorConsole" (Firefox)
instead.

Phil
User avatar
therube
Posts: 21703
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Console² 1.0a3 Pre-Release

Post by therube »

noscript.js:

Code: Select all

,
  openConsole: function() {
    if (window.toJavaScriptConsole) {
        toJavaScriptConsole();
    } else {
        window.open("chrome://global/content/console.xul", "_js_console_", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar");
    }
  },


I'll ask.
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
User avatar
Philip Chee
Posts: 6475
Joined: March 1st, 2005, 3:03 pm
Contact:

Re: Console² 1.0a3 Pre-Release

Post by Philip Chee »

Probably something like this:

Code: Select all

  openConsole: function() {
    if (window.toErrorConsole) {
        toErrorConsole();
    }
    else if (window.toJavaScriptConsole) {
        toJavaScriptConsole();
    } else {
        window.openDialog("chrome://global/content/console.xul", "", "chrome,all,dialog=no");
    }
  },

Phil
User avatar
therube
Posts: 21703
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Console² 1.0a3 Pre-Release

Post by therube »

:-)

Code: Select all

v 2.6.2rc1
====================================================================
x Fixed impossible to copy lines from Console2 if opened by NoScript
  (thanks therube for reporting and Phil Chee for suggestion)
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
User avatar
jscher2000
Posts: 11742
Joined: December 19th, 2004, 12:26 am
Location: Silicon Valley, CA USA
Contact:

Re: Console² 1.0a3 Pre-Release

Post by jscher2000 »

This is a bit off topic, but is there an update for the filter syntax? I'm trying to disregard CSS warnings generated (in this instance) by a Wordpress template. Typing suffusion in the search box displays only the warnings for css files in the template folder, but -suffusion does not yield the expected result of displaying everything else; instead, it displays nothing.
User avatar
Philip Chee
Posts: 6475
Joined: March 1st, 2005, 3:03 pm
Contact:

Re: Console² 1.0a3 Pre-Release

Post by Philip Chee »

jscher2000 wrote:This is a bit off topic, but is there an update for the filter syntax? I'm trying to disregard CSS warnings generated (in this instance) by a Wordpress template. Typing suffusion in the search box displays only the warnings for css files in the template folder, but -suffusion does not yield the expected result of displaying everything else; instead, it displays nothing.

Sorry for the confusion. There are two "search" widgets. The one that appears by default is the (simple) Search bar. Then there is the Filter bar (originally a separate extension called Console Filter). You can customize the Console2 Toolbars using [right-click]->Customize and drag the Filter widget on to a C2 toolbar.

Phil
User avatar
jscher2000
Posts: 11742
Joined: December 19th, 2004, 12:26 am
Location: Silicon Valley, CA USA
Contact:

Re: Console² 1.0a3 Pre-Release

Post by jscher2000 »

Phil, thank you, this is great.
Elbart
Posts: 997
Joined: February 21st, 2010, 8:38 am

Re: Console² 1.0a3 Pre-Release

Post by Elbart »

Starting with Fx 19.0, 0.9 wouldn't display any errors or warnings. Installing 1.0a3 fixed this.
gone
tnonce
Posts: 7
Joined: June 14th, 2011, 12:45 pm

Re: Console² 1.0a3 Pre-Release

Post by tnonce »

Maybe mark this 1.0 and upload it to AMO? Or is this extension entirely dead?
Elbart
Posts: 997
Joined: February 21st, 2010, 8:38 am

Re: Console² 1.0a3 Pre-Release

Post by Elbart »

Not dead but rather unnecessary, as the error-console will be merged with the browser-console in 25, which has pretty much all the features of this addon, too.
gone
User avatar
patrickjdempsey
Posts: 23686
Joined: October 23rd, 2008, 11:43 am
Location: Asheville NC
Contact:

Re: Console² 1.0a3 Pre-Release

Post by patrickjdempsey »

"Pretty much" except....

- filtering content and chrome
- readable, clearly divided sections for each entry
- previews showing the botched code and arrows pointing to the exact break
- filter for XML/XUL/HTML... does it even display these at all?

Firefox 24 killed off the classic Error Console and replaced it with something based on the hideous and hard-to-read Web Console.... which I've managed to avoid until now. And Console^2 doesn't appear to be compatible at all. :(
Tip of the day: If it has "toolbar" in the name, it's crap.
What my avatar is about: https://addons.mozilla.org/en-US/seamonkey/addon/sea-fox/
Post Reply