This middleware redirects the request for yoursite.com/feed/whatever/onefeed to your feedburner onefeed feed.
Having
FEEDBURNER = ('SomeName', ('blog', 'comments', 'tag1'))
will use the feedburner feeds at
http://feedproxy.google.com/SomeName/blog
http://feedproxy.google.com/SomeName/comments
http://feedproxy.google.com/SomeName/tag/tag1
you can add more tags, or even intersection and union of them the same way
(thanks to piranha for the idea of a middleware)
Update: now it works for tags as well
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23  | from django.http import HttpResponseRedirect
import settings
class FeedburnerMiddleware(object):
    '''
    Redirect the user to a feedburner feed for basic feeds
    '''
    def process_request(self, request):
        r = request.path.split('/')
        if not settings.FEEDBURNER or\
            not r[1] == 'feeds' or \
            not r[-2] in settings.FEEDBURNER[1]:
            return None
        
        if request.META['HTTP_USER_AGENT'].startswith('FeedBurner'):
            return None
        else:
            return HttpResponseRedirect('/'.join((
                'http://feedproxy.google.com', 
                settings.FEEDBURNER[0],
                '/'.join(r[3:-1]))
                ))
 | 
More like this
- Add Toggle Switch Widget to Django Forms by OgliariNatan 1 month, 4 weeks ago
 - get_object_or_none by azwdevops 5 months, 2 weeks ago
 - Mask sensitive data from logger by agusmakmun 7 months, 2 weeks ago
 - Template tag - list punctuation for a list of items by shapiromatron 1 year, 9 months ago
 - JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 9 months ago
 
Comments
This is great! Thank you for sharing it!
#
Please login first before commenting.