{ "info": { "author": "Gregor M\u00c3\u00bcllegger", "author_email": "gregor@muellegger.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "=================\ndjango-feedburner\n=================\n\nThis is a app provides a view that handles redirection of feeds to the\nfeedburner url. It is based on a stack overflow question:\n\nhttp://stackoverflow.com/questions/870979/redirect-django-feed-to-feedburner\n\nInstallation\n============\n\nRewrite your urls.py file that uses django's builtin feed view and replace it\nwith ``django_feedburner.views.redirect_feed``.\n\nSee this example ``urlpatterns``::\n\n urlpatterns = patterns('',\n (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),\n )\n\nTo use the redirections write::\n\n urlpatterns = patterns('',\n (r'^feeds/(?P.*)/$', 'django_feedburner.views.redirected_feed', {'feed_dict': feeds}),\n )\n\n\nKnow you must specify which feeds should get redirected. You can specify this\nwith the ``FEEDBURNER_URLS`` setting. This must be a ``dict`` which holds the\ncomplete urls as keys that should get redirect. The values must be either an\nabsolute url to the feedburner url or a path that starts with a slash. This\nvalues will be prefixed with ``http://feeds.feedburner.com``.\n\nTo redirect the ``latest`` feed from the example above to feedburner's\n``example-latest`` feed we must write::\n\n FEEDBURNER_URLS = {\n '/feeds/latest/': 'http://feeds.feedburner.com/example-latest',\n }\n\nor a bit shorter::\n\n FEEDBURNER_URLS = {\n '/feeds/latest/': '/example-latest',\n }\n\n\nYou can change the prefixed url with the ``FEEDBURNER_URL_PREFIX`` setting.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://launchpad.net/django-feedburner", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "django-feedburner", "package_url": "https://pypi.org/project/django-feedburner/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-feedburner/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://launchpad.net/django-feedburner" }, "release_url": "https://pypi.org/project/django-feedburner/0.9.0/", "requires_dist": null, "requires_python": null, "summary": "Handles redirection of django feeds to feedburner urls.", "version": "0.9.0" }, "last_serial": 713432, "releases": { "0.9.0": [ { "comment_text": "", "digests": { "md5": "ae39c353c86518341cae2e27ca3a6220", "sha256": "103fe2a39b82f3e2caa97b1b81fed3fdca02af6f0fe6350ed23d771f094d1152" }, "downloads": -1, "filename": "django-feedburner-0.9.0.tar.gz", "has_sig": false, "md5_digest": "ae39c353c86518341cae2e27ca3a6220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3307, "upload_time": "2010-01-04T03:05:43", "url": "https://files.pythonhosted.org/packages/87/e5/fc5d9087195901791ab3f55015c3dbd0c8c578dfbcd3ffae00639bfbb589/django-feedburner-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ae39c353c86518341cae2e27ca3a6220", "sha256": "103fe2a39b82f3e2caa97b1b81fed3fdca02af6f0fe6350ed23d771f094d1152" }, "downloads": -1, "filename": "django-feedburner-0.9.0.tar.gz", "has_sig": false, "md5_digest": "ae39c353c86518341cae2e27ca3a6220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3307, "upload_time": "2010-01-04T03:05:43", "url": "https://files.pythonhosted.org/packages/87/e5/fc5d9087195901791ab3f55015c3dbd0c8c578dfbcd3ffae00639bfbb589/django-feedburner-0.9.0.tar.gz" } ] }