bz-html.xsl 646 B

1234567891011121314151617181920
  1. <?xml version="1.0"?> <!-- -*- sgml -*- -->
  2. <!DOCTYPE xsl:stylesheet [ <!ENTITY bz-css SYSTEM "./bzip.css"> ]>
  3. <xsl:stylesheet
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  5. <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
  6. <xsl:import href="bz-common.xsl"/>
  7. <!-- use 8859-1 encoding -->
  8. <xsl:output method="html" encoding="ISO-8859-1" indent="yes"/>
  9. <!-- we include the css directly when generating one large file -->
  10. <xsl:template name="user.head.content">
  11. <style type="text/css" media="screen">
  12. <xsl:text>&bz-css;</xsl:text>
  13. </style>
  14. </xsl:template>
  15. </xsl:stylesheet>