- Author:
- henriklied
- Posted:
- September 30, 2008
- Language:
- Python
- Version:
- 1.0
- Score:
- 4 (after 4 ratings)
Adds an additional template dir to settings.TEMPLATE_DIRS if the request's HTTP_USER_AGENT string has the word iPhone in it. Allows you to easily create iPhone templates.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from django.conf import settings
# Change this to reflect your settings.py file
from site_settings import settings as local_settings
class iPhoneMiddleware(object):
"""
iPhone Middleware. Dynamically adds the iPhone template dirs if
iPhone user agent is present
"""
def __init__(self):
self.iphone_templates = ('/home/video/sources/video/templates/iphone_templates',)
def process_request(self, request):
if request.META['HTTP_USER_AGENT'].find('iPhone') != -1:
settings.TEMPLATE_DIRS = self.iphone_templates + local_settings.TEMPLATE_DIRS
else:
settings.TEMPLATE_DIRS = local_settings.TEMPLATE_DIRS
return
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.