Malcolm,

what if I did the from django.core.urlresolvers import reverse part in  
the function itself that gets called?

def my_flatpage_url(o):
   from django.core.urlresolvers import reverse
   return '%s%s' % (reverse('my-site-index'), o.url)

ABSOLUTE_URL_OVERRIDES = {
   'flatpages.flatpage': my_flatpage_url,
}

That wouldn't introduce a chicken-and-egg problem, would it?

Erik

On 05.10.2008, at 11:39, Malcolm Tredinnick wrote:

>
>
> On Sun, 2008-10-05 at 00:50 -0700, John Allen wrote:
>> Erik, Malcolm,
>>
>> Thanks for two very interesting answers - but which one is correct?
>> Malcolm, you are saying, in effect, that the code in Erik's post can
>> never work in the settings file?
>
> Even if it does work by accident, it would not be at all stable. You
> cannot use anything from Django in settings file. If you do and it  
> works
> because of some accidental reason and then later breaks, you get to  
> keep
> all the pieces and you can't complain.
>
> Regards,
> Malcolm
>
>
>
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to