Re: installation error

2009-10-09 Thread Cassiopeia
Never mind. FF 3.5.3 appears to just have a hard time . see ... http://support.mozilla.com/eu/forum/1/461104 On Oct 8, 9:39 pm, Cassiopeia n...@baytides.ca wrote: - running FF3.5.3 and FB 1.4.3  on Vista Business. - since the last FB upgrade, FB is no longer available. The extension.log

Re: Firebug Add-on installed, no idea where to open

2009-10-09 Thread ramasaig
I've no experience of FEBE, but I notice it's had lots of five star reviews, and then just recently two with complaints about corrupted files. It's another Extension, so could it be having trouble with FF 3.5.3 like the rest of us ? WD is more important to me than FB, so I'm going to leave the

Re: A little geek entertainment...

2009-10-09 Thread Wladimir Palant
You are trying to use E4X syntax on something that isn't an XML object - http://en.wikipedia.org/wiki/ECMAScript_for_XML Correct use of that syntax: var data = rootvalue a=1foo/valuevalue a=1bar/ valuevalue a=2bas/value/root; alert(data.value.(@a == 1)); bar is also a valid filter but it is a

Re: A little geek entertainment...

2009-10-09 Thread johnjbarton
On Oct 9, 2:20 am, Wladimir Palant trev@adblockplus.org wrote: You are trying to use E4X syntax on something that isn't an XML object -http://en.wikipedia.org/wiki/ECMAScript_for_XML Correct use of that syntax: var data = rootvalue a=1foo/valuevalue a=1bar/ valuevalue

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread Andrew R
Thank you for that information, apparently something is askew with my Firebug.chrome in my panel. I have this code: const superClass = Firebug.ActivablePanel; OAdfvPanel.prototype = extend(superClass, { ... reattach: function (doc) { logger.trace('OAdfvPanel.reattach: %s', doc); try

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread johnjbarton
On Oct 9, 8:59 am, Andrew R andrew.rw.robin...@gmail.com wrote: Thank you for that information, apparently something is askew with my Firebug.chrome in my panel. I have this code: ... Firebug.chrome.$('fbAdfvTypeMenu') Is returning null So the |document| in the scope that chrome.js was

Re: Something happen to break on error in svn?

2009-10-09 Thread Steven Roussey
How does this work when you want to debug something that happens when the page loads? If I hit the pause and reload the page, the throbbing pause is gone. So how to debug breaking things at the start of the page before I get a chance to race over to the pause button? On Oct 5, 5:02 pm,

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread Andrew R
This is what I have: My chrome.manifest: content oracleadfv content/ resourceoracleadfvdocs docs/ locale oracleadfv en-US locale/en-US/ skinoracleadfv classic/1.0 skin/ overlay chrome://firebug/content/firebugOverlay.xul

Firebug debugging is not working

2009-10-09 Thread James Calfee
I'm using Firefox 3.0.12 on Windows and Firebug 1.4.3 When I set and exercise a break point nothing happens. I was so sure it is user error that I watched the Firebug video and used this exact example in the video: Went to getfirebug.com. Set a breakpoint in the onClickTab method on this

Re: Something happen to break on error in svn?

2009-10-09 Thread johnjbarton
On Oct 9, 12:31 pm, Steven Roussey srous...@gmail.com wrote: How does this work when you want to debug something that happens when the page loads? If I hit the pause and reload the page, the throbbing pause is gone. So how to debug breaking things at the start of the page before I get a

Re: Firebug debugging is not working

2009-10-09 Thread johnjbarton
On Oct 9, 1:26 pm, James Calfee jslim...@gmail.com wrote: I'm using Firefox 3.0.12 on Windows and Firebug 1.4.3 When I set and exercise a break point nothing happens.  I was so sure it is user error that I watched the Firebug video and used this exact example in the video: Went to

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread johnjbarton
On Oct 9, 1:26 pm, Andrew R andrew.rw.robin...@gmail.com wrote: Roughly speaking I don't see anything obvious. I would add FBTrace.sysout(lib.$ document: +(doc? doc.location:document.location) ); in lib.js this.$ function and see where it thinks you are when you get null values for

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread Andrew R
Thanks, that has exposed the problem but not the source of the problem. I changed this in chrome.js: $: function(id) { FBTrace.sysout(chrome.$ document: +(document.location) + for ID: + id + and $ is: + $); return $(id); }, And this in lib.js: this.$ = function(id, doc) {

Firebug 1.5a26

2009-10-09 Thread John J Barton
http://blog.getfirebug.com/2009/10/09/firebug-1-5a26/ The last alpha for 1.5 is out. jjb --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Firebug group. To post to this group, send email to firebug@googlegroups.com

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread Andrew R
Okay, this is really odd. After adding the logging in both lib.$ and chrome.$ in the firebug code, I found something really odd. When firebug is inside firefox, everything is cool and the global $ as seen by chrome.$ is the same as FBL.$, but when I open firebug in a window, I get a different $

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread Andrew R
Got to stop for today, but I see that chrome.js has its own global $ function that is the same code as lib.js's $ function. Comparing all of the documents, I get this: FTS0: chrome.$ global function document: chrome://firebug/content/firebug.xul for ID: fbAdfvTypeMenu FTS0: reattach document:

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread johnjbarton
On Oct 9, 3:41 pm, Andrew R andrew.rw.robin...@gmail.com wrote: Okay, this is really odd. After adding the logging in both lib.$ and chrome.$ in the firebug code, I found something really odd. When firebug is inside firefox, everything is cool and the global $ as seen by chrome.$ is the

Re: Extending firebug: Understanding Firebug.chrome.$(id) vs. FirebugChrome.$(id) vs $(id)

2009-10-09 Thread johnjbarton
On Oct 9, 4:00 pm, Andrew R andrew.rw.robin...@gmail.com wrote: Got to stop for today, but I see that chrome.js has its own global $ function that is the same code as lib.js's $ function. Comparing all of the documents, I get this: FTS0: chrome.$ global function document:

Re: Something happen to break on error in svn?

2009-10-09 Thread Steven Roussey
If you hit pause on the script panel and reload I think it should break on the first JS statement in the page. I just want it to break on error. The menu item would persist across page loads, but I can't figure out how to do that now. That's all.