Show
Ignore:
Timestamp:
05/16/06 18:24:23 (6 years ago)
Author:
dom
Message:

Final renames.

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; 
     1package Wiki::Toolkit::Plugin::Diff; 
    22 
    33use strict; 
     
    66our $VERSION = '0.09'; 
    77 
    8 use base 'CGI::Wiki::Plugin'; 
     8use base 'Wiki::Toolkit::Plugin'; 
    99use Algorithm::Diff; 
    1010use VCS::Lite; 
     
    177177=head1 NAME 
    178178 
    179 CGI::Wiki::Plugin::Diff - format differences between two CGI::Wiki pages 
     179Wiki::Toolkit::Plugin::Diff - format differences between two Wiki::Toolkit pages 
    180180 
    181181=head1 SYNOPSIS 
    182182 
    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; 
    185185  $wiki->register_plugin( plugin => $plugin );   # called before any node reads 
    186186  my %diff = $plugin->differences( node => 'Imperial College', 
     
    190190=head1 DESCRIPTION 
    191191 
    192 A plug-in for CGI::Wiki sites, which provides a nice extract of differences 
     192A plug-in for Wiki::Toolkit sites, which provides a nice extract of differences 
    193193between two versions of a node.  
    194194 
     
    274274=head1 ADVANCED 
    275275 
    276 CGI::Wiki::Plugin::Diff allows for a more flexible approach than HTML only 
     276Wiki::Toolkit::Plugin::Diff allows for a more flexible approach than HTML only 
    277277rendering of pages. In particular, there are optional parameters to the 
    278278constructor which control fine detail of the resultant output. 
     
    290290=item B<new> 
    291291 
    292   my $plugin = CGI::Wiki::Plugin::Diff->new( option => value, option => value...); 
     292  my $plugin = Wiki::Toolkit::Plugin::Diff->new( option => value, option => value...); 
    293293 
    294294Here, I<option> can be one of the following: 
     
    377377Please use rt.cpan.org to report any bugs in this module. If you have any 
    378378ideas for how this module could be enhanced, please email the author, or 
    379 post to the CGI::Wiki list (cgi (hyphen) wiki (hyphen) dev (at) earth (dot) li). 
     379post to the Wiki::Toolkit list (cgi (hyphen) wiki (hyphen) dev (at) earth (dot) li). 
    380380 
    381381=head1 AUTHOR 
    382382 
    383383I. P. Williams (ivorw_openguides [at] xemaps {dot} com) 
     384The Wiki::Toolkit team (http://www.wiki-toolkit.org/) 
    384385 
    385386=head1 COPYRIGHT 
    386387 
    387388     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/) 
    388390     All Rights Reserved. 
    389391 
     
    393395=head1 SEE ALSO 
    394396 
    395 L<VCS::Lite>, L<CGI::Wiki>, L<CGI::Wiki::Plugin>, L<OpenGuides> 
     397L<VCS::Lite>, L<Wiki::Toolkit>, L<Wiki::Toolkit::Plugin>, L<OpenGuides> 
    396398 
    397399=cut