~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/reference/syslog-ng.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-03-14 12:57:49 UTC
  • mfrom: (1.3.1 upstream) (12.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100314125749-m3ats648sp2urg0f
Tags: 3.0.5-1
New upstream release, new maintainer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
 
                version="1.0">
4
 
 
5
 
<xsl:import href="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/docbook.xsl"/>
6
 
<xsl:param name="chunk.first.sections" select="1"/>
7
 
<xsl:param name="section.autolabel" select="1"/>
8
 
<xsl:param name="navig.graphics" select="1"/>
9
 
<xsl:param name="navig.graphics.extension" select="'.png'"/>
10
 
<xsl:param name="suppress.footer.navigation" select="1"/>
11
 
<xsl:param name="html.stylesheet" select="'static/refguide.css'"/>
12
 
<xsl:param name="table.borders.with.css" select="0"/>
13
 
 
14
 
<xsl:template name="header.navigation">
15
 
  <xsl:param name="prev" select="/foo"/>
16
 
  <xsl:param name="next" select="/foo"/>
17
 
  <xsl:param name="nav.context"/>
18
 
                                                                                                           
19
 
  <xsl:variable name="home" select="/*[1]"/>
20
 
  <xsl:variable name="up" select="parent::*"/>
21
 
 
22
 
  <div class="navheader">
23
 
     <table width="100%" summary="Navigation header">
24
 
       <tr>
25
 
         <td>
26
 
           <b><xsl:apply-templates select="/" mode="object.title.markup"/></b>
27
 
         </td>
28
 
         <td width="100">
29
 
           <img src="balabit.png"/>
30
 
         </td>
31
 
       </tr>
32
 
       <tr>
33
 
         <td colspan="2">
34
 
           <xsl:choose>
35
 
             <xsl:when test="count($up)>0">
36
 
               <a class="naviglink">
37
 
                 <xsl:attribute name="href">
38
 
                   <xsl:call-template name="href.target">
39
 
                     <xsl:with-param name="object" select="$up"/>
40
 
                   </xsl:call-template>
41
 
                 </xsl:attribute>
42
 
                 Up
43
 
               </a>
44
 
             </xsl:when>
45
 
             <xsl:otherwise>
46
 
               Up
47
 
             </xsl:otherwise>
48
 
           </xsl:choose>
49
 
           <xsl:choose>
50
 
             <xsl:when test="count($prev)>0">
51
 
               <a class="naviglink">
52
 
                 <xsl:attribute name="href">
53
 
                   <xsl:call-template name="href.target">
54
 
                     <xsl:with-param name="object" select="$prev"/>
55
 
                   </xsl:call-template>
56
 
                 </xsl:attribute>
57
 
                 Previous
58
 
               </a>
59
 
             </xsl:when>
60
 
             <xsl:otherwise>
61
 
               Previous
62
 
             </xsl:otherwise>
63
 
           </xsl:choose>           <xsl:choose>
64
 
             <xsl:when test="count($next)>0">
65
 
               <a class="naviglink">
66
 
                 <xsl:attribute name="href">
67
 
                   <xsl:call-template name="href.target">
68
 
                     <xsl:with-param name="object" select="$next"/>
69
 
                   </xsl:call-template>
70
 
                 </xsl:attribute>
71
 
                 Next
72
 
               </a>
73
 
             </xsl:when>
74
 
             <xsl:otherwise>
75
 
               Next
76
 
             </xsl:otherwise>
77
 
           </xsl:choose>
78
 
         </td>
79
 
       </tr>
80
 
     </table>
81
 
     <hr height="1"/>
82
 
   </div>
83
 
</xsl:template>
84
 
 
85
 
</xsl:stylesheet>
86
 
                
87
 
                                                
 
 
b'\\ No newline at end of file'