From: Anders S. Mortensen Date: Thu, 28 Jun 2007 13:57:53 +0000 (+0000) Subject: Tell toString() to pretty print the output xml. X-Git-Tag: CPAN-v1.02~54^2~326 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=e8692a780d3467b2028e6e1b6ea21acd634b9c0c;hp=406d68d073252b2d4995f7a073f3701569a527c5 Tell toString() to pretty print the output xml. --- diff --git a/bin/irspy_xsltproc.pl b/bin/irspy_xsltproc.pl index 30869be..03e641d 100755 --- a/bin/irspy_xsltproc.pl +++ b/bin/irspy_xsltproc.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: irspy_xsltproc.pl,v 1.3 2007-02-02 12:44:43 sondberg Exp $ +# $Id: irspy_xsltproc.pl,v 1.4 2007-06-28 13:57:53 sondberg Exp $ # ------------------------------------------------------------------ # This script is only for debugging purposes - it takes a raw IRspy # xml output document as argument and executes the irspy2zeerex.xsl @@ -25,4 +25,4 @@ my $source_file = shift || die("$0: Please specify xml instance file"); my $source_doc = $spy->{libxml}->parse_file($source_file); my $results = $spy->{irspy_to_zeerex_style}->transform($source_doc); -print $results->toString(); +print $results->toString(1);