From: Terrence B. <met...@gm...> - 2009-03-13 17:57:27
|
=head3 Simplifying calls to HTML::FillInForm Since HTML::FillInForm gets and returns strings, using HTML::Element instances becomes tedious: 1. Seamstress has an HTML tree that it wants the form filled in on 2. Seamstress converts this tree to a string 3. FillInForm parses the string into an HTML tree and then fills in the form 4. FillInForm converts the HTML tree to a string 5. Seamstress re-parses the HTML for additional processing I've filed a bug about this: L<https://rt.cpan.org/Ticket/Display.html?id=44105> This function, tree_fillinform, allows you to pass a tree to fillinform (along with your data structure) and get back a tree: my $new_tree = $html_tree->fillinform($data_structure); -- Terrence Brannon |