commit b59295a69d369a93013eb07b94169908f1cfbd18 parent e9f5d06d72ba351a7b2773f30d30a87b179cf24c Author: kris@engel.se.cat-v.org <unknown> Date: Mon, 4 Jun 2007 06:20:23 +0200 Fixed RSS. Diffstat:
| M | bin/controller.rc | | | 11 | ++++++----- |
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/bin/controller.rc b/bin/controller.rc @@ -167,24 +167,25 @@ uri=$baseuri$"uri # Should be in a separate file. cat <<'!' | template -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0"> <channel> - <title>%($blogTitle%)</title> + <title>%($siteTitle%)</title> <link>%($uri%)</link> <description>%($blogDesc%)</description> <language>en-us</language> <generator>Tom Duff's rc, and Kris Maglione's clever hackery</generator> - <webMaster>Uriel %lt;uriel99@gmail.com></webMaster> + <webMaster>Uriel Mangado <uriel99@gmail.com></webMaster> %{ for(f in `{sortedBlogPostList $blogDirs}) { statpost $f %} <item> <title>%($title%)</title> - <author>%($by%)</author> + <author>%($by%)@noreply.cat-v.org</author> <link>%($uri%)</link> + <guid isPermaLink="true">%($uri%)</guid> <pubDate>%($date%)</pubDate> - <description><![CDATA[%($summary%)]]</description> + <description><![CDATA[%($summary%)]]></description> </item> % } </channel>