Re: Firebug Inactivated on Page Reload

2010-12-01 Thread gmai
On Dec 1, 11:07 am, Mike Wills wrote: --- Are you in private browsing mode? Or disabled history? That was my problem today. Yes, in my old firefox profile I use private browsing. But with the new/clean firefox profile with all the default settings I am not using private browsing and history is no

Re: Please stop making new versions of FireBug

2010-12-01 Thread John J Barton
On Dec 1, 1:00 pm, Dean wrote: > The last version of Firebug worked just fine, now its getting further Firebug 1.5 and all previous versions going back to 0.4 are available for you here: http://getfirebug.com/releases/ > from "usable". I hate companies that try to improve upon a great piece W

Re: Please stop making new versions of FireBug

2010-12-01 Thread Maciej Jaros
@2010-12-01 22:00, Dean: The last version of Firebug worked just fine, now its getting further from "usable". I hate companies that try to improve upon a great piece of software and end up convoluting it and making a good thing basically bad. STOP. :-). Just disable upgrades. -- You received

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Steve Smith
I don't know that I don't like it; I guess I find it a little odd that the console.log does not output the error object as an object like it used to. But I'm happy to use console.exception to view the error; it's giving me all the info I need. And in fact console.exception does a better job of disp

Please stop making new versions of FireBug

2010-12-01 Thread Dean
The last version of Firebug worked just fine, now its getting further from "usable". I hate companies that try to improve upon a great piece of software and end up convoluting it and making a good thing basically bad. STOP. -- You received this message because you are subscribed to the Google Gr

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread John J Barton
Ok now I see what you mean. The representation we use for the object changed. What don't you like about the new representation? jjb On Dec 1, 12:33 pm, Steve Smith wrote: > You can run this: > > try { >         var tst = new testObj(); > > }catch(e){ >         console.log(e) > } > > in Firebug 1

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Steve Smith
You can run this: try { var tst = new testObj(); }catch(e){ console.log(e) } in Firebug 1.5.4 and 1.6 and compare the outputs. Or try { var tst = new testObj(); }catch(e){ debugger; } and compare the e object in each version. (Provided you don't have testObj set

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread John J Barton
On Dec 1, 10:15 am, Nadav Givoni wrote: > Then it's overriding the method somehow, because I've reverted back to Which method? > FireBug 1.5.4 and the argument passed into the catch is the standard Error > object, in 1.6 it's passing in the object in which the error was caught in. If you post

Re: Auto-completion problem

2010-12-01 Thread Steven Roussey
I can't reproduce it either. Maybe some other extension is loaded and is interfering? On Dec 1, 8:06 am, John J Barton wrote: > I was not able to reproduce this problem. > > jjb > > On Dec 1, 1:14 am, Vampire wrote: > > > > > > > > > Hello everyone! > > I have recently installed the new Firebug

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Steven Roussey
So when you put "arguments" into the watch panel, it has changed somehow? On Dec 1, 10:02 am, Nak1 wrote: > The arguments passed into using 1.6 into the catch statement are > definitely different then the arguments passed into the 1.5 version of > Firebug. > > Nak1 > > On Dec 1, 9:43 am, John J B

Re: Firebug Inactivated on Page Reload

2010-12-01 Thread Mike Wills
Are you in private browsing mode? Or disabled history? That was my problem today. -- Mike Wills http://mikewills.info Sent from my mobile On Dec 1, 2010, at 12:30 PM, John J Barton wrote: > Without your help we cannot fix this problem. > > This is *not* a problem in Firebug itself, otherwis

Re: Firebug Inactivated on Page Reload

2010-12-01 Thread John J Barton
Without your help we cannot fix this problem. This is *not* a problem in Firebug itself, otherwise we would have seen it or one of our beta users would have reported it. This is a problem with some install or setting on your machine. One user has already posted their info on http://code.google.co

Re: Firebug Inactivated on Page Reload

2010-12-01 Thread gmai
I desperately tried to find a solution for this issue mentioned by cbito without success. I am reverting to older version while this issue is addressed. Thanks On Dec 1, 7:29 am, gmai wrote: > I have exactly the same problem as cbito, Firefox 3.6.12, Vista. I > tried the two solutions you sugge

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Nadav Givoni
Then it's overriding the method somehow, because I've reverted back to FireBug 1.5.4 and the argument passed into the catch is the standard Error object, in 1.6 it's passing in the object in which the error was caught in. N On Wed, Dec 1, 2010 at 12:09 PM, John J Barton wrote: > Firebug does not

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread John J Barton
Firebug does not pass arguments into the catch statement, I guess you have some other problem. jjb On Dec 1, 10:02 am, Nak1 wrote: > The arguments passed into using 1.6 into the catch statement are > definitely different then the arguments passed into the 1.5 version of > Firebug. > > Nak1 > > O

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Nak1
The arguments passed into using 1.6 into the catch statement are definitely different then the arguments passed into the 1.5 version of Firebug. Nak1 On Dec 1, 9:43 am, John J Barton wrote: > On Dec 1, 6:45 am, Steve Smith wrote: > > > I just installed Firebug 1.6 and it seems to be overriding

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread Steve Smith
OK so I jumped to some conclusions that were wrong. It's not that Firebug is overriding our try/catch. It's just that the console.log display of the error object has changed. When we switch to using console.exception to display the error object, we get the stack trace, which is what I really needed

Re: Search missing items in HTML view

2010-12-01 Thread John J Barton
On Dec 1, 8:36 am, MilkmanWes wrote: > Using fbug to search pages for a variable in a java script block and I > seem to not be searching inside them. I can find matches above and > below the block, but not inside it. > > Any way around this? Try search in the Script panel with multiple file opt

Search missing items in HTML view

2010-12-01 Thread MilkmanWes
Using fbug to search pages for a variable in a java script block and I seem to not be searching inside them. I can find matches above and below the block, but not inside it. Any way around this? -- You received this message because you are subscribed to the Google Groups "Firebug" group. To pos

Re: HTML edit bug

2010-12-01 Thread John J Barton
Ok this issue is caused by: 1) Firebug dynamic update issues element.innerHTML = html; where html is your text, 2) Firefox issues onStateChange for the arrival of the first HTML for the page, 3) Firebug has special case code in onStateChange handler for about:blank, which triggers our context - cr

Re: HTML edit bug

2010-12-01 Thread John J Barton
Yes, sorry I misread the post. I see the same. jjb On Dec 1, 8:16 am, "Honza (Jan Odvarko)" wrote: > Firefox also doesn't crash for me, but as soon as I type " edit mode is automatically ended and panel-content switches into the > HTML tree display. Anybody also experiencing this? > > Honza > >

Re: Breakpoints only working if breakpoints panel is visible

2010-12-01 Thread Honza (Jan Odvarko)
Can you please provide a test page so, we can also see the problem? Honza On Dec 1, 4:50 pm, flechto wrote: > I am trying to debug some js and in order for firebug to stop on the > break points I have to have the breakpoint panel visible.  It only > seems to need this on the jquery.animate callba

Re: HTML edit bug

2010-12-01 Thread Honza (Jan Odvarko)
Firefox also doesn't crash for me, but as soon as I type " wrote: > This doe not happen for me. > > jjb > > On Dec 1, 4:41 am, dvnitycker wrote: > > > Hi. > > > Open a new blank page. Click on edit html. Start typing in the > > following code : By now, Firebug window has crashed. > > > Srdjan > >

Re: Auto-completion problem

2010-12-01 Thread John J Barton
I was not able to reproduce this problem. jjb On Dec 1, 1:14 am, Vampire wrote: > Hello everyone! > I have recently installed the new Firebug 1.6 and quickly figured out > that the auto-completion (in the "Console" panel) wasn't so good. In > fact, when I try to create a variable, for example, I

Re: Another small 'how did you do this' :)

2010-12-01 Thread John J Barton
On Dec 1, 4:03 am, G wrote: > Hello all, first of all, thank you with all the help, > everything works wonderful! just hope that my boss will not ask me do > all this acrobatic stuff in IE :). > > I would like to ask if someone can point/explain to me how does > firebug edits javascipt, how fire

Re: HTML edit bug

2010-12-01 Thread John J Barton
This doe not happen for me. jjb On Dec 1, 4:41 am, dvnitycker wrote: > Hi. > > Open a new blank page. Click on edit html. Start typing in the > following code : By now, Firebug window has crashed. > > Srdjan -- You received this message because you are subscribed to the Google Groups "Firebu

Re: Doctype syntax error in 1.6

2010-12-01 Thread John J Barton
Sorry but this is not enough information to help. A test page would be ideal. jjb On Dec 1, 2:02 am, Rich Howard wrote: > I just upgraded to 1.6, and my console is now throwing a syntax error > on my doctype declaration. Unfortunately firebug doesn't give me any > further clues as to what it bel

Breakpoints only working if breakpoints panel is visible

2010-12-01 Thread flechto
I am trying to debug some js and in order for firebug to stop on the break points I have to have the breakpoint panel visible. It only seems to need this on the jquery.animate callback. Other breakpoints are working. -- You received this message because you are subscribed to the Google Groups

Re: HTTP Request Response headers

2010-12-01 Thread Honza (Jan Odvarko)
I forgot to mention a NetExport extension that allows to export data collected by the Net panel. The export can be also done automatically, which makes this extension suitable for any automated page load performance tracker. http://www.softwareishard.com/blog/netexport/ Honza On Dec 1, 4:50 pm,

Re: Firefox 4 bug?

2010-12-01 Thread John J Barton
On Dec 1, 7:36 am, Robert K wrote: > ok, my donation sent! :) > > I've been waiting quite a while to buy a t-shirt...  was wondering if I tried T shirts from Zazzle and Spreadshirt, but the result was disappointing. > the logo is available in SVG format so I can print my own t-shirt? Sorry, w

Re: Guys, please, fix the non-displaying long scripts issue

2010-12-01 Thread John J Barton
what all this is > about:http://ipicture.ru/uploads/20101201/jRSvdejv.jpg > > Thanks in advance! -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to fire...@googlegroups.com. To unsubscribe from

Re: HTTP Request Response headers

2010-12-01 Thread ed
Live HTTP Headers can save the results to a file. Though if you're looking to tail or grep the headers in realtime, then it won't work On Nov 28, 4:17 pm, Nashid wrote: > Yes I can use Live HTTP Headers. But this will give the output in the > GUI. > But I want the outputs in a file. Can you pleas

Re: Firebug 1.6 overriding try/catch

2010-12-01 Thread John J Barton
On Dec 1, 6:45 am, Steve Smith wrote: > I just installed Firebug 1.6 and it seems to be overriding our try/ > catch error handling code. This is basically code that catches the > error and does a console.log of the error object. But now instead the > console in Firebug is stopping at the error a

Re: Firefox 4 bug?

2010-12-01 Thread Honza (Jan Odvarko)
On Dec 1, 4:36 pm, Robert K wrote: > ok, my donation sent! :) Excellent! > I've been waiting quite a while to buy a t-shirt...  was wondering if > the logo is available in SVG format so I can print my own t-shirt? All artwork we have is here: http://code.google.com/p/fbug/source/browse/#svn/artwo

Re: Firebug Inactivated on Page Reload

2010-12-01 Thread gmai
I have exactly the same problem as cbito, Firefox 3.6.12, Vista. I tried the two solutions you suggested and they don't solve the problem. On Nov 29, 1:42 pm, John J Barton wrote: > First tryhttp://getfirebug.com/wiki/index.php/FAQ#Resetting_All_Options > then if that does not work > tryhttp://

Re: Break on error? Please?

2010-12-01 Thread John J Barton
On Dec 1, 7:18 am, Neil wrote: > Just this morning I installed the newest Firebug 1.6 for FF 3.6.12 on > Win7. > > In the Console tab I get an error (javascript). > > I used to be able to follow that error and debug, but while the red > circle does appear dark after clicking next to this error,

Re: Firefox 4 bug?

2010-12-01 Thread Robert K
ok, my donation sent! :) I've been waiting quite a while to buy a t-shirt... was wondering if the logo is available in SVG format so I can print my own t-shirt? Rob On Dec 1, 2:16 pm, "Honza (Jan Odvarko)" wrote: > On Dec 1, 2:10 pm, Robert K wrote:> Before I go hid under > a rock, where can

Break on error? Please?

2010-12-01 Thread Neil
Just this morning I installed the newest Firebug 1.6 for FF 3.6.12 on Win7. In the Console tab I get an error (javascript). I used to be able to follow that error and debug, but while the red circle does appear dark after clicking next to this error, it never actually breaks on that error and I c

Firebug 1.6 overriding try/catch

2010-12-01 Thread Steve Smith
I just installed Firebug 1.6 and it seems to be overriding our try/ catch error handling code. This is basically code that catches the error and does a console.log of the error object. But now instead the console in Firebug is stopping at the error and displaying the error message that links to the

Re: Guys, please, fix the non-displaying long scripts issue

2010-12-01 Thread Honza (Jan Odvarko)
t long scripts just do not display and > so I'm in many cases unable to debug. > We have a large gwt application that is obfuscated at production > servers but often needs to be debugged at QA environments. > Here's the example of what all this is > about:http://ipicture.ru

Re: Ctrl-Shift Left not working in FireFox since new version ?

2010-12-01 Thread Honza (Jan Odvarko)
Yes, this is a bug, and already reported here: http://code.google.com/p/fbug/issues/detail?id=3721 Will be fixed in Firebug 1.6.1 (coming soon) Honza On Dec 1, 2:23 pm, Jim wrote: > When I edit a Gmail message, I cannot select by words, using CTRL- > SHIFT left as I do habitually. > If I disable

Ctrl-Shift Left not working in FireFox since new version ?

2010-12-01 Thread Jim
When I edit a Gmail message, I cannot select by words, using CTRL- SHIFT left as I do habitually. If I disable Firebug, it works again. Could you confirm it is a bug ? Thanks in advance. Jean-Marc -- You received this message because you are subscribed to the Google Groups "Firebug" group. To

Re: Firefox 4 bug?

2010-12-01 Thread Honza (Jan Odvarko)
On Dec 1, 2:10 pm, Robert K wrote: > Before I go hid under a rock, where can I donate / buy an awesome > Firebug t-shirt? http://getfirebug.com/contribute Currently you can only donate, t-shirt and mouse pad coming soon! Honza -- You received this message because you are subscribed to the Google

Re: Firefox 4 bug?

2010-12-01 Thread Robert K
Well this is embarrassing... seems I was not using localhost, but another alias, problem was that the alias was not white listed in NoScript. Before I go hid under a rock, where can I donate / buy an awesome Firebug t-shirt? Thanks again, Rob On Dec 1, 1:40 pm, "Honza (Jan Odvarko)" wrote: > >

HTML edit bug

2010-12-01 Thread dvnitycker
Hi. Open a new blank page. Click on edit html. Start typing in the following code : By now, Firebug window has crashed. Srdjan -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to fire...@googlegroups.com. To unsubs

Re: Firefox 4 bug?

2010-12-01 Thread Honza (Jan Odvarko)
> Damn it, now have to figure out which one is interfering with Firebug. > Is there any list of extensions that are known to interfere with > Firebug? FireFile has been recently (just after releasing 1.6.0) reported to cause some problems to the CSS panel. Otherwise you can use label "extensionCon

Re: Firefox 4 bug?

2010-12-01 Thread Robert K
Upgraded, but issue persisted. However, I created a brand new profile and only installed the Firebug (1.7) extension and it worked fine! Damn it, now have to figure out which one is interfering with Firebug. Is there any list of extensions that are known to interfere with Firebug? Thanks for the

Another small 'how did you do this' :)

2010-12-01 Thread G
Hello all, first of all, thank you with all the help, everything works wonderful! just hope that my boss will not ask me do all this acrobatic stuff in IE :). I would like to ask if someone can point/explain to me how does firebug edits javascipt, how firebug allows you to edit some javascript, bo

Guys, please, fix the non-displaying long scripts issue

2010-12-01 Thread ano
ed at production servers but often needs to be debugged at QA environments. Here's the example of what all this is about: http://ipicture.ru/uploads/20101201/jRSvdejv.jpg Thanks in advance! -- You received this message because you are subscribed to the Google Groups "Firebug" gr

Doctype syntax error in 1.6

2010-12-01 Thread Rich Howard
I just upgraded to 1.6, and my console is now throwing a syntax error on my doctype declaration. Unfortunately firebug doesn't give me any further clues as to what it believes is wrong. I'm using the xhtml 1.0 transitional doctype: which is correct according to w3c, so why the syntax error? Any

Re: Strange behaviour after upgrading to 1.6, can't see XML data

2010-12-01 Thread Honza (Jan Odvarko)
This looks like: http://code.google.com/p/fbug/issues/detail?id=2715 which supposed to be fixed, but perhaps you have find another case? Could you make your page public so, I can also try it? Honza On Dec 1, 9:05 am, len wrote: > After upgrading to 1.6 I'm experiencing a strange behaviour. If I

Re: Firefox 4 bug?

2010-12-01 Thread Honza (Jan Odvarko)
Firebug 1.6 is for Firefox 3.6 Firebug 1.7 is for Firefox 4, but see http://getfirebug.com/knownissues Also, there was a bug with the alert() method used in the command line https://bugzilla.mozilla.org/show_bug.cgi?id=613752 (will be fixed in Firebug 1.7a8) Anyway, could you retest with 1.7? If

Firefox 4 bug?

2010-12-01 Thread Robert K
Hey All, I think I have found a bug in Firefox 4 / Firebug 1.6. I am wondering if any one else can reproduce before I open an issue. So the bug is, Firebug will not work if you are running Firefox 4 (b7) and the site/page you are accessing is on a local webserver (127.0.0.1). If I goto http://loc

Auto-completion problem

2010-12-01 Thread Vampire
Hello everyone! I have recently installed the new Firebug 1.6 and quickly figured out that the auto-completion (in the "Console" panel) wasn't so good. In fact, when I try to create a variable, for example, I begin to type: var t; But then, the autocompletion wants to append the name of one of my

Strange behaviour after upgrading to 1.6, can't see XML data

2010-12-01 Thread len
After upgrading to 1.6 I'm experiencing a strange behaviour. If I use firefox to open XML data I can see it fine. If I enable firebug on the selected tab then only the CDATA can be seen as simple text. For example given the xml: test I can see only the "test". Any ideeas on why this happens? Regar

Re: http://blog.coursevector.com/flashbug plugin does not work with new firebug 1.6. !

2010-12-01 Thread Steven Roussey
Does the beta channel version of flashbug work? On Nov 30, 1:22 pm, Mili wrote: > When used with Firebug 1.6., released on November 29, 2010, the FF > extension called "flashbug" does not display the main bar !??? > When used with Firebug 1.6., the titlebar: > > Trace log, Policylog, Shared Objec