* Add handling of feeds for nested inlines, as well as support for a
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 25 Oct 2007 09:43:43 +0000 (05:43 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 25 Oct 2007 09:43:43 +0000 (05:43 -0400)
  single page containing two different feeds.
* Also fixed some places in inline that failed to use destpage correctly.

IkiWiki/Plugin/inline.pm
debian/changelog
doc/bugs/multiple_rss_feeds_per_page.mdwn

index 0b3d5e40614040620f8d380df2809c57434d298a..3d1458081e39e383608aa5fec4ec3563e0a85b27 100644 (file)
@@ -8,6 +8,9 @@ use Encode;
 use IkiWiki 2.00;
 use URI;
 
+my %knownfeeds;
+my %page_numfeeds;
+
 sub import { #{{{
        hook(type => "getopt", id => "inline", call => \&getopt);
        hook(type => "checkconfig", id => "inline", call => \&checkconfig);
@@ -149,9 +152,25 @@ sub preprocess_inline (@) { #{{{
        # that if they are removed or otherwise changed, the inline will be
        # sure to be updated.
        add_depends($params{page}, join(" or ", @list));
+       
+       my $feednum="";
+
+       my $feedid=join(",", map { "$_=$params{$_}" } sort keys %params);
+       if (exists $knownfeeds{$feedid}) {
+               $feednum=$knownfeeds{$feedid};
+       }
+       else {
+               if (exists $page_numfeeds{$params{destpage}}) {
+                       $feednum=$knownfeeds{$feedid}=++$page_numfeeds{$params{destpage}};
+               }
+               else {
+                       $feednum=$knownfeeds{$feedid}="";
+                       $page_numfeeds{$params{destpage}}=1;
+               }
+       }
 
-       my $rssurl=basename(rsspage($params{page}));
-       my $atomurl=basename(atompage($params{page}));
+       my $rssurl=basename(rsspage($params{destpage}).$feednum);
+       my $atomurl=basename(atompage($params{destpage}).$feednum);
        my $ret="";
 
        if ($config{cgiurl} && (exists $params{rootpage} ||
@@ -215,7 +234,7 @@ sub preprocess_inline (@) { #{{{
                                                        $template->param(have_actions => 1);
                                                        $template->param(discussionlink =>
                                                                htmllink($page,
-                                                                       $params{page},
+                                                                       $params{destpage},
                                                                        gettext("Discussion"),
                                                                        noimageinline => 1,
                                                                        forcesubpage => 1));
@@ -228,7 +247,7 @@ sub preprocess_inline (@) { #{{{
                                }
        
                                run_hooks(pagetemplate => sub {
-                                       shift->(page => $page, destpage => $params{page},
+                                       shift->(page => $page, destpage => $params{destpage},
                                                template => $template,);
                                });
        
@@ -238,9 +257,9 @@ sub preprocess_inline (@) { #{{{
                        else {
                                if (defined $type) {
                                        $ret.="\n".
-                                             linkify($page, $params{page},
-                                             preprocess($page, $params{page},
-                                             filter($page, $params{page},
+                                             linkify($page, $params{destpage},
+                                             preprocess($page, $params{destpage},
+                                             filter($page, $params{destpage},
                                              readfile(srcfile($file)))));
                                }
                        }
@@ -256,19 +275,19 @@ sub preprocess_inline (@) { #{{{
                }
        
                if ($rss) {
-                       my $rssp=rsspage($params{page});
-                       will_render($params{page}, $rssp);
+                       my $rssp=rsspage($params{destpage}).$feednum;
+                       will_render($params{destpage}, $rssp);
                        writefile($rssp, $config{destdir},
-                               genfeed("rss", $rssurl, $desc, $params{page}, @list));
-                       $toping{$params{page}}=1 unless $config{rebuild};
+                               genfeed("rss", $rssurl, $desc, $params{destpage}, @list));
+                       $toping{$params{destpage}}=1 unless $config{rebuild};
                        $feedlinks{$params{destpage}}=qq{<link rel="alternate" type="application/rss+xml" title="RSS" href="$rssurl" />};
                }
                if ($atom) {
-                       my $atomp=atompage($params{page});
-                       will_render($params{page}, $atomp);
+                       my $atomp=atompage($params{destpage}).$feednum;
+                       will_render($params{destpage}, $atomp);
                        writefile($atomp, $config{destdir},
-                               genfeed("atom", $atomurl, $desc, $params{page}, @list));
-                       $toping{$params{page}}=1 unless $config{rebuild};
+                               genfeed("atom", $atomurl, $desc, $params{destpage}, @list));
+                       $toping{$params{destpage}}=1 unless $config{rebuild};
                        $feedlinks{$params{destpage}}=qq{<link rel="alternate" type="application/atom+xml" title="Atom" href="$atomurl" />};
                }
        }
index bc2ca4920fa5cfd5e17724e2bdb8946929939d21..d5940163e6052469a07dc520cec9afbe5e6336b8 100644 (file)
@@ -13,8 +13,11 @@ ikiwiki (2.11) UNRELEASED; urgency=low
   * Ikiwiki has moved into a git repository.
   * postsparkline: Avoid a confusing error message if no pages match
     and instead show an empty graph.
+  * Add handling of feeds for nested inlines, as well as support for a
+    single page containing two different feeds.
+  * Also fixed some places in inline that failed to use destpage correctly.
 
- -- Joey Hess <joeyh@debian.org>  Wed, 24 Oct 2007 22:58:51 -0400
+ -- Joey Hess <joeyh@debian.org>  Thu, 25 Oct 2007 05:14:58 -0400
 
 ikiwiki (2.10) unstable; urgency=low
 
index 8d483b84fccbc68825c28df4050cadaa3676ad81..f65d1884e699c705cbb37b0fbdc66aa0d1db5768 100644 (file)
@@ -17,3 +17,15 @@ Josh Triplett suggests that the inline macro should take a parameter for the fee
 > 
 > The result was that my whatsnew feed actually contains my Words2Nums
 > feed, or something. --[[joey]]
+
+> I've implemented autoincrementing unique feeds, the first one on a page
+> is a .rss, next is .rss2, etc.
+> 
+> There may be room for manual specification of feed basenames, but it is tricky to do that
+> well. One problem is that if page foo adds a feed with basename bar,
+> the resulting "foo_bar.rss" would have the same name as a feed for page
+> foo_bar. (Assuming usedirs is not set.) This is also why I stuck the
+> number on the end of the filename extension -- it's slightly ugly, but
+> it avoids all such naming ambiguities.
+> 
+> Anyway, I think this is [[done]] --[[Joey]]