On Mon, Sep 21, 2009 at 5:33 PM, Kevin Bache <kevin.ba...@gmail.com> wrote:
> Thanks for both of your ideas. > > Joshua: It is stopping on the first line of code, and I can step through > the manage.py module and if I recall (I'm not in front of my computer at the > moment) it catches breakpoints in other files (ex: settings.py) in the > initial load. What I can't seem to get is breakpoints triggered by the > browser. Have you ever had success with that? Is it possible using > Django's development server? Using any server? > > Daniel: Will pdb breakpoints be triggered by requests from the browser? > > What I'm really looking for is the ability to access a url in my browser > and step through the whole process of resolving a request on the Django > end. If this is possible, how do I do it? If it isn't possible, why, and > is there a way to jerry-rig it? Maybe passing an artificially constructed > request object to the view function--though that sounds like a big time > drain. > > This seems like a problem that most developers must hit from time to time. > How has the community approached it in the past? > That is kind of strange. I vaguely remember having a similar problem though I don't remember how I solved it, though I did solve it, so it is possible. As far as pdb, that is what I'm actually using at the moment. I just use a text editor and run manage.py runserver from a batch file. When it hit's a pdb.set_trace() it will drop you into a Python comand prompt with complete variable context of the current point in the application, in the console window starting for manage.py. So you can inspect and try logic real time basically. It's really powerful and I would definitely recommend looking into it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---