2002-09-27 02:15:09 +02:00
|
|
|
<!-- $Id$ -->
|
|
|
|
|
|
|
|
<xsl:template name="search_field">
|
2003-04-20 00:23:24 +02:00
|
|
|
<xsl:variable name="search_url"><xsl:value-of select="search_url"/></xsl:variable>
|
2002-09-27 02:15:09 +02:00
|
|
|
<xsl:variable name="query"><xsl:value-of select="query"/></xsl:variable>
|
2003-04-20 00:23:24 +02:00
|
|
|
<xsl:variable name="lang_search"><xsl:value-of select="lang_search"/></xsl:variable>
|
|
|
|
<form method="post" action="{$search_url}">
|
2002-10-06 20:04:05 +02:00
|
|
|
<input type="text" name="query" value="{$query}" onMouseout="window.status='';return true;">
|
2002-10-02 01:14:10 +02:00
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_searchfield_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2002-09-27 02:15:09 +02:00
|
|
|
<xsl:text> </xsl:text>
|
2003-04-20 00:23:24 +02:00
|
|
|
<input type="submit" name="submit" value="{$lang_search}" onMouseout="window.status='';return true;">
|
2002-10-02 01:14:10 +02:00
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_searchbutton_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2002-09-27 02:15:09 +02:00
|
|
|
</form>
|
|
|
|
</xsl:template>
|