~ubuntu-branches/ubuntu/quantal/dita-ot/quantal

« back to all changes in this revision

Viewing changes to xsl/troff/step1-sw-d.xsl

  • Committer: Package Import Robot
  • Author(s): Mathieu Malaterre
  • Date: 2012-05-03 11:08:47 UTC
  • Revision ID: package-import@ubuntu.com-20120503110847-qa0gjbbeq0wulj2n
Tags: upstream-1.5.3
ImportĀ upstreamĀ versionĀ 1.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!-- This file is part of the DITA Open Toolkit project hosted on 
 
3
  Sourceforge.net. See the accompanying license.txt file for 
 
4
  applicable licenses.-->
 
5
<!-- (c) Copyright IBM Corp. 2004, 2006 All Rights Reserved. -->
 
6
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
7
 
 
8
<xsl:output method="xml"/>
 
9
 
 
10
<xsl:template match="*[contains(@class,' sw-d/msgph ')]">
 
11
  <text style="tt"><xsl:apply-templates/></text>
 
12
</xsl:template>
 
13
 
 
14
<xsl:template match="*[contains(@class,' sw-d/systemoutput ')]">
 
15
  <text style="tt"><xsl:apply-templates/></text>
 
16
</xsl:template>
 
17
 
 
18
<xsl:template match="*[contains(@class,' sw-d/userinput ')]">
 
19
  <text style="tt"><xsl:apply-templates/></text>
 
20
</xsl:template>
 
21
 
 
22
<xsl:template match="*[contains(@class,' sw-d/varname ')]">
 
23
  <text style="italics"><xsl:apply-templates/></text>
 
24
</xsl:template>
 
25
 
 
26
</xsl:stylesheet>