~iheino+ub/+junk/nut-upsconf-docfix

« back to all changes in this revision

Viewing changes to docs/chunked.xsl

  • Committer: Tuomas Heino
  • Author(s): Laurent Bigonville
  • Date: 2014-04-22 20:46:12 UTC
  • Revision ID: iheino+ub@cc.hut.fi-20140422204612-1x2gh3nkezfsdao4
Tags: upstream-2.7.2
ImportĀ upstreamĀ versionĀ 2.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
  Generates chunked XHTML documents from DocBook XML source using DocBook XSL
 
3
  stylesheets.
 
4
 
 
5
  NOTE: The URL reference to the current DocBook XSL stylesheets is
 
6
  rewritten to point to the copy on the local disk drive by the XML catalog
 
7
  rewrite directives so it doesn't need to go out to the Internet for the
 
8
  stylesheets. This means you don't need to edit the <xsl:import> elements on
 
9
  a machine by machine basis.
 
10
-->
 
11
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
12
        <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
 
13
        <xsl:import href="common.xsl"/>
 
14
        <xsl:param name="navig.graphics.path">images/icons/</xsl:param>
 
15
        <xsl:param name="admon.graphics.path">images/icons/</xsl:param>
 
16
        <xsl:param name="callout.graphics.path" select="'images/icons/callouts/'"/>
 
17
 
 
18
        <!-- Format-detection to prevent smartphones from being too smart -->
 
19
        <xsl:template name="user.head.content">
 
20
                <meta name="format-detection" content="telephone=no" />
 
21
        </xsl:template>
 
22
</xsl:stylesheet>