Any Django developers in Chicago?

2015-02-11 Thread Brian Ray
Hey all, We are having a Django focused meetup with ChiPy (Chicago Python User Group) tomorrow night: RSVP http://chipy.org and/or http://www.meetup.com/_ChiPy_/events/220117890/ Talks will be recorded. Also looking for more talks. Hope to see some of you there. Warm Regards, Brian Ray

Chicago Python User Group: Customize Django Admin

2010-06-10 Thread Brian Ray
Hello: I will be presenting tonight at ChiPy http://chipy.org If anyone is around Chicago tonight, feel free to stop in. Here is the official announcement http://mail.python.org/pipermail/chicago/2010-June/006863.html thanks, Brian Ray http://twitter.com/brianray -- You received this message

Automatically printing display of model object's data

2009-01-27 Thread Brian Ray
: atr =getattr(res,instr) print "%s: %s" % (instr,atr) It sort of prints out an easy to read representation of any model object. Is there a better way to do this? I am sure there was something already in Django to do this, but I am having a hard way of finding. I am s

Re: Session problems

2006-11-28 Thread Brian Ray
sions were not working properly for many reasons. I can recall once I build mod_python linking to the wrong libraries, and some strange stuff happened. -- Brian Ray (http://kazavoo.com) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

Manipulator Change calls INSERT

2006-01-27 Thread Brian Ray
is a AccountManipulatorChange. I double checked by calling HttpResponse on manipulator.__class__.__name__. I do use a "_pre_save" in my model and I was wondering if this somehow was causing this unexpected behaviour. tia, Brian Ray <http://brianray.chipy.org> aim: brianray34

Database API Boolean Queries

2006-01-24 Thread Brian Ray
="t"); Alhtough, I am unsure if this will work if I switch Database platforms. Is there a better way? Thanks, Brian Ray bray sent com http://brianray.chipy.org

Re: Apache Authentication

2006-01-07 Thread Brian Ray
Thanks Ian. But, this is not really what I am doing here. I do not want to create users from Apache. Kind Regards, Brian

Re: Apache Authentication

2006-01-07 Thread Brian Ray
so, this is fine by me. Regards, Brian Ray

Re: Apache Authentication

2006-01-07 Thread Brian Ray
Adrian, I took a look at modpython.py. I changed line 16 to: _str_to_bool = lambda s: s.lower() in ('1', 'true', 'on', 'yes') Note the parethesis. Seems to work now. Cool, Thanks!