- Timestamp:
- 05/16/06 18:24:23 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
wiki-toolkit-plugin-diff/trunk/lib/Wiki/Toolkit/Plugin/Diff.pm
r283 r286 1 package CGI::Wiki::Plugin::Diff;1 package Wiki::Toolkit::Plugin::Diff; 2 2 3 3 use strict; … … 6 6 our $VERSION = '0.09'; 7 7 8 use base ' CGI::Wiki::Plugin';8 use base 'Wiki::Toolkit::Plugin'; 9 9 use Algorithm::Diff; 10 10 use VCS::Lite; … … 177 177 =head1 NAME 178 178 179 CGI::Wiki::Plugin::Diff - format differences between two CGI::Wikipages179 Wiki::Toolkit::Plugin::Diff - format differences between two Wiki::Toolkit pages 180 180 181 181 =head1 SYNOPSIS 182 182 183 use CGI::Wiki::Plugin::Diff;184 my $plugin = CGI::Wiki::Plugin::Diff->new;183 use Wiki::Toolkit::Plugin::Diff; 184 my $plugin = Wiki::Toolkit::Plugin::Diff->new; 185 185 $wiki->register_plugin( plugin => $plugin ); # called before any node reads 186 186 my %diff = $plugin->differences( node => 'Imperial College', … … 190 190 =head1 DESCRIPTION 191 191 192 A plug-in for CGI::Wikisites, which provides a nice extract of differences192 A plug-in for Wiki::Toolkit sites, which provides a nice extract of differences 193 193 between two versions of a node. 194 194 … … 274 274 =head1 ADVANCED 275 275 276 CGI::Wiki::Plugin::Diff allows for a more flexible approach than HTML only276 Wiki::Toolkit::Plugin::Diff allows for a more flexible approach than HTML only 277 277 rendering of pages. In particular, there are optional parameters to the 278 278 constructor which control fine detail of the resultant output. … … 290 290 =item B<new> 291 291 292 my $plugin = CGI::Wiki::Plugin::Diff->new( option => value, option => value...);292 my $plugin = Wiki::Toolkit::Plugin::Diff->new( option => value, option => value...); 293 293 294 294 Here, I<option> can be one of the following: … … 377 377 Please use rt.cpan.org to report any bugs in this module. If you have any 378 378 ideas for how this module could be enhanced, please email the author, or 379 post to the CGI::Wikilist (cgi (hyphen) wiki (hyphen) dev (at) earth (dot) li).379 post to the Wiki::Toolkit list (cgi (hyphen) wiki (hyphen) dev (at) earth (dot) li). 380 380 381 381 =head1 AUTHOR 382 382 383 383 I. P. Williams (ivorw_openguides [at] xemaps {dot} com) 384 The Wiki::Toolkit team (http://www.wiki-toolkit.org/) 384 385 385 386 =head1 COPYRIGHT 386 387 387 388 Copyright (C) 2003-2004 I. P. Williams (ivorw_openguides [at] xemaps {dot} com). 389 Copyright (C) 2006 the Wiki::Toolkit team (http://www.wiki-toolkit.org/) 388 390 All Rights Reserved. 389 391 … … 393 395 =head1 SEE ALSO 394 396 395 L<VCS::Lite>, L< CGI::Wiki>, L<CGI::Wiki::Plugin>, L<OpenGuides>397 L<VCS::Lite>, L<Wiki::Toolkit>, L<Wiki::Toolkit::Plugin>, L<OpenGuides> 396 398 397 399 =cut
