Home | History | Annotate | Line # | Download | only in dist
      1 <?xml version="1.0"?> <!-- -*- sgml -*- -->
      2 <!DOCTYPE xsl:stylesheet [ <!ENTITY bz-css SYSTEM "./bzip.css"> ]>
      3 
      4 <xsl:stylesheet 
      5    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
      6 
      7 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
      8 <xsl:import href="bz-common.xsl"/>
      9 
     10 <!-- use UTF-8 encoding -->
     11 <xsl:output method="html" encoding="UTF-8" indent="yes"/>
     12 
     13 <!-- we include the css as link and directly when generating one large file -->
     14 <xsl:template name="user.head.content">
     15   <xsl:text disable-output-escaping="yes">
     16 <![CDATA[<]]>link rel="stylesheet" type="text/css" href="bzip.css" />
     17   </xsl:text>
     18   <style type="text/css" media="screen">
     19     <xsl:text>&bz-css;</xsl:text>
     20   </style>
     21 </xsl:template>
     22 
     23 </xsl:stylesheet>
     24