diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 23:56:26 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 23:56:26 -0500 |
commit | 5921b86fccde90e5a9c77623d808be06f40cbe47 (patch) | |
tree | b116168da21dbae0d82a6334f763e035fe0f5ac8 /doc/plugins/recentchanges.mdwn | |
parent | 2d3dc86d07a7ebf5f638084259ae2d9c2c63e6b6 (diff) | |
download | ikiwiki-5921b86fccde90e5a9c77623d808be06f40cbe47.tar ikiwiki-5921b86fccde90e5a9c77623d808be06f40cbe47.tar.gz |
proof of concept implementation of static recentchanges
Currently hardcoded to write to recentchanges/*, and the page format needs
to be rethought to be usable for aggregation, but it basically works.
Diffstat (limited to 'doc/plugins/recentchanges.mdwn')
-rw-r--r-- | doc/plugins/recentchanges.mdwn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/plugins/recentchanges.mdwn b/doc/plugins/recentchanges.mdwn new file mode 100644 index 000000000..9e0d8dc51 --- /dev/null +++ b/doc/plugins/recentchanges.mdwn @@ -0,0 +1,14 @@ +[[template id=plugin name=recentchanges core=1 author="[[Joey]]"]] + +This plugin examines the [[revision_control_system|rcs]] history and +generates a page describing each recent change made to the wiki. These +pages can be joined together with [[inline]] to generate the +[[RecentChanges]] page. + +Typically only the RecentChanges page will use the plugin, but you can +use it elsewhere too if you like. It's used like this: + + \[[recentchanges pages="*" num=100 template=change]] + +The pages describing recent changes will be created as [[subpages|subpage]] +of the page where the `recentchanges` directive is placed. |