Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/boostbook/xsl/utility.xsl @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 786 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3   Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
4 
5   Distributed under the Boost Software License, Version 1.0.
6   (See accompanying file LICENSE_1_0.txt or copy at
7   http://www.boost.org/LICENSE_1_0.txt)
8  -->
9<!DOCTYPE xsl:stylesheet [
10<!ENTITY nbsp "&#160;">
11]>
12<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
13                version="1.0">
14  <!-- Indent the current line-->
15  <xsl:template name="indent">
16    <xsl:param name="indentation"/>
17    <xsl:if test="$indentation > 0">
18      <xsl:text>&nbsp;</xsl:text>
19      <xsl:call-template name="indent">
20        <xsl:with-param name="indentation" select="$indentation - 1"/>
21      </xsl:call-template>
22    </xsl:if>
23  </xsl:template>
24
25</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.