Hi, web2pyers! Everyone knows Firebug, the perfect webdeveloper tool. There is also FirePHP addon for using Firebug facilities for server side debugging/ logging. And recently I found firepy (http://code.google.com/p/ firepy/). It makes available to use FirePHP with Django. I have added a bit of code to firepy source for making possible to use it with web2py. Here it is (sorry, I have no time to commit it to firepy or web2py distribution, mayby later): http://www.box.net/shared/dtm0dhgze9
For using place firepy folder to modules directory of your application and add these lines of code at the begining of your models code: import sys sys.path += ['applications/%s/modules' % request.application] from firepy.web2py import start_firepy start_firepy(globals()) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" 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 http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

