]> sipb.mit.edu Git - ikiwiki.git/commitdiff
clarification, response
authorJoey Hess <joey@gnu.kitenet.net>
Sun, 19 Apr 2009 19:19:43 +0000 (15:19 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Sun, 19 Apr 2009 19:19:43 +0000 (15:19 -0400)
doc/tips/add_chatterbox_to_blog.mdwn
doc/tips/add_chatterbox_to_blog/discussion.mdwn

index 3497da9ff04e6dde73734c108123e00abbe7aaa3..aa35b933177d135691509b30a110c5cd92d7768e 100644 (file)
@@ -6,12 +6,15 @@ from there, like I have on [my blog](http://kitenet.net/~joey/blog/)
 * Enable the [[plugins/aggregate]] plugin, and set up a cron
   job for it.
 * At the top of your blog's page, add something like the following.
-  You'll want to change the urls of course.
+  You'll want to change the urls of course. Be sure to also change
+  the inline directive's [[PageSpec]] to link to the location the
+  feed is aggregated to, which will be a subpage of the page
+  you put this on (blog in this example):
 
        \[[!template id=note text="""  
        \[[!aggregate expirecount=5 name="dents" url="http://identi.ca/joeyh"  
        feedurl="http://identi.ca/api/statuses/user_timeline/joeyh.atom"]]  
-       \[[!inline pages="internal(dents/*)" template=microblog
+       \[[!inline pages="internal(./blog/dents/*)" template=microblog
        show=5 feeds=no]]
        """]]
 
index b448cf3b8746e6dfef89999a9ba1502659374a33..57e4b76ad801c2a391688e87269e8f2b2a6174e4 100644 (file)
@@ -14,3 +14,9 @@ mine, live, here: <http://simonraven.kisikew.org/blog/meta/microblog-feed/>
 I expected something like: sidebar, with a number, and displaying them in the sidebar, but they don't display (similar to what you have on your blog).
 
 On the [[/ikiwiki/pagespec]] page, it says "internal" pages aren't "first-class" wiki pages, so it's best not to directly display them, so how do you manage to display them? I'd like to display their name, and what they link to in the sidebar, or otherwise in the main body.
+
+> That's what the inline does, displays the internal pages.
+> 
+> You need to fix your pagespec to refer to where the pages are aggregated
+> to, under the page that contains the aggregate directive. In your example,
+> it should be `internal(./blog/meta/microblog-feed/kijkaqawej/*)` --[[Joey]]