Re: Log errors to file

2010-07-07 Thread elijah rutschman
You could implement a middleware class with a process_exception method. See: http://docs.djangoproject.com/en/dev/topics/http/middleware/#process_exception -Elijah On Wed, Jul 7, 2010 at 4:35 PM, Jonathan Hayward wrote: > I'm working on a view made to output JSON for Ajax use. My log has: > [0

Re: Unistall an App

2010-08-27 Thread elijah rutschman
On Fri, Aug 27, 2010 at 3:31 PM, nobosh wrote: > I ran python setup.py install to install an emailauth app as Im > working to create an auth that is email/password based. > > http://github.com/redvasily/django-emailauth > > I'm still working to get it installed and working, and would like to > uni

Re: python manage.py runserver - can't see error stack traces when an Ajax handler throws an exception

2010-09-07 Thread elijah rutschman
On Tue, Sep 7, 2010 at 5:10 PM, Phlip wrote: > > Djangoists: > > Under runserver, when I click on an Ajaxy thing on my web site, and > its handler throws an exception... > > ...the console says nothing (in DEBUG = True mode) > > ...and Django renders a beautiful HTML exception report > > ...and se

Re: how to use tkinter widget in django

2010-10-26 Thread elijah rutschman
>         min="0" >       max="1000" >       step="2" >       value="6" id="id_user_entry"/> Try adding a name="user_entry" attribute to the input. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us..

Re: Dajaxice with Jquery issue

2010-04-14 Thread elijah rutschman
One solution would be to attach your click event handler later, using an anonymous function instead of an inline onClick attribute. $('').appendTo('.routelist').click(function(){ Dajaxice.maps.reservation('reservation_callBack'); }); On Wed, Apr 14, 2010 at 10:02 AM, Alexis Selves wrote: > Hi ev

Re: Tracking Row changes

2011-02-24 Thread elijah rutschman
On Thu, Feb 24, 2011 at 2:54 PM, Andre Terra wrote: > Hello everyone, > I'd like to log user changes to MyModel in an app I'm writing. What are some > third-party solutions that you recommend for this? django-activity-stream might meet your needs. https://github.com/justquick/django-activity-stre