1 <?xml version="1.0" encoding="UTF-8"?>
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5 <!-- Define display/content information -->
6 <xsl:output indent="yes"/>
7 <xsl:output encoding="UTF-8"/>
8 <xsl:output media-type="text/html"/>
9 <xsl:output omit-xml-declaration="yes"/>
10 <xsl:output doctype-public="XSLT-compat"/>
12 <!-- Define some variables -->
13 <xsl:variable name="docroot"/>
14 <xsl:variable name="html.head.title"/>
15 <xsl:variable name="html.head.description" select="'Exim is a message transfer agent (MTA) developed at the University of Cambridge for use on Unix systems connected to the Internet.'"/>
16 <xsl:variable name="html.head.keywords" select="'exim,smtp,mta,email'"/>
17 <xsl:variable name="html.head.robots" select="'noodp,noydir,index,follow'"/>
18 <xsl:variable name="html.head.append"/>
19 <xsl:variable name="html.body.append"/>
20 <xsl:variable name="html.body.outer.append"/>
22 <!-- The main template code -->
23 <xsl:template match="/">
26 <link rel="stylesheet" type="text/css" href="{$docroot}/common.css"/>
28 <meta name="author" content="The Exim Project. <http://www.exim.org/>"/>
29 <meta name="copyright" content="Copyright ©2010The Exim Project. All rights reserved"/>
30 <meta name="description" content="{$html.head.description}"/>
31 <meta name="keywords" content="{$html.head.keywords}"/>
32 <meta name="robots" content="{$html.head.robots}"/>
35 <xsl:value-of select="$html.head.title"/>
38 <xsl:copy-of select="$html.head.append"/>
45 <a href="{$docroot}">Exim Internet Mailer</a>
48 <!-- Outer Container -->
54 <ul class="navigation">
55 <li> <a href="{$docroot}/mirrors.html">Download</a> </li>
56 <li> <a href="{$docroot}/docs.html">Documentation</a> </li>
57 <li> <a href="{$docroot}/maillist.html">Mailing Lists</a> </li>
58 <li> <a href="http://wiki.exim.org/">Wiki</a> </li>
59 <li> <a href="http://www.exim.org/bugzilla/">Bugs</a> </li>
60 <li> <a href="{$docroot}/credits.html">Credits</a> </li>
65 <form action="http://www.google.com/search" method="get">
66 <span class="search_field_container">
67 <input type="search" name="q" placeholder="Search Docs" class="search_field"/>
69 <input type="hidden" name="hl" value="en"/>
70 <input type="hidden" name="ie" value="UTF-8"/>
71 <input type="hidden" name="as_qdr" value="all"/>
72 <input type="hidden" name="q" value="site:www.exim.org"/>
73 <input type="hidden" name="q" value="inurl:exim-html-current"/>
78 <!-- MAIN CONTENT. This is the div that wraps around the other stylesheets -->
80 <xsl:call-template name="content"/>
84 <iframe id="branding" name="branding" src="{$docroot}/branding/branding.html" height="0" frameborder="no" scrolling="no"/>
89 <xsl:text>Website design by </xsl:text>
90 <a href="https://secure.grepular.com/">Mike Cardwell</a>
91 <xsl:text>, of </xsl:text>
92 <a href="http://cardwellit.com/">Cardwell IT Ltd.</a>
96 <div class="left_bar"/>
97 <div class="right_bar"/>
99 <!-- Append anything to the outer container? -->
100 <xsl:copy-of select="$html.body.outer.append"/>
103 <!-- Load latest version of jQuery 1.4 from the Google CDN -->
104 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
106 <!-- Local JavaScript -->
107 <script type="text/javascript" src="{$docroot}/common.js"></script>
109 <xsl:copy-of select="$html.body.append"/>
116 <!-- Quote Element -->
117 <xsl:template match="quote">
118 <xsl:text>“</xsl:text><xsl:apply-templates match="*"/><xsl:text>”</xsl:text>
121 <!-- Random Docbook Elements -->
122 <xsl:template match="filename | emphasis | option | command | function">
123 <span class="docbook_{name()}"> <xsl:apply-templates/> </span>
126 <!-- Literal Element -->
127 <xsl:template match="literal">
128 <code class="docbook_literal"> <xsl:apply-templates/> </code>
130 <xsl:template match="literallayout">
131 <div class="docbook_literallayout"> <pre> <xsl:apply-templates/> </pre> </div>
134 <!-- ULink Element -->
135 <xsl:template match="ulink">
136 <a href="{text()}"> <xsl:value-of select="text()"/> </a>
139 <!-- XREF (Fixed up in the Perl) -->
140 <xsl:template match="xref">
141 <a href="{@url}" title="{@chapter_id}. {@chapter_title}">
143 <xsl:when test="@section_id">
145 <xsl:when test="@longref">
146 <xsl:value-of select="concat(@chapter_id,'. ',@chapter_title,'[',@section_title,']')"/>
149 <xsl:value-of select="concat(@chapter_id,'.',@section_id)"/>
155 <xsl:when test="@longref">
156 <xsl:value-of select="concat(@chapter_id,'. ',@chapter_title)"/>
159 <xsl:value-of select="@chapter_id"/>
168 <xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template>
171 <xsl:template match="itemizedlist"> <ul> <xsl:apply-templates/> </ul> </xsl:template>
172 <xsl:template match="itemizedlist/listitem"> <li> <xsl:apply-templates/> </li> </xsl:template>
173 <xsl:template match="orderedlist"> <ol> <xsl:apply-templates/> </ol> </xsl:template>
174 <xsl:template match="orderedlist/listitem"> <li> <xsl:apply-templates/> </li> </xsl:template>
177 <xsl:template match="informaltable"> <table> <xsl:apply-templates/> </table> </xsl:template>
178 <xsl:template match="tbody/row"> <tr> <xsl:apply-templates/> </tr> </xsl:template>
179 <xsl:template match="row/entry"> <td> <xsl:apply-templates/> </td> </xsl:template>
180 <xsl:template match="tgroup|tbody"> <xsl:apply-templates/> </xsl:template>
183 <xsl:template match="indexterm|title|titleabbrev|current_version"/>