home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252950_hhp.en.xsl < prev    next >
Extensible Markup Language  |  2003-04-20  |  648b  |  22 lines

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