aboutsummaryrefslogtreecommitdiff
path: root/templates/atompage.tmpl
Commit message (Collapse)AuthorAge
* Drop the version attribute on the generator tag in Atom feeds.Paul Wise2012-03-03
| | | | | | | | Removing the version means that rebuilds are reproducible over time. Both the generator tag and its version attribute are optional: http://tools.ietf.org/html/rfc4287#section-4.2.4
* consistently drop NAME= in templatesJoey Hess2010-05-05
| | | | also add template syntax smoke test
* optimise whitespace in feed templatesJoey Hess2010-02-14
|
* Escape HTML in Atom feed metadata rather than treating it as XHTMLSimon McVittie2008-07-31
|
* Rename [[!inline atomid="..."]] to [[!inline guid="..."]] to be consistent ↵Simon McVittie2008-07-12
| | | | with [[!meta guid="..."]], which also outputs an Atom <id>
* Accept [[!inline ... atomid="..."]] and use it to populate the feed's Atom <id>.Simon McVittie2008-07-12
| | | | This is often the same as the feed's <link> (in which case it can be omitted) but sometimes it's a urn:uuid: URN instead.
* Add MIME type to Atom feeds' <link rel='self'>Simon McVittie2008-07-12
|
* include license/copyright/author info if availableJoey Hess2008-01-09
|
* * 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>.
* * New domain name for ikiwiki: ikiwiki.info. Update your links.joey2007-02-18
|
* * 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.