Re: 1.3: Start deprecating mod_python?

2010-07-06 Thread Kevin Howerton
Could be good to include some text about using the python loggers on that WSGI debug page, rather than relying on the apache logging mechanisms. In django land ... there's django-devserver, django-debugtoolbar, and django-lumberjack. All of them more or less share the same profilers and such.

Re: MySQL index hints

2010-07-06 Thread Kevin Howerton
> For a very high traffic project backed by 20+ DB servers Slightly OT, but MySQL performance related... If you are write heavy, there's another issue that I imagine would bring significant gains on a MyISAM setup of that proportion... and possibly other databases to a lesser degree (the locking

Suggestion: Better handling of HTML entities by slugify()

2010-07-06 Thread C. Alan Zoppa
I occasionally enter special characters as HTML entities (e.g. , , etc.) in an object's title. I feel that slugify() would be more useful if these were removed entirely from the returned slug. For example: At the moment, a title of Object Title returns the slug " ldquoobject-titlerdquo." It is

test refactor update

2010-07-06 Thread Paul McMillan
This past week I've been working on integrating unittest2. There were several difficulties including precisely how to bundle it (yes, we're doing that, I know, many of us don't like the choice), and I ended up needing to bundle a patched version because of the format used by the imports in the

Re: Digest for django-developers@googlegroups.com - 16 Messages in 5 Topics

2010-07-06 Thread Simon Lambert
On 6 Jul 2010, at 04:45, django-developers+nore...@googlegroups.com wrote: Today's Topic Summary Group: http://groups.google.com/group/django-developers/topics Spam attack on the Wiki [2 Updates] Django Developers needed for Start-up Long Island, NY [1 Update] MySQL index hints [7

Re: Tests for generic views' pagination

2010-07-06 Thread Russell Keith-Magee
On Tue, Jul 6, 2010 at 4:36 PM, Julien Phalip wrote: > On Jul 6, 5:54 pm, Russell Keith-Magee > wrote: >> On Tue, Jul 6, 2010 at 1:43 PM, Julien Phalip wrote: >> > Hi, >> >> > I'm starting to work on ticket #2367 ("Pagination for

Re: Tests for generic views' pagination

2010-07-06 Thread Julien Phalip
On Jul 6, 5:54 pm, Russell Keith-Magee wrote: > On Tue, Jul 6, 2010 at 1:43 PM, Julien Phalip wrote: > > Hi, > > > I'm starting to work on ticket #2367 ("Pagination for date based > > generic views" -http://code.djangoproject.com/ticket/2367) and I'm >

Re: Tests for generic views' pagination

2010-07-06 Thread Russell Keith-Magee
On Tue, Jul 6, 2010 at 1:43 PM, Julien Phalip wrote: > Hi, > > I'm starting to work on ticket #2367 ("Pagination for date based > generic views" - http://code.djangoproject.com/ticket/2367) and I'm > looking into the object_list generic view as a reference. > > For the life of