summaryrefslogtreecommitdiff
path: root/django/utils/feedgenerator.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #3469 -- added django.utils documentation for stable bitsBrian Rosner2010-05-081-1/+5
| | | | | | Thanks to Rupe and Ramiro Morales for their initial work on this patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13140 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed a couple Python 2.4 incompatibilities.Jacob Kaplan-Moss2010-02-141-1/+7
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@12434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #6188, #6304, #6618, #6969, #8758, #8989, #10334, #11069, #11973 and ↵Russell Keith-Magee2010-01-281-8/+20
| | | | | | #12403 -- Modified the syndication framework to use class-based views. Thanks to Ben Firshman for his work on this patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12338 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code ↵Karen Tracey2009-05-171-1/+1
| | | | | | comments. Thanks kaikuehne. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8219 -- More robust date to string conversion in syndication feeds.Malcolm Tredinnick2008-08-151-12/+12
| | | | | | | | (Sometimes) Affects people running in locales that use non-ASCII date strings. Patch from alperkanat. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8397 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8253: fixed xmlns regression for Atom feeds, and in the process added ↵Jacob Kaplan-Moss2008-08-121-2/+5
| | | | | | a hook for adding attributes specifically on the root <rss> element (for RSS feeds only, of course). Patch by Justin Bronn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8331 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added a number of callbacks to SyndicationFeed for adding custom attributes ↵Jacob Kaplan-Moss2008-08-111-102/+144
| | | | | | and elements to feeds. Refs #6547. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #7016: use correct time zones for Atom feeds. Thanks, Chris Cahoon.Jacob Kaplan-Moss2008-08-051-3/+14
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@8216 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #6303 -- Handle missing language specification in feed generation. ↵Malcolm Tredinnick2008-02-031-1/+1
| | | | | | Thanks, david. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #3502 -- Added TTL support for RSS (not Atom) feeds. Patch fromMalcolm Tredinnick2007-10-201-2/+8
| | | | | | | jason.sidabras@gmail.com and Thomas Kerpe. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6570 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #3036 -- Fixed some doctest strings that were failing. Thanks to pterk ↵Russell Keith-Magee2007-09-151-0/+1
| | | | | | for the original patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6268 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed number #4076: django.utils.feedgenerator now corectly handles times ↵Jacob Kaplan-Moss2007-09-141-1/+4
| | | | | | without timezones. Thanks, Alastair Tse. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6233 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #3760 -- Added the ability to manually set feed- and item-level idMalcolm Tredinnick2007-07-101-2/+3
| | | | | | | | elements in Atom feeds. This is fully backwards compatible. Based on a patch from spark343@cs.ubc.ca. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5643 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick2007-07-041-21/+29
| | | | | | | | | backwards compatible for all practical purposes. Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702 git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4323 -- Added the ability to display author names without emailMalcolm Tredinnick2007-05-261-0/+2
| | | | | | | addresses to RSS 2.0 feeds. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5357 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #3958 -- Added lastBuildDate element to RSS feeds. Thanks,Malcolm Tredinnick2007-04-091-0/+1
| | | | | | | baptiste.goupil@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #2762 -- added copyright element support to RSS and Atom feeds. PatchMalcolm Tredinnick2007-02-101-3/+13
| | | | | | | from Jonathan Buchanan. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #1473 -- Added support for categories back into syndication feedsMalcolm Tredinnick2006-06-191-0/+2
| | | | | | | (was accidently removed in r1994). Thanks, k.shaposhnikov@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3143 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #2109 -- Convert old-style classes to new-style classes throughout ↵Adrian Holovaty2006-06-081-2/+2
| | | | | | Django. Thanks, Nicola Larosa git-svn-id: http://code.djangoproject.com/svn/django/trunk@3113 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #2021 -- Improved Atom feed by outputting rel=alternate. Thanks, Ned ↵Adrian Holovaty2006-05-301-1/+1
| | | | | | Batchelder git-svn-id: http://code.djangoproject.com/svn/django/trunk@3004 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly ↵Adrian Holovaty2006-05-021-4/+4
| | | | | | backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #787 -- High-level syndication framework now picks up author details. ↵Adrian Holovaty2005-11-141-1/+4
| | | | | | Also updated documentation. Thanks, mattycakes git-svn-id: http://code.djangoproject.com/svn/django/trunk@1228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Improved Atom feed-generating framework to output <link rel='self'>. Added a ↵Adrian Holovaty2005-11-141-2/+6
| | | | | | feed_url hook to feedgenerator for this purpose, and changed the syndication Feed and views to use it. Also updated docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1227 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #784 -- Atom feeds now use RFC3339 datetime formatAdrian Holovaty2005-11-141-2/+5
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #786 -- Atom feeds now put links in a href element. Thanks, mattycakesAdrian Holovaty2005-11-141-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@1225 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added mime_type attributes to feedgenerator RssFeed and Atom1Feed, and made ↵Adrian Holovaty2005-11-121-0/+2
| | | | | | the syndication view use that mime_type. Thanks, James git-svn-id: http://code.djangoproject.com/svn/django/trunk@1201 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Completely refactored legacy RSS framework to the new ↵Adrian Holovaty2005-11-121-62/+159
| | | | | | django.contrib.syndication package. Also added Atom support, changed the way feeds are registered and added documentation for the whole lot. This is backwards-incompatible, but the RSS framework had not yet been documented, so this should only affect tinkerers and WorldOnline. Fixes #329, #498, #502 and #554. Thanks for various patches/ideas to alastair, ismael, hugo, eric moritz and garthk git-svn-id: http://code.djangoproject.com/svn/django/trunk@1194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #502 -- Added 'categories' keyword argument to RSS framework. Thanks, ↵Adrian Holovaty2005-09-141-1/+4
| | | | | | eugene git-svn-id: http://code.djangoproject.com/svn/django/trunk@641 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #485 -- Typo in utils/feedgenerator.py. Thanks, eugene@lazutkin.comAdrian Holovaty2005-09-111-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@635 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed Adrian's note in the docstring of django.utils.feedgenerator -- it's ↵Adrian Holovaty2005-07-261-4/+1
| | | | | | part of Django now git-svn-id: http://code.djangoproject.com/svn/django/trunk@319 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Imported Django from private SVN repository (created from r. 8825)Adrian Holovaty2005-07-131-0/+152
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3 bcc190cf-cafb-0310-a4f2-bffc1f526a37