Let windows users run the test suite

2006-09-23 Thread SmileyChris
I just uploaded a patch to allow windows users to run the test suite: http://code.djangoproject.com/ticket/2099 I would mark as [patch] but Akismet won't let me (I've emailed Tom for another whitelist). --~--~-~--~~~---~--~~ You received this message because you

Re: I can't mark a ticket as having a patch.

2006-09-23 Thread SmileyChris
Seems I've been bitten (again) too by the akismet snake. Grr... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To u

Re: Form generator framework

2006-09-23 Thread Manuel Saelices
Impressive... Apps like that is a perfect DRY example. It could be a first step to develop a huge CMS based on django. El vie, 22-09-2006 a las 08:41 +, Mikko Ohtamaa escribió: > Hi, > > I have created a little HTML form generator framework for Django. The > framework (django.contrib package

Re: RowLevelPermissions and show_all_rows

2006-09-23 Thread Chris Long
Fixed in latest revision. Chris schotm wrote: > Hi i just started with django yesterday and was testing RLP today. > > In the order it says this in the documentation: > The order of checking permissions will work in the following order: > User Row Level Permission -> Group Row Level Permission -

Re: I can't mark a ticket as having a patch.

2006-09-23 Thread Gary Wilson
Linicks wrote: > I have been having issues with Akismet as well. I have submitted a > ticket(http://code.djangoproject.com/ticket/2801), so hopefully someone > will have a chance to look at this issue. Akismet has been blocking my > Wiki updates, but allowed me to submit a ticked without any iss

Re: I can't mark a ticket as having a patch.

2006-09-23 Thread Linicks
I have been having issues with Akismet as well. I have submitted a ticket(http://code.djangoproject.com/ticket/2801), so hopefully someone will have a chance to look at this issue. Akismet has been blocking my Wiki updates, but allowed me to submit a ticked without any issues. I have tried it w

Re: CharFields and children defaulting to emtpy string

2006-09-23 Thread Gary Wilson
Malcolm Tredinnick wrote: > Think about how the data is entered: through a web form (the admin > interface, or a custom form). Now, how do you differentiate between an > explicit empty string and a "no data entered and so it should be NULL" > field? With web entry, you can't, so Django chooses to

Re: I can't mark a ticket as having a patch.

2006-09-23 Thread Gary Wilson
Just FYI, I have noticed that when I try to alter tickets and leave the "anonymous" default for email address, there is a high probability that Akismet will reject it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Helping creating a manager

2006-09-23 Thread [EMAIL PROTECTED]
My problem is I need to be able to pull all "scores" for all 's at once. I didn't see anything in Generic Relations that did such a thing. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. T

Re: Helping creating a manager

2006-09-23 Thread Malcolm Tredinnick
On Sat, 2006-09-23 at 14:19 +, [EMAIL PROTECTED] wrote: > What If I wanted to contribute this to Django. Seems to be more in > place here than in the users list At the moment you are asking how to solve a particular problem, which I believe I've more or less answered in a way that uses exist

Re: Helping creating a manager

2006-09-23 Thread [EMAIL PROTECTED]
What If I wanted to contribute this to Django. Seems to be more in place here than in the users list (which i've found completely useless, its full of "how do i install django" type crap) --~--~-~--~~~---~--~~ You received this message because you are subscribed t

Re: Helping creating a manager

2006-09-23 Thread [EMAIL PROTECTED]
What If I wanted to contribute this to Django. Seems to be more in place here than in the users list (which i've found completely useless, its full of "how do i install django" type crap) --~--~-~--~~~---~--~~ You received this message because you are subscribed t

Re: Helping creating a manager

2006-09-23 Thread Malcolm Tredinnick
Please continue this thread on the django-users list. It doesn't have anything to do with the development of Django itself. On Sat, 2006-09-23 at 13:34 +, [EMAIL PROTECTED] wrote: > I could just relate the rating's model to the scores, it would be > performing the same function. I don't unde

Re: Helping creating a manager

2006-09-23 Thread [EMAIL PROTECTED]
I could just relate the rating's model to the scores, it would be performing the same function. I can't use just a foreign key as this needs to be generic. I want to simply be able to plug in ratings to any model without having to modify the model itself. Whether it be my articles, forums, image

Re: Extend URL resolver support for HTTP Methods / REST support

2006-09-23 Thread [EMAIL PROTECTED]
Simon de Haan wrote: > I've posted a patch in trac which will allow the urlresolver to > select a view depending on the HTTP method (GET,POST,PUT,DELETE, etc..) > Its posted at http://code.djangoproject.com/ticket/2784 > [..] > I'd be interested in your ideas. The URL resolver could also try to fi

I can't mark a ticket as having a patch.

2006-09-23 Thread Ned Batchelder
I entered ticket #2791 yesterday, with a patch. The instructions say to put "[patch]" into the subject. But editing the ticket to make that change responds with "Akismet rejected spam". Any change that puts the dreaded p-word into the subject suffers the same fate. We need some way to indi

Re: Helping creating a manager

2006-09-23 Thread Malcolm Tredinnick
On Sat, 2006-09-23 at 10:46 +, [EMAIL PROTECTED] wrote: > I have a rating system, it works similar to Digg.com (as I would > assume). > > I have two tables: > > table a, scores > id > content_type (ForeignKey) > object_id (Integer) > score (Integer) > > table b, ratings > id > content_type

Helping creating a manager

2006-09-23 Thread [EMAIL PROTECTED]
I have a rating system, it works similar to Digg.com (as I would assume). I have two tables: table a, scores id content_type (ForeignKey) object_id (Integer) score (Integer) table b, ratings id content_type (ForeignKey) object_id (Integer) user (ForeignKey) ip rating When someone rates an obje

Re: Cross-process event dispatcher

2006-09-23 Thread mdornseif
I think this is a a whole a very nice idea. Max Derkachev wrote: > 1. Events should be routed using IP protocol. [...] > 2. There should be a master server (started as a standalone daemon). > 3. Every Django instance that needs to be aware of application-wide > events [...] If you are not afte