From 3c14ea1e4127f65aaf48989a5364977785b595cf Mon Sep 17 00:00:00 2001 From: tbrannon Date: Tue, 13 Jan 2009 11:31:23 -0500 Subject: [PATCH] new content_handler functionality --- lib/HTML/Element/Library.pm | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/lib/HTML/Element/Library.pm b/lib/HTML/Element/Library.pm index 08f6ee5..99abc3d 100644 --- a/lib/HTML/Element/Library.pm +++ b/lib/HTML/Element/Library.pm @@ -39,7 +39,7 @@ sub HTML::Element::siblings { sub HTML::Element::passover { my ($tree, $child_id) = @_; - #warn "ARGS: my ($tree, $child)"; + warn "ARGS: my ($tree, $child_id)"; my $exodus = $tree->look_down(id => $child_id); @@ -111,9 +111,12 @@ sub HTML::Element::position { sub HTML::Element::content_handler { - my ($tree, $id_name, $content) = @_; + my ($tree, %content_hash) = @_; + + for my $k (keys %content_hash) { + $tree->set_child_content(id => $k, $content_hash{$k}); + } - $tree->set_child_content(id => $id_name, $content); } @@ -737,7 +740,7 @@ happens to be a non-element, a push_content is performed instead. After finding the node, it detaches the node's content and pushes $content as the node's content. -=head3 $tree->content_handler($sid_value , $content) +=head3 $tree->content_handler(%id_content) This is a convenience method. Because the look_down criteria will often simply be: @@ -755,6 +758,15 @@ Instead of typing: $elem->set_child_content(sid => 'fixme', 'new text') +PLEASE NOTE: you can pass a hash whose keys are Cs and whose values are the content you want there and it will perform the replacement on each hash member: + + my %id_content = (name => "Terrence Brannon", + email => 'tbrannon@in.com', + balance => 666, + content => $main_content); + + $tree->content_handler(%id_content); + =head3 $tree->highlander($subtree_span_id, $conditionals, @conditionals_args) This allows for "if-then-else" style processing. Highlander was a movie in -- 2.30.2