I have written a module I use for generating human readable XML files,
which are easy to write in a chain.
Sample:
print new XML::????(tab => 4)
->xml_
->a({x=>1, y=>2})
->group_({p=>"bla"})
->foo({b=>1, c=>2})
->text({bold=>'yes', size=>2},'This is only a <demo>')
->img(['ns'],{width=>100, height=>200})
->sc(stroke => "black")
->_group
->_xml
->_print_;
I'd like to submit this to CPAN.
Under the module naming convention it would look like this I think.
XML::Creator || XML::Easy || XML::Chain
Name DSLI Description Info
------------- ---- -------------------------------------------- -----
XML::Creator cdpO Easy XML creator HPALM
The utility has no dependencies to other XML modules.
I 'd appreciate any guidance / suggestions you can give.
Hartmut Palm