Re: ADMIN_MEDIA_PREFIX default value (#2891)

2008-02-18 Thread Collin Grady
Collin Grady said the following: > The ticket is still "Closed: wontfix" which looks ignored to me :) It's been pointed out to me that the tone of my messages could come off a bit rude - I did not intend that, and I apologize if that is the case. -- Collin Grady The reader this message encounte

Re: ADMIN_MEDIA_PREFIX default value (#2891)

2008-02-18 Thread Collin Grady
Malcolm Tredinnick said the following: > It's hardly been ignored. There was quite a spirited thread last time it > came up. The ticket is still "Closed: wontfix" which looks ignored to me :) -- Collin Grady Just remember, wherever you go, there you are. -- Buckaroo Bonzai --~

Re: ADMIN_MEDIA_PREFIX default value (#2891)

2008-02-18 Thread Malcolm Tredinnick
On Mon, 2008-02-18 at 18:03 -0800, Collin Grady wrote: > I wanted to bring this issue[1] up again, as it's still constantly > causing issues for people - I seem to help at least 1 or 2 people every > single week having problems with their media because they tried to setup > static.serve to the sa

ADMIN_MEDIA_PREFIX default value (#2891)

2008-02-18 Thread Collin Grady
I wanted to bring this issue[1] up again, as it's still constantly causing issues for people - I seem to help at least 1 or 2 people every single week having problems with their media because they tried to setup static.serve to the same URL as ADMIN_MEDIA_PREFIX I still believe that this will not

Re: Issues with Django under Windows XP SP2?

2008-02-18 Thread vizcayno
Tom: > it appears to be happening when reloading > > python manage.py runserver --noreload and see if it still happens > All is working right now. I had the same problem using Aspen, and invoking as "python C:\os\aspen\bin\aspen -a0.0.0.0:8000 -- mode=production -rc:/os/200A" I have no problems. M

2GB Free Online Storage !

2008-02-18 Thread kinkon gowyard
Free online photo Album, Free online auto-matic Back-up, Free Access your MP3 music online,2 GB For Free! That's right, we are happy to give you a whopping great 2GB of secure online storage where you can manage and share your files easily. For Free! Get Free Code: Limited Time Only! http://www.w

Re: ModelForm fieldsets?

2008-02-18 Thread Malcolm Tredinnick
On Mon, 2008-02-18 at 11:45 -0800, pm13 wrote: [...] > It seems that this idea could be accepted. And it is possible that > someone will do it. So I would like to say that I have patches for > these problems (fieldsets, inlines and more) - through inner Meta > class. They are almost untested (no

Re: ModelForm fieldsets?

2008-02-18 Thread pm13
On 18 Ún, 18:21, Brian Rosner <[EMAIL PROTECTED]> wrote: > > Is there any good reason why the "fieldsets" option of ModelAdmin (in > > newforms-admin) shouldn't be pushed down into the newforms library? > > What I'm doing right now by overriding change_form.html would be even > > easier if I could

Re: ModelForm fieldsets?

2008-02-18 Thread Tom Tobin
On 2/18/08, Brian Rosner <[EMAIL PROTECTED]> wrote: > > > Is there any good reason why the "fieldsets" option of ModelAdmin (in > > newforms-admin) shouldn't be pushed down into the newforms library? > > What I'm doing right now by overriding change_form.html would be even > > easier if I could de

Newforms admin Auth

2008-02-18 Thread Michael Newman
I am still hacking around trying to figure out what exactly is still having issues in newforms-admin auth. After I updated the patch at http://code.djangoproject.com/ticket/6083 , I still got a strange and inconsistant error despite restart after restarts of apache about how my registration couldn

Re: ModelForm fieldsets?

2008-02-18 Thread Brian Rosner
> Is there any good reason why the "fieldsets" option of ModelAdmin (in > newforms-admin) shouldn't be pushed down into the newforms library? > What I'm doing right now by overriding change_form.html would be even > easier if I could define my fieldsets on a ModelForm. I don't see reason why it s

Re: Issues with Django under Windows XP SP2?

2008-02-18 Thread Tom Vergote
it appears to be happening when reloading python manage.py runserver --noreload and see if it still happens this has the unpleasant effect of not picking up code changes immediately, but might be a workaround till somebody finds a solution On Feb 18, 2008 5:02 PM, vizcayno <[EMAIL PROTECTED]> w

Re: Drop generic relations in favor of the model inheritance?

2008-02-18 Thread Malcolm Tredinnick
On Mon, 2008-02-18 at 03:06 -0800, Jiri Barton wrote: > The infamous commit #7126 seems to obsolete generic relations -- to > me. > > class ContentType(models.Model): > class Meta: > abstract = True > > class TaggedItem(models.Model): > content_object = models.ForeignKey(Content

Issues with Django under Windows XP SP2?

2008-02-18 Thread vizcayno
Hello: I work with Windows XP SP2, Python25 and Django with revision 7127. In this and previous revisions (can not remember) I am having the next "unexpected" error after some minutes of normal working with Django applications: .python manage.py runserver Validating models... 0 errors found Djan

American Idol game developed in Django

2008-02-18 Thread Ed Menendez
This was our first site in Django and also our intro to Python. We used to play this on a spreadsheet with friends but were able to develop the replacement in about a week with Django. Probably could have been done much quicker if we weren't newbies to the framework. http://aigame.digitalhaiku.co

Re: Is it a good thing to continue using django multi-db-support ?

2008-02-18 Thread Ben Ford
I second this opinion unfortunately I did bring multi-db up to HEAD previously, the results of which are in #4747 as Russ said. I'm very busy on a new project at the moment, but multi-db in django is something I definitely want to revisit in the future. On the advice of a few people (and due to wo

Re: Drop generic relations in favor of the model inheritance?

2008-02-18 Thread James Bennett
On Feb 18, 2008 5:06 AM, Jiri Barton <[EMAIL PROTECTED]> wrote: > The infamous commit #7126 seems to obsolete generic relations -- to > me. Not by a long shot. To take your example, you'd need to go back and rewrite every single model you'd like to use tags with to inherit from the appropriate b

Drop generic relations in favor of the model inheritance?

2008-02-18 Thread Jiri Barton
The infamous commit #7126 seems to obsolete generic relations -- to me. class ContentType(models.Model): class Meta: abstract = True class TaggedItem(models.Model): content_object = models.ForeignKey(ContentType) The just introduced model inheritance will even let me include fie

Re: Is it a good thing to continue using django multi-db-support ?

2008-02-18 Thread Russell Keith-Magee
On Feb 18, 2008 7:10 PM, Grindizer <[EMAIL PROTECTED]> wrote: > > Hi everybody. > > We are actually trying to use Django multi-db support for internal > need in our group. We used this branch because we have historical > constraint (we build a Django app over an old db application which use > seve

Is it a good thing to continue using django multi-db-support ?

2008-02-18 Thread Grindizer
Hi everybody. We are actually trying to use Django multi-db support for internal need in our group. We used this branch because we have historical constraint (we build a Django app over an old db application which use several databases) Now, and after I read several threads about the multi suppo