LOGIN_URL, LOGOUT_URL, LOGIN_REDIRECT_URL and SCRIPT_NAME.

2010-07-07 Thread Graham Dumpleton
Can the following issue be revisited. http://code.djangoproject.com/ticket/8906 Conversation about it at: http://groups.google.com/group/django-users/browse_frm/thread/c457599caab6e87d/b70e1f56ad38f4cb This is another of those issues where Django isn't being particular friendly to people w

Re: New admin feature: Delete and replace with existing object

2010-07-07 Thread Felipe Prenholato
Just last week I need to implement something like option 2 in a generic crud (people that command project doesn't liked admin ...), so what I simple customized delete of model and force app to call delete of model when deleting more than one object. So, I really vote +1 for this kind of change. 2

Re: Suggestion: Better handling of HTML entities by slugify()

2010-07-07 Thread Jeremy Dunck
On Wed, Jul 7, 2010 at 8:27 AM, Russell Keith-Magee wrote: > On Wed, Jul 7, 2010 at 4:00 AM, C. Alan Zoppa wrote: >> 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 fro

Re: Suggestion: Better handling of HTML entities by slugify()

2010-07-07 Thread C. Alan Zoppa
And sometimes I want articles inserted in my slug, but it's an unusual case. For example, a title like 'This is the way this works' gets reduced to 'way-works', which is not very useful. But I can easily tweak the slug by hand. I think the occasional desire to blog about HTML entities is a similar

Re: Suggestion: Better handling of HTML entities by slugify()

2010-07-07 Thread Luke Plant
On Wed, 2010-07-07 at 21:27 +0800, Russell Keith-Magee wrote: > On Wed, Jul 7, 2010 at 4:00 AM, C. Alan Zoppa wrote: > > 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 entirel

Re: MySQL index hints

2010-07-07 Thread Russell Keith-Magee
On Mon, Jul 5, 2010 at 11:19 PM, Simon Litchfield wrote: >> I would like to know how you're validating your assertion that MySQL >> is the most used backend. It doesn't match my experience or >> observation. > > Nobody knows for sure. I'd put my money on it though. > >> The fact that this is a MyS

Re: MySQL index hints

2010-07-07 Thread Russell Keith-Magee
On Wed, Jul 7, 2010 at 8:07 AM, Kevin Howerton wrote: >> 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...

Re: Suggestion: Better handling of HTML entities by slugify()

2010-07-07 Thread Russell Keith-Magee
On Wed, Jul 7, 2010 at 4:00 AM, C. Alan Zoppa wrote: > 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 “Ob

Re: New admin feature: Delete and replace with existing object

2010-07-07 Thread Russell Keith-Magee
On Wed, Jul 7, 2010 at 3:41 PM, Ric wrote: > Hello i opened a ticket, but somone suggest me to discuss this new > feature here. > > http://code.djangoproject.com/ticket/13900 > > i would like to edit > django.contrib.admin.options.ModelAdmin?.delete_view and add a helpful > feature. > > Inste

Re: ticket #13674: Javascript for adding inline fields doesn't update "for" attribute in label

2010-07-07 Thread Tay Ray Chuan
On Wed, Jul 7, 2010 at 8:13 PM, Tay Ray Chuan wrote: > Hi, > > a simple oneline fix is attached to the ticket; any feedback/reviews > is appreciated. oops - ticket url here: http://code.djangoproject.com/ticket/13674 -- Cheers, Ray Chuan -- You received this message because you are subscri

ticket #13674: Javascript for adding inline fields doesn't update "for" attribute in label

2010-07-07 Thread Tay Ray Chuan
Hi, a simple oneline fix is attached to the ticket; any feedback/reviews is appreciated. -- Cheers, Ray Chuan -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develop...@googlegroups.com. To uns

New admin feature: Delete and replace with existing object

2010-07-07 Thread Ric
Hello i opened a ticket, but somone suggest me to discuss this new feature here. http://code.djangoproject.com/ticket/13900 i would like to edit django.contrib.admin.options.ModelAdmin?.delete_view and add a helpful feature. Instead of deleting all the nested objects, the delete_view could h

Re: Suggestion: Better handling of HTML entities by slugify()

2010-07-07 Thread Jerome Leclanche
I wasn't even aware there was a slugify; mine looks something like this[1]." However, if you are passing the actual string "“stuffhere”" to slugify(), you are escaping it too early. It should go something like slugify(txt), escape(txt), response(txt). This is more of a django-users matter at this