Sophie

Sophie

distrib > Mageia > 1 > i586 > by-pkgid > 38a92544727c47b442ecc74b2bcad918 > files > 8

svn2cl-0.12-2.mga1.noarch.rpm

#!/usr/bin/perl

use XML::Simple;

my @authors;
while (<>) {
    /^(.*?):(.*)$/ and push @authors, { uid => $1, content => $2 };
}
print XMLout({ author => \@authors }, RootName => "authors");