NAME
CGI::Wiki::Simple::Plugin::RecentChanges - Node that lists the recent changes
DESCRIPTION
This node lists the nodes that were changed in your wiki. This only works for nodes that are stored within a CGI::Wiki::Store::Database, at least until I implement more of the store properties for the plugins as well.
SYNOPSIS
use CGI::Wiki::Simple;
use CGI::Wiki::Simple::Plugin::RecentChanges( name => 'LastWeekChanges', days => 7 );
# also
use CGI::Wiki::Simple::Plugin::RecentChanges( name => 'Recent20Changes', last_n_changes => 20 );
# also
use CGI::Wiki::Simple::Plugin::RecentChanges( name => 'RecentFileChanges', days => 14, re => qr/^File:(.*)$/ );
# This will display all changed nodes that match ^File: