]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/plugins/recentchanges.mdwn
web commit by http://subvert.org.uk/~bma/: Add my thoughts.
[ikiwiki.git] / doc / plugins / recentchanges.mdwn
index 8647985c9aeb01cb2d62267ea1d4e2f21331a2b6..b48dcbacfb55353d4dacc23ea3cabab1f42ea5a5 100644 (file)
@@ -10,3 +10,17 @@ plugin, but you can use it elsewhere too if you like. It's used like this:
 
        \[[inline pages="internal(recentchanges/change_*)"
        template=recentchanges show=0]]
+
+Here's an example of how to show only changes to "bugs/*".
+This matches against the title of the change, which includes a list of
+modified pages.
+
+       \[[inline pages="internal(recentchanges/change_*) and title(*bugs/*)"
+       template=recentchanges show=0]]
+
+Here's an example of how to show only changes that Joey didn't make.
+(Joey commits sometimes as user `joey`, and sometimes via openid.)
+       
+       \[[inline pages="internal(recentchanges/change_*) and
+       !author(joey) and !author(http://joey.kitenet.net*)"
+       template=recentchanges show=0]]