Re: Admin media root

2006-09-25 Thread Malcolm Tredinnick
On Mon, 2006-09-25 at 13:00 +0200, Manuel Saelices wrote: > I disagree... You can organizate the information of settings.txt in > other manner, with a essential settings, and non-essential settings (or > insignificant settings, as you say) and fix the problem. And then we have endless threads abo

Cannot search ForeignKeys that can be null?

2006-09-25 Thread Bjørn Stabell
Given these two example models and sample data: class Venue(models.Model): title = models.CharField("title") class Event(models.Model): title = models.CharField("title") venue = models.ForeignKey(Venue, null=True, blank=True) class Admin: search_fields = ('

Re: "Edit Row Level Permissions" showing up everywhere in Admin

2006-09-25 Thread Chris Long
Fixed, though not exactly sure how that error was introduced. The file where the bug was, I haven't touched in a while. Strange and random...but it is fixed now. Chris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

"Edit Row Level Permissions" showing up everywhere in Admin

2006-09-25 Thread Jay Parlar
(Chris), After a recent update of the row-level branch, every single instance of every model in the Admin is now getting the "Edit Row Level Permissions" button on the top right, even the models that don't have "row_level_permissions = True" in their Meta class. Jay P. --~--~-~--~~-

Re: Merquery patches

2006-09-25 Thread Rafael SDM Sierra
New patch added, now you can use slices and __getitem__On 9/14/06, Rafael SDM Sierra <[EMAIL PROTECTED] > wrote:Hi again, I've finished my work for now, it's working fine. Please, someone look the patch3.diff and apply the differences into theirs respectives files http://code.djangoproject.com/tic

Re: using CLOBs for 'TextField' in Oracle backend

2006-09-25 Thread Carlo C8E Miron
On 9/22/06, world_domination_kites <[EMAIL PROTECTED]> wrote: > Carlo C8E Miron wrote: > > Ciao world_domination_kites, > > On 9/20/06, world_domination_kites <[EMAIL PROTECTED]> wrote: > > > I recon what's required is a special cursor encapsulates all that CLOB > > > foolishness such that calling

Re: Admin media root

2006-09-25 Thread Manuel Saelices
I disagree... You can organizate the information of settings.txt in other manner, with a essential settings, and non-essential settings (or insignificant settings, as you say) and fix the problem. But, indeed, is better providing to developer two ways of setting his develop environment (with opti

Re: Cross-process event dispatcher

2006-09-25 Thread Max Derkachev
Hi. I have the very first working prototype. Now it works over UDP, using asyncore library. UDP is unreliable under heavy load, so I don't recommend using it in production. However, my dispatch system abstracts event dispatching from the transport, so any suitable transport can be plugged in. It's

Bug in AutomaticManipulator.save()

2006-09-25 Thread Mikko Ohtamaa
This applies for the current Django trunk. Looks like I don't understand Django code or there is one unthought use case in manipulators: When you are updating only a partial set of object fields in save(), save() fails. Steps to reproduce 1. Create a change manipulator for an object 2. Update on