On Sat, 2007-10-06 at 09:21 -0700, tim_perrett wrote:
> Hey everyone
> 
> Im looking into changing the theme of the site based on the request
> that the project recivies:
> 
> I dont want to do this with CSS and stylesheets before anyone suggests
> that :) - Ive been looking into adding a bit of middleware to do this,
> and based on what i see in the locale setting code in Django itself,
> it should be possible to get the host value with something like
> request.META.get('HTTP_HOST', None) - is that right?

It's a bit more robust to use django.http.get_host() -- which is also
available as the get_host() method on the request object in recent
Django code (that was added in [6166]).

> 
> I would then somehow need to change the template path, and this is
> where my understanding drops off.... I found this post
> http://www.nabble.com/How-to-pick-a-template-based-on-the-request-object--tf4153180.html#a11822505
> but am not sure how i would or could go about building a custom
> template loader?

The comment at the top of django/template/loader.py gives the details,
but it's pretty simple. Look at one of the existing loaders (in
django/template/loaders/) for inspiration. The filesystem loader is
probably the simplest. The only thing you need to do to identify your
loader function is set the "is_usable" attribute on the function to True
-- you can give it any name you like, although all of Django's core
loaders use load_template_source() for consistency.


>  Also, would  there be any scope for checking in the
> database what theme a particular host name would recive? 

You can use the ORM if you want to. For example, there's a full-blown
template loader that loads templates from the database itself. See
http://code.google.com/p/django-databasetemplateloader/ .

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