Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: xml::libxml open, add and save not formatting properly

by gam3 (Curate)
on Mar 23, 2010 at 23:10 UTC ( [id://830414]=note: print w/replies, xml ) Need Help??


in reply to xml::libxml open, add and save not formatting properly

You might look at XML::Bare or XML::ED as they are very simple.
-- gam3
A picture is worth a thousand words, but takes 200K.
  • Comment on Re: xml::libxml open, add and save not formatting properly

Replies are listed 'Best First'.
Re^2: xml::libxml open, add and save not formatting properly
by itsscott (Sexton) on Mar 23, 2010 at 23:17 UTC
    Looks interesting, unfortunately this projects requirements are to only use xml::libxml Thanks for the feedback!
      Too bad that you can't use something like XML::Tidy. I tried it, and it returned this:
      <?xml version="1.0" encoding="utf-8"?> <config> <sites> <site> <sitename>www.example.com</sitename> <active>1</active> <rooturl>http://www.example.com.com/</rooturl> <name>Example</name> </site> <site> <sitename>Test entry</sitename> <name /> <rooturl>http://www.test.com.com/</rooturl> <reportname>test report name</reportname> </site> </sites> </config>
      The code that I used:
      #!/usr/bin/perl use strict; use warnings; use XML::Tidy; my $tidy_obj = XML::Tidy->new( 'filename' => '/path/to/xmlfile'); $tidy_obj->tidy(); $tidy_obj->write();

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-16 14:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found