]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/recentchanges.mdwn
Merge commit 'smcv/img-bugfix'
[ikiwiki.git] / doc / plugins / recentchanges.mdwn
1 [[!template id=plugin name=recentchanges core=1 author="[[Joey]]"]]
2
3 This plugin examines the [[revision_control_system|rcs]] history and
4 generates a page describing each recent change made to the wiki. These
5 pages can be joined together with [[inline]] to generate the
6 [[RecentChanges]] page.
7
8 Typically only the RecentChanges page will use the pages generated by this
9 plugin, but you can use it elsewhere too if you like. It's used like this:
10
11         \[[!inline pages="internal(recentchanges/change_*)"
12         template=recentchanges show=0]]
13
14 Here's an example of how to show only changes to "bugs/*".
15 This matches against the title of the change, which includes a list of
16 modified pages.
17
18         \[[!inline pages="internal(recentchanges/change_*) and title(*bugs/*)"
19         template=recentchanges show=0]]
20
21 Here's an example of how to show only changes that Joey didn't make.
22 (Joey commits sometimes as user `joey`, and sometimes via openid.)
23         
24         \[[!inline pages="internal(recentchanges/change_*) and
25         !author(joey) and !author(http://joey.kitenet.net*)"
26         template=recentchanges show=0]]