~ubuntu-branches/ubuntu/maverick/kubuntu-docs/maverick

« back to all changes in this revision

Viewing changes to kubuntu/libs/kde-style.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Richard A. Johnson
  • Date: 2008-08-18 10:49:14 UTC
  • Revision ID: james.westby@ubuntu.com-20080818104914-83r2er2hsmdp2o0l
Tags: 8.10-2
* Restructured kubuntu documentation package
  - Refer to the NEWS text located in the root directory of the package
* Removed the Firefox start page files
* debian/rules: updated to remove firefox files
* debian/control: removed perl deps due to removal of firefox files, bumped
  version to 3.8.0, updated kdelibs-data dep to kdelibs5-data

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2
 
                xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
3
 
                version="1.0">
4
 
 
5
 
<xsl:param name="callout.graphics.path" select="'../../common/'" doc:type='string'/>
6
 
 
7
 
<xsl:template match="guilabel|guimenu|guisubmenu|guimenuitem|interface|guibutton">
8
 
  <span class="guiitem">
9
 
     <xsl:call-template name="inline.charseq"/>
10
 
  </span>
11
 
</xsl:template>
12
 
 
13
 
<xsl:template match="accel">
14
 
  <span class="accel">
15
 
     <xsl:call-template name="inline.charseq"/>
16
 
   </span>
17
 
</xsl:template>
18
 
 
19
 
<xsl:attribute-set name="kde.body.attrs">
20
 
</xsl:attribute-set>
21
 
 
22
 
<xsl:template match="command">
23
 
  <span class="command">
24
 
    <xsl:call-template name="inline.boldseq"/>
25
 
  </span>
26
 
</xsl:template>
27
 
 
28
 
<xsl:template match="option">
29
 
  <span class="option">
30
 
    <xsl:call-template name="inline.monoseq"/>
31
 
  </span>
32
 
</xsl:template>
33
 
 
34
 
<xsl:template match="parameter">
35
 
  <span class="parameter">
36
 
    <xsl:call-template name="inline.italicmonoseq"/>
37
 
  </span>
38
 
</xsl:template>
39
 
 
40
 
<xsl:template match="envar">
41
 
  <span class="envar">
42
 
    <xsl:call-template name="inline.monoseq"/>
43
 
  </span>
44
 
</xsl:template>
45
 
 
46
 
<xsl:template match="replaceable" priority="1">
47
 
  <span class="replaceable">
48
 
    <xsl:call-template name="inline.italicmonoseq"/>
49
 
  </span>
50
 
</xsl:template>
51
 
 
52
 
<xsl:template match="mediaobject|mediaobjectco">
53
 
  <div class="{name(.)}">
54
 
    <xsl:if test="@id">
55
 
      <a name="{@id}"/>
56
 
    </xsl:if>
57
 
        <hr/>
58
 
    <xsl:call-template name="select.mediaobject"/>
59
 
    <xsl:apply-templates select="caption"/>
60
 
        <hr/>
61
 
  </div>
62
 
</xsl:template>
63
 
 
64
 
<xsl:template match="honorific|firstname|surname|lineage|othername">
65
 
  <xsl:call-template name="inline.charseq"/>
66
 
</xsl:template>
67
 
 
68
 
<xsl:template match="personname">
69
 
  <xsl:call-template name="anchor"/>
70
 
  <xsl:call-template name="person.name"/>
71
 
</xsl:template>
72
 
<!-- 
73
 
<xsl:template match="programlisting">
74
 
 <xsl:param name="linenumbering.extension" select="1"/>
75
 
</xsl:template> -->
76
 
</xsl:stylesheet>