A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

XSL variables

Set a variable
<xsl:variable name="something" select="21">

Use a variable
<xsl:value-of select="$something">

You can't change the value of variables.