aboutsummaryrefslogtreecommitdiff
path: root/doc/tips/howto_avoid_flooding_aggregators.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-14 20:58:02 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-14 20:58:02 +0000
commite855e30d01796253a77da4531fcd1f896d9f117a (patch)
treea437e5d3405d0091989498e9b9466b067d2881b1 /doc/tips/howto_avoid_flooding_aggregators.mdwn
parent9b145798c75e88267f4782b3cedc9d5deb41a0c8 (diff)
downloadikiwiki-e855e30d01796253a77da4531fcd1f896d9f117a.tar
ikiwiki-e855e30d01796253a77da4531fcd1f896d9f117a.tar.gz
* Add feedshow parameter to inline, which can be useful for eg, removing
old posts from feeds when permalinks change.
Diffstat (limited to 'doc/tips/howto_avoid_flooding_aggregators.mdwn')
-rw-r--r--doc/tips/howto_avoid_flooding_aggregators.mdwn10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/tips/howto_avoid_flooding_aggregators.mdwn b/doc/tips/howto_avoid_flooding_aggregators.mdwn
index d432464fc..355e0e6a7 100644
--- a/doc/tips/howto_avoid_flooding_aggregators.mdwn
+++ b/doc/tips/howto_avoid_flooding_aggregators.mdwn
@@ -15,11 +15,11 @@ This can happen in a lot of situations:
To avoid annoying readers in these situations, it's a good idea to remove
and existing items from your blog's news feed. That way only new items will
-show up in the aggregator. The best way to do this is currently to modify
-the [[PageSpec]] for your [[blog]] and add a condition such as:
+show up in the aggregator. The best way to do this is to add a `feedpages`
+parameter to the `inline` directive for your blog, with a condition such as:
- and created_after(blog/posts/old_post)
+ feedpages=created_after(blog/posts/old_post)
Where "old_post" is the name of the last post you made to the blog before
-making the change. This will limit the feed to only newer posts (the older
-posts will still be available in the archives).
+making the change. This will limit the feed to only newer posts, while stil
+displaying the old posts in the blog page.