Handles redirection of django feeds to feedburner urls.
Project description
This is a app provides a view that handles redirection of feeds to the feedburner url. It is based on a stack overflow question:
http://stackoverflow.com/questions/870979/redirect-django-feed-to-feedburner
Installation
Rewrite your urls.py file that uses django’s builtin feed view and replace it with django_feedburner.views.redirect_feed.
See this example urlpatterns:
urlpatterns = patterns('', (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), )
To use the redirections write:
urlpatterns = patterns('', (r'^feeds/(?P<url>.*)/$', 'django_feedburner.views.redirected_feed', {'feed_dict': feeds}), )
Know you must specify which feeds should get redirected. You can specify this with the FEEDBURNER_URLS setting. This must be a dict which holds the complete urls as keys that should get redirect. The values must be either an absolute url to the feedburner url or a path that starts with a slash. This values will be prefixed with http://feeds.feedburner.com.
To redirect the latest feed from the example above to feedburner’s example-latest feed we must write:
FEEDBURNER_URLS = { '/feeds/latest/': 'http://feeds.feedburner.com/example-latest', }
or a bit shorter:
FEEDBURNER_URLS = { '/feeds/latest/': '/example-latest', }
You can change the prefixed url with the FEEDBURNER_URL_PREFIX setting.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-feedburner-0.9.0.tar.gz
.
File metadata
- Download URL: django-feedburner-0.9.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 103fe2a39b82f3e2caa97b1b81fed3fdca02af6f0fe6350ed23d771f094d1152 |
|
MD5 | ae39c353c86518341cae2e27ca3a6220 |
|
BLAKE2b-256 | 87e5fc5d9087195901791ab3f55015c3dbd0c8c578dfbcd3ffae00639bfbb589 |