Re: Lock-In

2008-05-03 Thread [EMAIL PROTECTED]
django-developers is meant for questions regarding the development of django itself, questions about the usage of django should be directed to django-users. On May 4, 1:27 am, Kamal <[EMAIL PROTECTED]> wrote: > Question, > > I work in a company that is adopting the agile method, scrum. They are >

Re: GSOC: More backends for djangosearch

2008-05-03 Thread mrts
Good luck with the project! Has something been decided on using db backend full text search facilities as a convenient start? The point is that indexers are overkill for smaller projects and they may not be available in constrained environments (e.g. shared hosting). In this case it should be ea

Lock-In

2008-05-03 Thread Kamal
Question, I work in a company that is adopting the agile method, scrum. They are doing implementing it using c#, which I think is funny. How does a company decide to switch its development language? We have very long development cycle's, and I would have thought they would have looked at the lan

Re: Aggregate Support to the ORM

2008-05-03 Thread Russell Keith-Magee
On Thu, May 1, 2008 at 10:07 PM, Nicolas E. Lara G. <[EMAIL PROTECTED]> wrote: > > Hello, > > With (1) we can get unexpected results. Imagine we were not using max > but sum instead, the buyer's age would be sumed as many times as he > has made a purchase. I disagree that (1) is unexpected -

Re: Status of ticket #6430

2008-05-03 Thread Russell Keith-Magee
On Fri, May 2, 2008 at 1:12 AM, Warren <[EMAIL PROTECTED]> wrote: > > It looks like someone else hit the same trivial bug I ran into and put > some considerable effort into writing a test case for it. > > However, progress on getting this fix included seems to have stalled > over 3 months ago.

Re: Newforms-Admin: cleaner way to allow developers to do Form pre-save/post-save work

2008-05-03 Thread phillc
whats wrong with overridng save, then calling the super.save() ? On May 2, 8:10 am, Alen Ribic <[EMAIL PROTECTED]> wrote: > At the moment, it doesn't seem that a developers can do pre-save/post- > save work cleanly when dealing with Forms in NewForms Admin using > django.newforms.models.ModelForm

Re: GSOC: More backends for djangosearch

2008-05-03 Thread Leo Soto M.
On Sat, May 3, 2008 at 5:33 PM, Ben Firshman <[EMAIL PROTECTED]> wrote: > > Hello all! > > A quick introduction: I have been accepted to the GSoC to work on > Django. I will be working on the djangosearch app > (http://code.google.com/p/djangosearch/ > ), in particular adding support for addi

Re: django templates in javascript

2008-05-03 Thread Robert Coup
On Sat, May 3, 2008 at 8:40 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Was looking into using javascript templates for client side html > creation but everything was so bloated until I found this: > http://www.devhd.com/item0002.htm. It does all the heavy lifting on > the server and

GSOC: More backends for djangosearch

2008-05-03 Thread Ben Firshman
Hello all! A quick introduction: I have been accepted to the GSoC to work on Django. I will be working on the djangosearch app (http://code.google.com/p/djangosearch/ ), in particular adding support for addition search backends, mentored by Joseph Kocherhans. I will spend time getting Luce

Re: ImportError at /

2008-05-03 Thread [EMAIL PROTECTED]
For the future, Django developers is meant for discussion of the development of django, for usage questions please use the django-users list. On May 3, 9:20 am, cootetom <[EMAIL PROTECTED]> wrote: > Sorry, I'm being silly... I've realised my mistake now and it works > just fine. I was running man

Re: ImportError at /

2008-05-03 Thread cootetom
Sorry, I'm being silly... I've realised my mistake now and it works just fine. I was running manage.py in the wrong directory. School boy error! On 3 May, 15:11, cootetom <[EMAIL PROTECTED]> wrote: > Hi all, I'm trying to use Django and am just getting it up and > running. I've set up a projec

ImportError at /

2008-05-03 Thread cootetom
Hi all, I'm trying to use Django and am just getting it up and running. I've set up a project using 'django-admin.py startproject myapp', this project now exists in a directory C:\Python25\apps\djcode \myapp. Next thing I did was start the developement server 'python manage.py runserver 8080'. Al

django templates in javascript

2008-05-03 Thread [EMAIL PROTECTED]
Was looking into using javascript templates for client side html creation but everything was so bloated until I found this: http://www.devhd.com/item0002.htm. It does all the heavy lifting on the server and generates javascript functions that take a context parameter. You can then simply include t