CGI::Wiki::Simple::Plugin::RecentChanges - Node that lists the recent changes


CGI-Wiki-Simple documentation  | view source Contained in the CGI-Wiki-Simple distribution.

Index


NAME

Top

CGI::Wiki::Simple::Plugin::RecentChanges - Node that lists the recent changes

DESCRIPTION

Top

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

Top

  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:


CGI-Wiki-Simple documentation  | view source Contained in the CGI-Wiki-Simple distribution.