From: <ik...@us...> - 2009-09-14 23:16:07
|
Revision: 59 http://webfetch.svn.sourceforge.net/webfetch/?rev=59&view=rev Author: ikluft Date: 2009-09-14 23:15:55 +0000 (Mon, 14 Sep 2009) Log Message: ----------- streamline data wrapper functions Modified Paths: -------------- branches/v0.13/lib/WebFetch.pm Modified: branches/v0.13/lib/WebFetch.pm =================================================================== --- branches/v0.13/lib/WebFetch.pm 2009-09-09 00:38:53 UTC (rev 58) +++ branches/v0.13/lib/WebFetch.pm 2009-09-14 23:15:55 UTC (rev 59) @@ -187,7 +187,7 @@ ); # initialize class variables -our $VERSION = '0.13-pre39'; +our $VERSION = '0.13-pre59'; our %default_modules = ( "input" => { "rss" => "WebFetch::Input::RSS", @@ -961,8 +961,6 @@ =back -=back - =cut sub do_actions @@ -1545,9 +1543,9 @@ # sub data { my $self = shift; return $self->{data}; } -sub wk2fname { my $self = shift; return $self->data->wk2fname( @_ )}; -sub fname2fnum { my $self = shift; return $self->data->fname2fnum( @_ )}; -sub wk2fnum { my $self = shift; return $self->data->wk2fnum( @_ )}; +sub wk2fname { my $self = shift; return $self->{data}->wk2fname( @_ )}; +sub fname2fnum { my $self = shift; return $self->{data}->fname2fnum( @_ )}; +sub wk2fnum { my $self = shift; return $self->{data}->wk2fnum( @_ )}; =item AUTOLOAD functionality @@ -1660,6 +1658,9 @@ Send patches, bug reports, suggestions and questions to C<ma...@we...>. +Some changes in versions 0.12-0.13 (Aug-Sep 2009) were made for and +sponsored by Twiki Inc (formerly TWiki.Net). + =head1 LICENSE WebFetch is Open Source software distributed via the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |