Re: obscure import error(s)

2008-09-14 Thread oggie rob
On Sep 14, 3:28 am, HenrikV <[EMAIL PROTECTED]> wrote: > Where should I look to catch exceptions in application models ? Don't use manage.py, instead set DJANGO_SETTINGS_MODULE and PYTHONPATH and start a regular python shell, then import some apps (i.e. comments app) separately. As far as how th

Re: I want a pony: Django Cheeseshop

2008-09-14 Thread Steve Holden
Martin Diers wrote: > On Sep 13, 2008, at 7:23 PM, Russell Keith-Magee wrote: > > >> On Sun, Sep 14, 2008 at 6:35 AM, Martin Diers <[EMAIL PROTECTED]> wrote: >> >>> The answer is community packaging guidelines. Somebody needs to write >>> or adapt an existing doc on how to package django a

[Joost Forums] I present my self

2008-09-14 Thread Aberingi
Hello everybody. I am a betatester of Joost since April 2007. Joost was my first school to become a betatester. I have learn so much since then. I am happy that joost sent me an invitation to betatest the NewJoost. So far for me is working perfectly. Aberingi I am Spaniard, 55, betatester, do

Re: TEMPLATE_STRING_IF_INVALID breaks admin ?

2008-09-14 Thread Yuri Baburov
Core devs, Please choose what solution do you like the most. I'll write a patch. On Wed, Sep 10, 2008 at 4:38 AM, Yuri Baburov <[EMAIL PROTECTED]> wrote: > Hi, > > the bug was filed long time ago in bugtracker. > see ticket #3579 ( http://code.djangoproject.com/ticket/3579 ) > > On Tue, Sep 9, 2

Re: I want a pony: Django Cheeseshop

2008-09-14 Thread Martin Diers
On Sep 13, 2008, at 7:23 PM, Russell Keith-Magee wrote: > > On Sun, Sep 14, 2008 at 6:35 AM, Martin Diers <[EMAIL PROTECTED]> wrote: >> >> The answer is community packaging guidelines. Somebody needs to write >> or adapt an existing doc on how to package django apps using existing >> Python tools

Re: Proposal: label tag attributes

2008-09-14 Thread oggy
Here's a link to the ticket: http://code.djangoproject.com/ticket/9079 --~--~-~--~~~---~--~~ 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

Proposal: label tag attributes

2008-09-14 Thread oggy
Currently, Django's form library doesn't facilitate a way to add attributes to the fields' labels. So, while it's dead simple to add, say, 'class="required"' to your widgets, you have to go out of your way to do the same for your tags. The patch to add the functionality is very simple. I'm openi

Re: I want a pony: Django Cheeseshop

2008-09-14 Thread Matic Žgur
I think it's a great idea to have a central repository of all apps. Googlecode became an unofficial host of majority of third party apps, so there seems to be a tendency for this kind of hosting. In my opinion there is no need to reinvent hot water due to the fact that Python already provides such

obscure import error(s)

2008-09-14 Thread HenrikV
I use a number of apps from google code, like a lot of other people I suspect. The big problem with this is that Django currently spits out an obscure import error if one of the app models use old model field attributes or other things that will throw an exception when importing the app's models.p

Re: implementing app specific default settings

2008-09-14 Thread daonb
IMHO installing a new app should require user intervention. I don't want to see new apps magically popping out and I don't want to dynamically load anyone else's settings.py. I love the code I get from pluggable apps but I prefer to keep settings.py for myself... Why not have a manage.py *installa