1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="common.xsl"/>
<!-- Format option menus -->
<xsl:template match="list[offline]" mode="list-select"/>
<xsl:template match="list" mode="list-select">
<option value="{id}">
<xsl:value-of select="email/@name"/>
<xsl:if test="email/@address">
<xsl:text> <</xsl:text>
<xsl:value-of select="email/@address"/>
<xsl:text>></xsl:text>
</xsl:if>
</option>
</xsl:template>
<xsl:template match="group" mode="group-select">
<option value="{id}">
<xsl:choose>
<xsl:when test="heading"><xsl:value-of select="heading"/></xsl:when>
<xsl:otherwise><xsl:value-of select="id"/></xsl:otherwise>
</xsl:choose>
</option>
</xsl:template>
<!-- Format mailing list groups -->
<xsl:template match="list" mode="list-sections">
<li>
<xsl:choose>
<xsl:when test="offline">
<a href="{link}"><xsl:value-of select="email/@name"/></a>
<xsl:value-of select="$offline"/>
</xsl:when>
<xsl:otherwise>
<b><a href="../list/{id}.{$ext}"><xsl:value-of select="email/@name"/></a></b>
</xsl:otherwise>
</xsl:choose>
<xsl:text> — </xsl:text>
<i><xsl:value-of select="description"/></i>
</li>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="group" mode="group-sections">
<xsl:if test="position()!=1">
<div class="footer"/>
</xsl:if>
<div class="body">
<h1 class="group">
<a name="{id}"/>
<xsl:choose>
<xsl:when test="heading"><xsl:value-of select="heading"/></xsl:when>
<xsl:otherwise><xsl:value-of select="id"/></xsl:otherwise>
</xsl:choose>
</h1>
<ul>
<xsl:apply-templates select="list" mode="list-sections"/>
</ul>
</div>
</xsl:template>
<xsl:key name="langs" match="group/list" use="language"/>
<!-- Format a splash request -->
<xsl:template match="splash">
<html lang="{$lang}">
<head>
<link rel="stylesheet" href="../ui/default.css" type="text/css"/>
<title><xsl:value-of select="server/archive"/></title>
<script type="text/javascript" src="../ui/common.js"/>
</head>
<body>
<div class="header">
<table class="external">
<tr>
<td align="left"><h1><xsl:value-of select="server/archive"/></h1></td>
<td align="right"><xsl:call-template name="navbar"/></td>
</tr>
</table>
<table class="navigation">
<tr><th align="left"><xsl:value-of select="$search-menu"/></th></tr>
<tr><td nowrap="NOWRAP" align="center">
<form action="{server/cgi-url}/keyword.cgi" accept-charset="UTF-8" onsubmit="form_timezone(this)">
<input type="hidden" name="doc-url" value="{server/doc-url}"/>
<input type="hidden" name="format" value="{$ext}"/>
<table>
<tr>
<td colspan="2">
<input type="text" name="query" class="longtext"/>
<input type="submit" name="submit" value="{$search-button}"/>
</td>
</tr>
<tr>
<td><b><xsl:value-of select="$subject"/></b></td>
<td><input type="text" name="subject" class="longtext"/></td>
</tr>
<tr>
<td><b><xsl:value-of select="$author"/></b></td>
<td><input type="text" name="author" class="longtext"/></td>
</tr>
<tr>
<td><b><xsl:value-of select="$list"/></b></td>
<td>
<select name="list">
<option value=""><xsl:value-of select="$all-lists"/></option>
<xsl:for-each select="group/list">
<xsl:sort select="id"/>
<xsl:apply-templates mode="list-select" select="."/>
</xsl:for-each>
</select>
</td>
</tr>
<xsl:if test="count(group) > 1">
<tr>
<td><b><xsl:value-of select="$group"/></b></td>
<td>
<select name="group">
<option value=""><xsl:value-of select="$all-groups"/></option>
<xsl:apply-templates mode="group-select" select="group"/>
</select>
</td>
</tr>
</xsl:if>
<xsl:variable name="langs" select="group/list[generate-id(.)=generate-id(key('langs',language)[1])]"/>
<xsl:if test="count($langs) > 1">
<tr>
<td><b><xsl:value-of select="$language"/></b></td>
<td>
<select name="lang">
<option value=""><xsl:value-of select="$all-langs"/></option>
<xsl:for-each select="$langs">
<xsl:sort select="language"/>
<xsl:variable name="lcode" select="language"/>
<xsl:variable name="lname" select="document('lang.xml')/langs/lang[@code=$lcode]"/>
<xsl:element name="option">
<xsl:attribute name="value"><xsl:value-of select="language"/></xsl:attribute>
<!-- We only allow languages without a region code in search -->
<xsl:if test="language = translate($lang, '-ABCDEFGHIJKLMNOPQRSTUVWXYZ', '')">
<xsl:attribute name="selected">SELECTED</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="$lname"><xsl:value-of select="$lname"/></xsl:when>
<xsl:otherwise>
<xsl:value-of select="$lcode"/>
<xsl:value-of select="$missing-lang"/>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:for-each>
</select>
</td>
</tr>
</xsl:if>
<tr>
<td><b><xsl:value-of select="$date"/></b></td>
<td>
<xsl:call-template name="date-fields">
<xsl:with-param name="date" select="$jump-date"/>
</xsl:call-template>
</td>
</tr>
</table>
</form>
</td></tr>
</table>
</div>
<xsl:apply-templates mode="group-sections" select="group"/>
<div class="footer">
<xsl:call-template name="lurker-signature"/>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|