improve description field for rss
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Thu, 23 Mar 2006 21:17:57 +0000 (21:17 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Thu, 23 Mar 2006 21:17:57 +0000 (21:17 +0000)
IkiWiki/Render.pm
doc/todo.mdwn
templates/rsspage.tmpl

index 646e254a59cba73e84db87b291d53546e7631741..1c56677ba162ed87f7da802a17612959a126878a 100644 (file)
@@ -171,7 +171,7 @@ sub genrss ($$$) { #{{{
        );
        
        $template->param(
-               title => pagetitle(basename($page)),
+               title => $config{wikiname},
                pageurl => $url,
                items => \@items,
        );
index f01753e33d8d8a3ba62fc2a79b81433bcce65645..eb828adcd14ac45975f7e9f5886a2e8c5e8d9d61 100644 (file)
@@ -64,15 +64,7 @@ renered, so maybe that won't be a plugin.
 ## blogging and rss
 
 The wiki should emit rss feeds for pages. The simple case is a regular
-page. The complex case is a blog composed of multiple pages.
-
-### single page
-
-Just create an rss feed with one element, that contains the last diff to
-the page, or the contents of the page, or something like that. Whenever the
-page is changed, rss readers should see the single post in the feed as a
-new post, so they'll dump out the page again. Simple, allows subscribing to
-any page as an RSS feed if you want to see just changes to that page.
+page (done). The complex case is a blog composed of multiple pages.
 
 ### multi-page blog
 
index cbfeb547156078aa452fea49e6089a31ca7bb4b5..4fe15d49116824b3cddff7218648c69859b7795e 100644 (file)
@@ -3,7 +3,7 @@
        <channel>
                <title><TMPL_VAR TITLE ESCAPE=HTML></title>
                <link><TMPL_VAR PAGEURL></link>
-               <description><TMPL_VAR TITLE ESCAPE=HTML></description>
+               <description><TMPL_VAR WIKINAME ESCAPE=HTML></description>
                <TMPL_LOOP NAME="ITEMS">
                <item>
                        <title><TMPL_VAR ITEMTITLE ESCAPE=HTML></title>