2003-04-21 02:21:09 +02:00
|
|
|
<!-- $Id$ -->
|
|
|
|
|
|
|
|
<xsl:template name="cats">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="cat_list">
|
|
|
|
<xsl:apply-templates select="cat_list"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="cat_edit">
|
|
|
|
<xsl:apply-templates select="cat_edit"/>
|
|
|
|
</xsl:when>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<!-- BEGIN cat_list -->
|
|
|
|
|
|
|
|
<xsl:template match="cat_list">
|
|
|
|
<center>
|
|
|
|
<table border="0" cellspacing="2" cellpadding="2">
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" width="100%">
|
|
|
|
<xsl:call-template name="nextmatchs"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" width="100%" align="right">
|
|
|
|
<xsl:call-template name="search_field"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<xsl:apply-templates select="cat_header"/>
|
|
|
|
<xsl:apply-templates select="cat_data"/>
|
|
|
|
<xsl:apply-templates select="cat_add"/>
|
|
|
|
</table>
|
|
|
|
</center>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<!-- BEGIN cat_header -->
|
|
|
|
|
|
|
|
<xsl:template match="cat_header">
|
|
|
|
<xsl:variable name="sort_name" select="sort_name"/>
|
|
|
|
<xsl:variable name="sort_descr" select="sort_descr"/>
|
|
|
|
<xsl:variable name="lang_sort_statustext" select="lang_sort_statustext"/>
|
|
|
|
<tr class="th">
|
|
|
|
<td width="20%"><a href="{$sort_name}" onMouseover="window.status='{$lang_sort_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_name"/></a></td>
|
|
|
|
<td width="32%"><a href="{$sort_descr}" onMouseover="window.status='{$lang_sort_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_descr"/></a></td>
|
|
|
|
<td width="8%" align="center"><xsl:value-of select="lang_add_sub"/></td>
|
|
|
|
<td width="8%" align="center"><xsl:value-of select="lang_edit"/></td>
|
|
|
|
<td width="8%" align="center"><xsl:value-of select="lang_delete"/></td>
|
|
|
|
</tr>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<!-- BEGIN cat_data -->
|
|
|
|
|
|
|
|
<xsl:template match="cat_data">
|
|
|
|
<xsl:variable name="lang_add_sub_statustext"><xsl:value-of select="lang_add_sub_statustext"/></xsl:variable>
|
|
|
|
<xsl:variable name="lang_edit_statustext"><xsl:value-of select="lang_edit_statustext"/></xsl:variable>
|
|
|
|
<xsl:variable name="lang_delete_statustext"><xsl:value-of select="lang_delete_statustext"/></xsl:variable>
|
|
|
|
<tr>
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="@class">
|
|
|
|
<xsl:value-of select="@class"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="position() mod 2 = 0">
|
|
|
|
<xsl:text>row_off</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:text>row_on</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:attribute>
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="main = 'yes'">
|
|
|
|
<td class="alarm"><b><xsl:value-of disable-output-escaping="yes" select="name"/></b></td>
|
|
|
|
<td class="alarm"><b><xsl:value-of select="descr"/></b></td>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<td><xsl:value-of disable-output-escaping="yes" select="name"/></td>
|
|
|
|
<td><xsl:value-of select="descr"/></td>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
<td align="center">
|
|
|
|
<xsl:variable name="add_sub_url" select="add_sub_url"/>
|
|
|
|
<a href="{$add_sub_url}" onMouseover="window.status='{$lang_add_sub_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_add_sub"/></a>
|
|
|
|
</td>
|
|
|
|
<td align="center">
|
|
|
|
<xsl:variable name="edit_url" select="edit_url"/>
|
|
|
|
<a href="{$edit_url}" onMouseover="window.status='{$lang_edit_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_edit"/></a>
|
|
|
|
</td>
|
|
|
|
<td align="center">
|
|
|
|
<xsl:variable name="delete_url" select="delete_url"/>
|
|
|
|
<a href="{$delete_url}" onMouseover="window.status='{$lang_delete_statustext}';return true;" onMouseout="window.status='';return true;" class="th_text"><xsl:value-of select="lang_delete"/></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<!-- BEGIN cat_add -->
|
|
|
|
|
|
|
|
<xsl:template match="cat_add">
|
2003-04-28 01:16:15 +02:00
|
|
|
<tr height="50" valign="bottom">
|
|
|
|
<xsl:variable name="action_url"><xsl:value-of select="action_url"/></xsl:variable>
|
|
|
|
<form method="post" action="{$action_url}">
|
|
|
|
<td colspan="2">
|
|
|
|
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
|
|
|
|
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_add_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2003-04-21 02:21:09 +02:00
|
|
|
</td>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td colspan="3" align="right">
|
|
|
|
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
|
|
|
|
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_done_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2003-04-21 02:21:09 +02:00
|
|
|
</td>
|
2003-04-28 01:16:15 +02:00
|
|
|
</form>
|
2003-04-21 02:21:09 +02:00
|
|
|
</tr>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<!-- END cat_list -->
|
|
|
|
|
|
|
|
<!-- BEGIN cat_edit -->
|
|
|
|
|
|
|
|
<xsl:template match="cat_edit">
|
|
|
|
<table cellpadding="2" cellspacing="2" align="center">
|
|
|
|
<tr>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td colspan="3" align="center">
|
2003-04-21 02:21:09 +02:00
|
|
|
<xsl:value-of select="message"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<xsl:variable name="edit_url" select="edit_url"/>
|
|
|
|
<form method="post" action="{$edit_url}">
|
|
|
|
<tr>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td width="23%" colspan="2">
|
2003-04-21 02:21:09 +02:00
|
|
|
<xsl:value-of select="lang_parent"/>
|
|
|
|
</td>
|
|
|
|
<td width="77%">
|
|
|
|
<xsl:call-template name="cat_select"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td colspan="2"><xsl:value-of select="lang_name"/>:</td>
|
2003-04-21 02:21:09 +02:00
|
|
|
<td><input name="values[name]" size="50" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_name_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
<xsl:attribute name="value">
|
|
|
|
<xsl:value-of select="value_name"/>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td colspan="2" valign="top"><xsl:value-of select="lang_descr"/>:</td>
|
2003-04-21 02:21:09 +02:00
|
|
|
<td><textarea cols="60" rows="10" name="values[descr]" wrap="virtual" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_descr_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
<xsl:value-of select="value_descr"/>
|
|
|
|
</textarea>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2003-04-28 01:16:15 +02:00
|
|
|
<tr height="50" valign="bottom">
|
2003-04-21 02:21:09 +02:00
|
|
|
<td>
|
|
|
|
<xsl:variable name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
|
|
|
|
<xsl:variable name="old_parent"><xsl:value-of select="old_parent"/></xsl:variable>
|
|
|
|
<input type="hidden" name="values[old_parent]" value="{$old_parent}"/>
|
|
|
|
<input type="submit" name="values[save]" value="{$lang_save}" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_save_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
|
|
|
</td>
|
|
|
|
<td>
|
2003-04-28 01:16:15 +02:00
|
|
|
<xsl:variable name="lang_apply" select="lang_apply"/>
|
|
|
|
<input type="reset" name="values[apply]" value="{$lang_apply}" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_apply_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2003-04-21 02:21:09 +02:00
|
|
|
</td>
|
2003-04-28 01:16:15 +02:00
|
|
|
<td align="right">
|
|
|
|
<xsl:variable name="lang_cancel"><xsl:value-of select="lang_cancel"/></xsl:variable>
|
|
|
|
<input type="submit" name="values[cancel]" value="{$lang_cancel}" onMouseout="window.status='';return true;">
|
|
|
|
<xsl:attribute name="onMouseover">
|
|
|
|
<xsl:text>window.status='</xsl:text>
|
|
|
|
<xsl:value-of select="lang_cancel_statustext"/>
|
|
|
|
<xsl:text>'; return true;</xsl:text>
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
2003-04-21 02:21:09 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2003-04-28 01:16:15 +02:00
|
|
|
</form>
|
2003-04-21 02:21:09 +02:00
|
|
|
</table>
|
|
|
|
</xsl:template>
|