<!-- ******************************************************************************* * Output HTML fields to keep the current context * @param searchresult The current search result tree * @param expandedgroups A tree representing the groups that have been expanded *******************************************************************************
-->
<xsl:template name="contextKeeper">
<xsl:param name="pagedSearch"/>
<!-- ******************************************************************************* * This template displays the banner indicating the user the actual context. * @param text The text to display in the banner *******************************************************************************
-->
<xsl:template name="contextBanner">
<xsl:param name="text" select="''" />
<!-- ******************************************************************************* * This template prints HTML code for a button * @param label The label of the button * @param href The content of the href represented by the button * @param class [Optional] The css class to use to print the label of the button, default is "button" * @param color [Optional] The color of the button, default is defined by css-select.css depending on the colorset * @param bgColorIndex [Optional] The background color index ('b', 'w' or 'h') on wich the button is going to be output, default is 'b' *******************************************************************************
-->
<xsl:template name="button">
<xsl:param name="label" />
<xsl:param name="href" select="'javascript:urlNotYetAvailable()'"/>
<xsl:param name="target" select="'_self'"/>
<xsl:param name="disabled" select="false()" />
<xsl:param name="color" select="$buttonColor"/>
<xsl:param name="bgColorIndex" select="'b'" />
<!-- ******************************************************************************* * This template prints the action buttons Save, Cancel and Help * For each button is called the javascript function of the same name : * save(), cancel(), help() * The core of those functions must be declared in the main template *******************************************************************************
-->
<xsl:template name="save-cancel-help-bar">
<xsl:param name="actionframe"/>
<table border="0" cellspacing="0" cellpadding="0" width="100%" summary="This table displays the save, canceland help buttons">
<tbody>
<tr>
<td align="right">
<input class="Btn1"type="submit" name="Button5"id="button" onMouseOver="if (this.disabled==0) this.className='Btn1Hov'" onFocus="if (this.disabled==0) this.className='Btn1Hov'" onMouseOut="if (this.disabled==0) this.className='Btn1'" onBlur="if (this.disabled==0) this.className='Btn1'" tabindex="2">
<xsl:attribute name="value">
<xsl:text>_Save</xsl:text>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:text>_Save</xsl:text>
</xsl:attribute>
<xsl:attribute name="onClick">
<xsl:text>javascript:</xsl:text>
<xsl:if test="string-length($actionframe) > 0">
<xsl:text>top.</xsl:text><xsl:value-of select="$actionframe"/><xsl:text>.</xsl:text>
</xsl:if>
<xsl:text>save()</xsl:text>
</xsl:attribute>
</input>
<!-- ******************************************************************************* * This template prints the action buttons Save, 'Save and Add Another', Cancel and Help * For each button is called the javascript function of the same name : * save(), saveAndAddAnother(), cancel(), help() * The core of those functions must be declared in the main template *******************************************************************************
-->
<xsl:template name="save-saveandaddanother-cancel-help-bar">
<xsl:param name="actionframe"/>
<table border="0" cellspacing="0" cellpadding="0" width="100%" summary="This table displays the save, save-and-add-another, cancel and help buttons">
<tbody>
<tr>
<td align="right">
<input class="Btn1"type="submit" name="Button5"id="button" onMouseOver="if (this.disabled==0) this.className='Btn1Hov'" onFocus="if (this.disabled==0) this.className='Btn1Hov'" onMouseOut="if (this.disabled==0) this.className='Btn1'" onBlur="if (this.disabled==0) this.className='Btn1'" tabindex="2">
<xsl:attribute name="value">
<xsl:text>_Save</xsl:text>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:text>_Save</xsl:text>
</xsl:attribute>
<xsl:attribute name="onClick">
<xsl:text>javascript:</xsl:text>
<xsl:if test="string-length($actionframe) > 0">
<xsl:text>top.</xsl:text><xsl:value-of select="$actionframe"/><xsl:text>.</xsl:text>
</xsl:if>
<xsl:text>save()</xsl:text>
</xsl:attribute>
</input>
<!-- ******************************************************************************* * This template prints the action buttons Ok, Cancel and Help * For each button is called the javascript function of the same name : * ok(), cancel(), help() * The core of those functions must be declared in the main template *******************************************************************************
-->
<xsl:template name="ok-cancel-help-bar">
<xsl:param name="buttontext" select="'OK'" />
<xsl:param name="buttoncontext" select="'_OK'" />
<xsl:param name="language" select="'en'"/>
<xsl:param name="actionframe"/>
<table border="0" cellspacing="0" cellpadding="0" width="100%" summary="This table displays the ok, cancel and help buttons">
<tbody>
<tr>
<td align="right">
<input class="Btn1"type="submit" name="Button"id="button" onmouseover="if (this.disabled==0) this.className='Btn1Hov'" onfocus="if (this.disabled==0) this.className='Btn1Hov'" onmouseout="if (this.disabled==0) this.className='Btn1'" onblur="if (this.disabled==0) this.className='Btn1'" tabindex="1">
<xsl:attribute name="value"><xsl:value-of select="$buttontext"/></xsl:attribute>
<xsl:attribute name="title"><xsl:value-of select="$buttontext"/></xsl:attribute>
<xsl:attribute name="onClick">
<xsl:text>javascript:</xsl:text>
<xsl:if test="string-length($actionframe) > 0">
<xsl:text>top.</xsl:text><xsl:value-of select="$actionframe"/>
<xsl:text>.</xsl:text>
</xsl:if>
<xsl:text>ok()</xsl:text>
</xsl:attribute>
</input>
<!-- ******************************************************************************* * This template prints the action buttons Return and Help * For each button is called the javascript function of the same name : * goBack(), help() * The core of those functions must be declared in the main template *******************************************************************************
-->
<xsl:template name="close-help-bar">
<xsl:param name="helpurl" select="'javascript:urlNotYetAvailable()'" />
<table cellspacing="0" cellpadding="0" border="0" summary="This table displays the goback and help buttons">
<tbody>
<tr>
<td><img alt="" height="9" src="{$spacer.gif}" width="1" /></td>
</tr>
<tr>
<td>
<xsl:call-template name="button">
<xsl:with-param name="label">
<xsl:text>_Close</xsl:text>
</xsl:with-param>
<xsl:with-param name="href">
<xsl:text>javascript:goBack()</xsl:text>
</xsl:with-param>
<xsl:with-param name="bgColorIndex" select="'w'"/>
</xsl:call-template>
</td>
<td>
<img height="1" alt=" " src="{$spacer.gif}" width="5" border="0"/>
</td>
<td>
<xsl:call-template name="button">
<xsl:with-param name="label">
<xsl:text>_Help</xsl:text>
</xsl:with-param>
<xsl:with-param name="href">
<xsl:text>javascript:openhelp('
<xsl:value-of select="$helpurl"/>
<xsl:text>')
</xsl:with-param>
<xsl:with-param name="bgColorIndex" select="'w'"/>
</xsl:call-template>
</td>
</tr>
<tr>
<td><img alt="" height="9" src="{$spacer.gif}" width="1" /></td>
</tr>
</tbody>
</table>
</xsl:template>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.