X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FHTML%2FZoom.pm;h=baeec156e97ec1f4d0ef0f25da6ec791cd3294ad;hb=60d640ca9fbc328f7badc380a38f46e5414b6bf2;hp=80ee8e9b369f5ea4c8dc7a2adaadb06ab8402db0;hpb=fdb039c6cede6d5cff55d27bde6afd723507cb81;p=catagits%2FHTML-Zoom.git diff --git a/lib/HTML/Zoom.pm b/lib/HTML/Zoom.pm index 80ee8e9..baeec15 100644 --- a/lib/HTML/Zoom.pm +++ b/lib/HTML/Zoom.pm @@ -1,14 +1,14 @@ package HTML::Zoom; -use strict; -use warnings FATAL => 'all'; +use strictures 1; use HTML::Zoom::ZConfig; use HTML::Zoom::ReadFH; use HTML::Zoom::Transform; use HTML::Zoom::TransformBuilder; +use Scalar::Util (); -our $VERSION = '0.009001'; +our $VERSION = '0.009005'; $VERSION = eval $VERSION; @@ -150,6 +150,18 @@ sub then { $self->select($self->{transforms}->[-1]->selector); } +sub AUTOLOAD { + my ($self, $selector, @args) = @_; + my $sel = $self->select($selector); + my $meth = our $AUTOLOAD; + $meth =~ s/.*:://; + if(my $cr = $sel->_zconfig->filter_builder->can($meth)) { + return $sel->$meth(@args); + } else { + die "We can't do $meth on ->select('$selector')"; + } +} + 1; =head1 NAME @@ -718,13 +730,42 @@ together; the intermediary object isn't designed or expected to stick around. Re-runs the previous select to allow you to chain actions together on the same selector. -=head1 AUTHORS +=head1 AUTOLOAD METHODS -=over +L AUTOLOADS methods against L so that you can reduce a +certain amount of boilerplate typing. This allows you to replace: -=item * Matt S. Trout + $z->select('div')->replace_content("Hello World"); + +With: -=back + $z->replace_content(div => "Hello World"); + +Besides saving a few keys per invocations, you may feel this looks neater +in your code and increases understanding. + +=head1 AUTHOR + +mst - Matt S. Trout (cpan:MSTROUT) + +=head1 CONTRIBUTORS + +Oliver Charles + +Jakub Nareski + +Simon Elliot + +Joe Highton + +John Napiorkowski + +Robert Buels + +=head1 COPYRIGHT + +Copyright (c) 2010-2011 the HTML::Zoom L and L +as listed above. =head1 LICENSE