blob: 96e66d8656dbe930bf3c71f0569c514a4f700e10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output
method="text"
encoding="windows-1252"
indent="no"
/>
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('../lang/en.xml')/messages"/>
<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="hhp-lang" select="'0x409 English (United States)'" /> <!-- MS magic ... -->
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="hhp.xsl"/>
</xsl:stylesheet>
|