On 6/30/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
>
...
> No, this isn't possible. The settings file is read once and then the
> settings are cached (and are assumed to be static).

Actually, it *is* possible to alter the urlconf that's processed on a
per-request basis, though TEMPLATE_DIRS is static.

The URLConf can be overridden by adding an "urlconf" attribute to the
request object via a request middleware.
http://www.djangoproject.com/documentation/middleware/#process-request

The request.urlconf attribute should be in the same format as the
settings.ROOT_URLCONF, which is to say, a string of an importable
module with an urlpatterns attribute (and friends).

I think you could work around the TEMPLATE_DIRS limitation by either
writing your own shim over django.template.loader.get_template or by
writing your own template loader that does just what the file system
loader does except that it prefixes the given template name with site
name:
http://www.djangoproject.com/documentation/templates_python/#loading-templates

Cheers,
  Jeremy

--~--~---------~--~----~------------~-------~--~----~
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