summaryrefslogtreecommitdiff
path: root/doc/bugs/multiple_rss_feeds_per_page.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2007-10-25 05:43:43 -0400
committerJoey Hess <joey@kodama.kitenet.net>2007-10-25 05:43:43 -0400
commit9f1cd89bc2f33b1783bc300bc5eaebe4abcf393c (patch)
tree8357fe1d00d6f0910a47acd2c9f8a53b88b6d6ca /doc/bugs/multiple_rss_feeds_per_page.mdwn
parentcfbb92206514dc51d1cb0c5acdf30ed3d87eb4a7 (diff)
* 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.
Diffstat (limited to 'doc/bugs/multiple_rss_feeds_per_page.mdwn')
-rw-r--r--doc/bugs/multiple_rss_feeds_per_page.mdwn12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/bugs/multiple_rss_feeds_per_page.mdwn b/doc/bugs/multiple_rss_feeds_per_page.mdwn
index 8d483b84f..f65d1884e 100644
--- a/doc/bugs/multiple_rss_feeds_per_page.mdwn
+++ b/doc/bugs/multiple_rss_feeds_per_page.mdwn
@@ -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]]