On Tuesday, April 9, 2013 10:34:50 PM UTC+2, [email protected] wrote: > > Hi Honza, Thank you for your response. Yes I have seen this extension > and also have downloaded it. I appreciate that it can send individual logs > to a server automatically butI do not have a server nor would know how to > set this up (im new to this) right now. > > Ideally I would like to just be able to select the code within the console > (as is done when one right clicks and hits 'Log Event') and then just have > the system automatically scrape any changes to the selected code into an > external file (ideally Excel). It is a secure login that is required to > the site so the code would have to be applied once I had manually logged > in. > Yes this is possible even if i don't know how to generate an excel file. Perhaps you could consider XML to be cross platform?
I would recommend following: 1) Read my "Extending Firebug tutorial' and learn how to develop an extension for Firebug http://www.softwareishard.com/blog/extending-firebug/ 2) Explore the existing Console Export extension and learn how to hook logging mechanism - see the listener https://github.com/firebug/consoleexport/blob/master/chrome/content/consoleexport/consoleListener.js#L44 - you are mostly interested in "log" and "logFormatted" events. 3) Develop your own extension (or you could implement this as new feature of ConsoleExport, in such case I can probably help more) - In case you would pick XML over Excel format, you can built on top of existing code in ConsoleExport - see https://github.com/firebug/consoleexport/blob/master/chrome/content/consoleexport/consoleUploader.js#L49 Honza -- -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at https://groups.google.com/forum/#!forum/firebug --- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
