Monthly Archives: August 2006
XSLT transform with Perl
Here is a Perl snippet that transforms an XML file with XSLT:
use strict;
use XML::XSLT::Wrapper;
my $xml_input_filename = "xml/data.xml";
my $xml_output_filename = "xml/out.xml";
my $xsl_filename = "xml/transform.xslt";
my $xslt = XML::XSLT::Wrapper->new(
ProcessorList => [
'libxslt',
'sablotron',
'xslt'
],
);
my $result = $xslt->transform(
OutFile => $xml_output_filename,
xml => $xml_input_filename,
xsl => $xsl_filename,
);
$xslt->dispose();
Blogger, WordPress, b2evolution: Blog Engine Choice
As I signed up with Blogger a few years ago, and have never looked at alternatives, I decided to do so now, just to check whether I'm missing on something. Here's what I found.
Sitemap generator configuration for Blogger
If you are using Google’s sitemap generator [code]]czoxNDpcInNpdGVtYXBfZ2VuLnB5XCI7e1smKiZdfQ==[[/code] to generate a sitemap of your Blogger blog , here are the configuration lines to add to the config.xml file:
XML parsing with Perl using XPath