Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: (RFC) XML::TransformRules

by Jenda (Abbot)
on Oct 08, 2006 at 13:47 UTC ( [id://576994]=note: print w/replies, xml ) Need Help??


in reply to (RFC) XML::TransformRules

Not much discussion yet :-( Maybe it's the weekend. Maybe I did not explain it well enough. Anyway for now it seems that I WILL implement the module and see if it starts to get used. It'll sit on top of XML::Parser::Expat.

To allow the rules to both define attributes in the parent's structure and append/push to it's content I'll allow odd numbered lists, the last item will go into the _content.

Here's yet another set of rules to produce something similar to what would XML::Simple create:

%rules = ( _default => sub { if (scalar(keys %{$_[1]}) == 1) { return $_[0] => $_[1]->{_content} } else { return $_[0] => $_[1] } }, phone => sub {$_[1]->{type} => $_[1]->{content}}, phones => sub {delete $_[1]->{_content}; 'phones' => $_[1]}, );

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://576994]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-20 04:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found