Re: Small report from Django/Rails meetup

2005-11-13 Thread swrainey
I'm a developer trying to choose what framework to use. I would like to give my perspective on the situation. I would personally like to see 0.9 released real soon with a roadmap of what is coming for the 1.0 release and what might not be backwards compatible. I can easily see that this framework

Patch submitted for fulltext search under MySql

2005-11-13 Thread Tim Keating
This is attached to ticket #593 (http://code.djangoproject.com/ticket/593). The patch adds a "match" lookup_type that gets converted into a where clause entry for a full-text search. I'm not convinced this is a good long-term solution, since tt's MySql-only at present, and "match" definitely hews

Re: Names for Django components

2005-11-13 Thread Ian Holsman
yes.. I was referring to the django middleware area. you should break this out to a seperate area as it is a core component by itself, and probably worth a bit of discussion about what you can do with it. samples include 1. changing the authentication system to use Apache, or some other method

Re: Names for Django components

2005-11-13 Thread Simon Willison
On 13 Nov 2005, at 22:56, Adrian Holovaty wrote: 1. The core thingy that hooks in to the web server, maps URLs to views, handles errors and middleware and configuration The Django core. 2. The object-relational mapper The Django ORM. 3. The template system The Django template system.

Re: Names for Django components

2005-11-13 Thread Simon Willison
On 13 Nov 2005, at 22:50, Ian Holsman wrote: is (1) the 'middleware' ? Not really, because the term middleware already means something else in Django: http://www.djangoproject.com/documentation/middleware/

Re: Names for Django components

2005-11-13 Thread Adrian Holovaty
On 11/13/05, Simon Willison <[EMAIL PROTECTED]> wrote: > I'm presenting Django to a crowd of 200+ people on Thursday as part > of the London Web Developer Frameworks evening ( http:// > blog.unixdaemon.net/cgi-bin/blosxom.pl/2005/10/27 ). I'm putting the > slides together now and I want to do one

Re: Names for Django components

2005-11-13 Thread Ian Holsman
is (1) the 'middleware' ? On 11/14/05, Simon Willison <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm presenting Django to a crowd of 200+ people on Thursday as part > of the London Web Developer Frameworks evening ( http:// > blog.unixdaemon.net/cgi-bin/blosxom.pl/2005/10/27 ). I'm putting the >

Names for Django components

2005-11-13 Thread Simon Willison
Hi all, I'm presenting Django to a crowd of 200+ people on Thursday as part of the London Web Developer Frameworks evening ( http:// blog.unixdaemon.net/cgi-bin/blosxom.pl/2005/10/27 ). I'm putting the slides together now and I want to do one detailing the various high- level components of

Re: Pretty error pages for Django

2005-11-13 Thread Cheng Zhang
It's very informative and helpful , esp. for newbie to Django, it's also looking good. How may I get to try it in my own learning projects?

Re: Sessions' annoyances

2005-11-13 Thread Maniac
Adrian Holovaty wrote: I see two solutions: - generate new session key when processing request immediately if there is no cookie I don't see this as a viable solution, because that would require a database hit for every request that doesn't have a session -- which isn't good for performa