aboutsummaryrefslogtreecommitdiff
path: root/templates/rssitem.tmpl
Commit message (Collapse)AuthorAge
* Show author in addition to feedname, if different.Amitai Schlair2013-07-17
| | | | | | While here, mollify http://validator.w3.org/feed/ and s/dcterms:creator/dc:creator/g, which happens to make rss2email see and do nice things with authors.
* Don't prepend author to title (Atom doesn't).Amitai Schlair2013-02-21
|
* Render fancy podcast enclosures.Amitai Schlair2013-02-20
| | | | | | | | | | | Simple podcast feeds didn't have content tags and I made sure to keep it that way. This may be unnecessarily conservative. Changing the behavior to include empty content tags might be fine, but I don't want to think about it right now, I just want my tests to keep passing! The new fancy-podcast tests are copy-pasted-edited from the simple-podcast tests. These tests shall be refactored.
* use false for isPermalink, not noJoey Hess2011-07-29
| | | | feedvalidator says this is true/false not yes/no
* Set isPermaLink="no" for guids in rss feeds.Joey Hess2010-09-14
| | | | | | | | | | | | | The rss spec says that unless the attribute is set, guid elements *are* permalinks. The problem with that is that if [[meta permalink=]] is used, as is done with aggregated posts, that goes into the link element, and apparently some rss readers prefer the not-really-permalink in the guid element when linking to the post. Without meta permalink, the link and guid elements have the same content, so it should be ok, in that case too for the guid to not be a permalink. (Checked and this does not flood aggregators.)
* consistently drop NAME= in templatesJoey Hess2010-05-05
| | | | also add template syntax smoke test
* optimise whitespace in feed templatesJoey Hess2010-02-14
|
* rssitem.tmpl: include comments URL (HTML only)Simon McVittie2008-12-21
|
* Escape HTML in RSS feeds, rather than relying on it being valid to stuff ↵Simon McVittie2008-07-31
| | | | into a CDATA section
* rename uuid to guidJoey Hess2008-07-12
|
* rssitem.tmpl: use UUID as <guid> if suppliedSimon McVittie2008-07-11
|
* * Apply a patch from NicolasLimare adding modification date tags to rss andjoey2007-08-11
| | | | | | atom feeds, and also changing the publication time for a feed to the newest modiciation time (was newest creation time). * The patch also adds dcterms:creator to rss items that have a known author.
* * More consistent encoding of titles in rss and atom feeds. Don't usejoey2007-05-28
| | | | | | | | | | | ESCAPE=HTML for titles in the templates for these feeds, and instead escape the title going in to the template. Previously, the title was sometimes double-escaped in a feed (if set via meta title), and sometimes not (if set from the page filename). * In the meta plugin, when a title is set, encode the html entities in it numerically. This works better in the current landscape of a rss spec that doesn't specify encoding, and variously broken feed consumers, according to <http://www.rssboard.org/rss-profile#data-types-characterdata>.
* * Patch from James Westby to support podcasting, photoblogging, vidcasting,joey2006-11-01
| | | | | or what have you, by creating enclosures for non-page items that are included in feeds.
* * Atom feed support based on a patch by Clint Adams.joey2006-10-08
| | | | | | | | * Add feeds=no option to inline preprocessor directive to turn off all types of feeds. feeds=rss will still work, and feeds=atom was also added, for fine control. * $IkiWiki::version now holds the program version, and is accessible to plugins.
* * Make aggregator save permalinks and author name to pages as metadata.joey2006-08-04
| | | | | | | | * Add permalink and author support to meta plugin, affecting RSS feeds and blog pages. * Change titlepage() to encode utf-8 alnum characters. This is necessary to avoid UTF-8 creeping into filenames in urls. (There are still some other ways that it can get in.)
* fix title metadata on blogs, reorg needed to do it, simplified tag somejoey2006-07-31