Re: Anyone want to take over maintaining Instant Django?

2010-07-13 Thread !!CONDORIOUS!!
Hello Cjl, I can host it for you and spend some time keeping it up to date. I have built windows installers before so I could probably fix the installer issues. Cheers, Condor On Tue, Jul 13, 2010 at 7:37 AM, cjl wrote: > Djangoholics: > > I no longer have the time or interest to maintain my l

Re: Calculate distance between 2 latitude/longitude Point

2010-07-28 Thread !!CONDORIOUS!!
(lat , lon in radians) pt 1 = lat, lon, alt=0 pt 2 = lat, lon, alt=0 p1_gcc = gd2gcc(p1) p1_gcc = gd2gcc(p2) gd2gcc ( is a standard operation found on the itnernet) dis = sqrt(sum(pow(p1_gcc-p2-gcc, 2))) cheers, 2010/7/28 Alexandre González : > Hi! I'm using the Django GEOS API [1] in my proj

Re: searching stackedinline fields via search_fields in admin

2010-08-20 Thread Condorious
My goal is to add search to stackedinline in addition to the common standard search fields. If admin model knows enough to stackinline the right stackedinline model, we should be able to Search it as well. I just need someone to point me in the right direction or some me some sample code that

Re: searching stackedinline fields via search_fields in admin

2010-08-21 Thread !!CONDORIOUS!!
Hello Karen, You are right. I'll try that when I get home. I knew that solution and even applied it in another model but because I was blinded by the stackedline. thank you both Condor On Sat, Aug 21, 2010 at 5:34 AM, Karen Tracey wrote: > On Sat, Aug 21, 2010 at 2:01 AM, Condoriou

Re: manage.py syncdb not working

2010-08-24 Thread !!CONDORIOUS!!
I am constantly updating the database model. I have tried South but still feel like the simplest most intuitive way to update a update an existing project's database is to manually create the fields using phpMyAdmin. Two steps 1. Add/Update field model.py 2. Add/Update in database to match (ph