X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FHTML%2FZoom.pm;h=5a852ea321696587999382c2242da87565bb0efe;hb=94a3ddd9ea6e8c859f01407cc17c7042ccf34ba0;hp=402ca1f032d85c6f67e7c534e035a327a116644e;hpb=5cac799ef22c33ef914b2cf9ba1c66a2a1b403e1;p=catagits%2FHTML-Zoom.git diff --git a/lib/HTML/Zoom.pm b/lib/HTML/Zoom.pm index 402ca1f..5a852ea 100644 --- a/lib/HTML/Zoom.pm +++ b/lib/HTML/Zoom.pm @@ -6,6 +6,7 @@ use HTML::Zoom::ZConfig; use HTML::Zoom::ReadFH; use HTML::Zoom::Transform; use HTML::Zoom::TransformBuilder; +use Scalar::Util (); our $VERSION = '0.009004'; @@ -149,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 @@ -717,6 +730,20 @@ 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 AUTOLOAD METHODS + +L AUTOLOADS methods against L so that you can reduce a +certain amount of boilerplate typing. This allows you to replace: + + $z->select('div')->replace_content("Hello World"); + +With: + + $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)