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}"/>
34 <!-- Mobile Safari (iPhone) - Reduce viewport to physical size of device -->
35 <meta name="viewport" content="width=device-width"/>
38 <xsl:value-of select="$html.head.title"/>
41 <xsl:copy-of select="$html.head.append"/>
48 <a href="{$docroot}">Exim Internet Mailer</a>
51 <!-- Outer Container -->
57 <ul id="nav_flow" class="nav">
58 <li> <a href="{$docroot}/mirrors.html">Download</a> </li>
59 <li> <a href="{$docroot}/docs.html">Documentation</a> </li>
60 <li> <a href="{$docroot}/maillist.html">Mailing Lists</a> </li>
61 <li> <a href="http://wiki.exim.org/">Wiki</a> </li>
62 <li> <a href="http://www.exim.org/bugzilla/">Bugs</a> </li>
63 <li> <a href="{$docroot}/credits.html">Credits</a> </li>
68 <form action="http://www.google.com/search" method="get">
69 <span class="search_field_container">
70 <input type="search" name="q" placeholder="Search Docs" class="search_field"/>
72 <input type="hidden" name="hl" value="en"/>
73 <input type="hidden" name="ie" value="UTF-8"/>
74 <input type="hidden" name="as_qdr" value="all"/>
75 <input type="hidden" name="q" value="site:www.exim.org"/>
76 <input type="hidden" name="q" value="inurl:exim-html-current"/>
81 <!-- MAIN CONTENT. This is the div that wraps around the other stylesheets -->
84 <xsl:call-template name="content"/>
89 <iframe id="branding" name="branding" src="{$docroot}/branding/branding.html" height="0" frameborder="no" scrolling="no"/>
94 <xsl:text>Website design by </xsl:text>
95 <a href="https://secure.grepular.com/">Mike Cardwell</a>
96 <xsl:text>, of </xsl:text>
97 <a href="http://cardwellit.com/">Cardwell IT Ltd.</a>
101 <div class="left_bar"/>
102 <div class="right_bar"/>
104 <!-- Append anything to the outer container? -->
105 <xsl:copy-of select="$html.body.outer.append"/>
108 <!-- Load latest version of jQuery 1.4 from the Google CDN -->
109 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
111 <!-- Local JavaScript -->
112 <script type="text/javascript" src="{$docroot}/common.js"></script>
114 <xsl:copy-of select="$html.body.append"/>
121 <!-- Quote Element -->
122 <xsl:template match="quote">
123 <xsl:text>“</xsl:text><xsl:apply-templates match="*"/><xsl:text>”</xsl:text>
126 <!-- Random Docbook Elements -->
127 <xsl:template match="filename | emphasis | option | command | function">
128 <span class="docbook_{name()}"> <xsl:apply-templates/> </span>
131 <!-- Literal Element -->
132 <xsl:template match="literal">
133 <code class="docbook_literal"> <xsl:apply-templates/> </code>
135 <xsl:template match="literallayout">
136 <div class="docbook_literallayout"> <pre> <xsl:apply-templates/> </pre> </div>
139 <!-- ULink Element -->
140 <xsl:template match="ulink">
141 <a href="{text()}"> <xsl:value-of select="text()"/> </a>
144 <!-- XREF (Fixed up in the Perl) -->
145 <xsl:template match="xref">
146 <a href="{@url}" title="{@chapter_id}. {@chapter_title}">
148 <xsl:when test="@section_id">
150 <xsl:when test="@longref">
151 <xsl:value-of select="@chapter_title"/>
153 <xsl:value-of select="concat(' [',@section_title,']')"/>
157 <xsl:value-of select="concat(@chapter_id,'.',@section_id)"/>
163 <xsl:when test="@longref">
164 <xsl:value-of select="@chapter_title"/>
167 <xsl:value-of select="@chapter_id"/>
176 <xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template>
179 <xsl:template match="itemizedlist"> <ul> <xsl:apply-templates/> </ul> </xsl:template>
180 <xsl:template match="itemizedlist/listitem"> <li> <xsl:apply-templates/> </li> </xsl:template>
181 <xsl:template match="orderedlist"> <ol> <xsl:apply-templates/> </ol> </xsl:template>
182 <xsl:template match="orderedlist/listitem"> <li> <xsl:apply-templates/> </li> </xsl:template>
183 <xsl:template match="variablelist"> <dl> <xsl:apply-templates/> </dl> </xsl:template>
184 <xsl:template match="variablelist/varlistentry/term"> <dt> <xsl:apply-templates/> </dt> </xsl:template>
185 <xsl:template match="variablelist/varlistentry/listitem"> <dd> <xsl:apply-templates/> </dd> </xsl:template>
188 <xsl:template match="informaltable"> <table> <xsl:apply-templates/> </table> </xsl:template>
189 <xsl:template match="tbody/row"> <tr> <xsl:apply-templates/> </tr> </xsl:template>
190 <xsl:template match="row/entry"> <td> <xsl:apply-templates/> </td> </xsl:template>
191 <xsl:template match="tgroup|tbody"> <xsl:apply-templates/> </xsl:template>
194 <xsl:template match="indexterm|title|titleabbrev|current_version"/>