inital commit - Durchstich

This commit is contained in:
Tilman Walther
2012-01-08 15:18:29 +01:00
commit d72297216f
167 changed files with 15822 additions and 0 deletions
@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="main-menu">
<table cellspacing="0" cellpadding="0" border="0"
style="padding: 0; margin: 0; border: 0">
<tr>
<td width="5px">
<img src="/public/skins/default/common/ctl.png"
height="24" />
</td>
<td style="padding-left: 10px"></td>
<xsl:apply-templates select="home-menu-entry" />
<xsl:apply-templates select="main-menu-entry" />
<xsl:apply-templates select="article-menu" />
<td width="100%"></td>
<td>
<form method="GET" action="/find/pages/"
name="findform">
<div id="search-bar">
<input id="search-txt" type="text"
tabindex="0" name="query" accesskey="f" title="Find [Alt-f]" />
<input id="search-btn" type="submit"
value="" title="Find [Alt-f]" />
</div>
</form>
<script language="javascript">
<!--
document.findform.query.focus();
// -->
</script>
</td>
<td style="padding: 0; text-align: right">
<img src="/public/skins/default/common/ctr.png"
height="24" />
</td>
</tr>
</table>
</xsl:template>
<xsl:template match="article-menu">
<td>
<img src="/public/skins/default/common/left-corner.gif"
width="4" height="24" />
</td>
<td id="tab-selected">
<xsl:attribute name="bgcolor">#FFFFFF</xsl:attribute>
<xsl:value-of select="/page/article/id" />
</td>
<td>
<img src="/public/skins/default/common/right-corner.gif"
width="15" height="24" />
</td>
</xsl:template>
<xsl:template match="main-menu-entry">
<xsl:choose>
<xsl:when test="@selected = 'yes'">
<td>
<img
src="/public/skins/default/common/left-corner.gif" width="4"
height="24" />
</td>
<td id="tab-selected">
<xsl:value-of select="@value" />
</td>
<td>
<img
src="/public/skins/default/common/right-corner.gif" width="15"
height="24" />
</td>
</xsl:when>
<xsl:otherwise>
<td id="menu-entry">
<a style="color: #FFF; font-weight: bold; ">
<xsl:attribute name="href">
<xsl:value-of select="@link" />
</xsl:attribute>
<xsl:attribute name="title">
<xsl:value-of select="@title" />
</xsl:attribute>
<xsl:attribute name="accesskey">
<xsl:value-of select="@accesskey" />
</xsl:attribute>
<xsl:value-of select="@value" />
</a>
</td>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>