You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
284 lines
10 KiB
284 lines
10 KiB
<?xml version="1.0" encoding="UTF-8" ?> |
|
<xsl:stylesheet version="1.0" |
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|
> |
|
<xsl:template name="interLinks" > |
|
<xsl:param name="target"/> |
|
<xsl:param name="caption"/> |
|
<xsl:if test="(($target != 'null') and ($target != ''))"> |
|
<a><xsl:attribute name="href"> |
|
<xsl:choose> |
|
<xsl:when test="starts-with($target,'nexttable:')" > |
|
<xsl:value-of select="concat('SuperXmlTabelle','?tid=',substring-after($target,'nexttable:'))"/> |
|
</xsl:when> |
|
<xsl:when test="starts-with($target,'nextmask:')" > |
|
<xsl:value-of select="concat('SuperXmlMaske','?tid=',substring-after($target,'nextmask:'))"/> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<xsl:value-of select="$target" /> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:attribute> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</a> |
|
</xsl:if> |
|
</xsl:template> |
|
<xsl:template name="resultsetLink"> |
|
<xsl:param name="zs2" /> |
|
|
|
<xsl:choose> |
|
<xsl:when test="starts-with(f_name,'email') or starts-with(f_name,'E-mail')"> |
|
<a><xsl:attribute name="href">mailto:<xsl:value-of select="$zs2" /></xsl:attribute> |
|
<xsl:value-of select="$zs2" /></a> |
|
</xsl:when> |
|
<xsl:when test="f_name='url' or starts-with(f_name,'www') or starts-with(f_name,'WWW')"> |
|
<a target="_blank"><xsl:attribute name="href"><xsl:value-of select="$zs2" /></xsl:attribute> |
|
<xsl:value-of select="$zs2" /></a> |
|
</xsl:when> |
|
<xsl:when test="starts-with(f_name,'nextmask')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
<xsl:if test="(($derwert != 'null') and ($derwert != ''))"> |
|
<div align="center"><a><xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlMaske'" /> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$derwert" /> |
|
</xsl:attribute> |
|
<img src="../images/punkt.gif" border="0" alt="Bearbeiten" /> |
|
</a></div> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<xsl:when test="starts-with(f_name,'nexttable')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
|
|
<xsl:if test="(($derwert != 'null') and ($derwert != ''))"> |
|
<div align="center"> |
|
<a> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlTabelle'" /> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$derwert" /></xsl:attribute> |
|
<img src="/superx/xml/info_zahl_kl.png" border="0" alt="Ansehen" /> <!-- bmu: Grafik getauscht --> |
|
</a></div> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<xsl:when test="starts-with(f_name,'nextpage')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
|
|
<xsl:if test="(($derwert != 'null') and ($derwert != ''))"> |
|
<div align="center"> |
|
<a> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlTabelle'" /> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$derwert" /></xsl:attribute> |
|
<!--<img src="../images/more.gif" border="0" alt="Weitere Details" />--> |
|
<![CDATA[@@nextpage@@]]> |
|
</a></div> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<!-- MB nextwindowtable same as nexttable but with target blank--> |
|
<xsl:when test="starts-with(f_name,'nextwindowtable')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
|
|
<xsl:variable name="caption" select="substring-before($derwert,'|') "/> |
|
<xsl:variable name="href" select="substring-after($derwert,'|') "/> |
|
|
|
<xsl:if test="(($derwert != 'null') and ($derwert != ''))"> |
|
<!-- <div align="left"> --> <!-- bmu: ohne div --> |
|
<a> |
|
<xsl:attribute name="target">_blank</xsl:attribute> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlTabelle'" /> |
|
<xsl:choose> |
|
<xsl:when test="(contains($derwert,'|'))"> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$href" /> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$derwert" /> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:attribute> |
|
<xsl:choose> |
|
<xsl:when test="(contains($derwert,'|'))"> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<img src="/superx/xml/info_zahl_kl.png" border="0" alt="Ansehen" style="margin-top:5px;" /> <!-- bmu: Grafik getauscht und platziert --> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</a> <!-- </div> --> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<xsl:when test="starts-with(f_name,'nextdelete')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
|
|
<xsl:if test="(($derwert != 'null') and ($derwert != ''))"> |
|
<div align="center"> |
|
<a> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlMaske'" /> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$derwert" /> |
|
</xsl:attribute> |
|
<img src="../images/delete.gif" border="0" alt="Löschen" /> |
|
</a></div> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<!-- fuer Tabellen--> |
|
<xsl:when test="starts-with(f_name,'nextlink')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
<xsl:if test="($derwert != 'null') and ($derwert != '')"> |
|
|
|
<xsl:choose> |
|
<xsl:when test="(contains($derwert,'|'))"> |
|
|
|
<xsl:variable name="caption" select="substring-before($derwert,'|') "/> |
|
<xsl:variable name="href" select="substring-after($derwert,'|') "/> |
|
<xsl:choose> |
|
<xsl:when test="starts-with($href,'http')"> |
|
<a target="_parent"> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="$href" /></xsl:attribute> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</a> |
|
</xsl:when> |
|
<xsl:when test="$href='' or $href = null"> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<a target="_self"> |
|
<xsl:attribute name="href"><xsl:value-of select="concat('SuperXmlTabelle','?tid=',$href)" /></xsl:attribute> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</a> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<xsl:copy-of select="$zs2" /> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
|
|
<!-- für generische LInks mit optional JSESSIONID ersetzt--> |
|
<xsl:when test="starts-with(f_name,'nextgenericlink')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
<xsl:if test="($derwert != 'null') and ($derwert != '')"> |
|
|
|
<xsl:choose> |
|
<xsl:when test="(contains($derwert,'|'))"> |
|
|
|
<xsl:variable name="caption" select="substring-before($derwert,'|') "/> |
|
<xsl:variable name="href" select="substring-after($derwert,'|') "/> |
|
<xsl:choose> |
|
<xsl:when test="starts-with($href,'http')"> |
|
<a target="_parent"> |
|
<xsl:attribute name="href"> |
|
<xsl:value-of select="$href" /></xsl:attribute> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</a> |
|
</xsl:when> |
|
<xsl:when test="$href='' or $href = null"> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<a target="_self"> <!--MB see here--> |
|
<xsl:variable name="jsessreplace" > |
|
<xsl:call-template name="search_replace"> |
|
<xsl:with-param name="string" select="$href" /> |
|
<xsl:with-param name="search" select="'JSESSIONID'" /> |
|
<xsl:with-param name="replace" select="concat(';jsessionid=',/ergebnisse/@jsessionid )" /> |
|
</xsl:call-template> |
|
</xsl:variable> |
|
<xsl:attribute name="href"><xsl:value-of select="$jsessreplace" /></xsl:attribute> |
|
<![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]> |
|
</a> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<xsl:copy-of select="$zs2" /> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
<xsl:when test="starts-with(f_name,'nextedit')"> |
|
|
|
<xsl:variable name="derwert" select="$zs2"/> |
|
<xsl:if test="($derwert != 'null') and ($derwert != '')"> |
|
<div align="center"> |
|
<xsl:choose> |
|
<xsl:when test="(contains($derwert,'|'))"> |
|
<xsl:variable name="url" select="substring-before($derwert,'|') "/> |
|
<xsl:variable name="params" select="substring-after($derwert,'|') "/> |
|
<a target="nextedit"> |
|
<xsl:attribute name="href"><xsl:value-of select="concat($url,'?',$params)" /> |
|
</xsl:attribute> |
|
<xsl:attribute name="onClick"><xsl:text>javascript:neu=window.open('</xsl:text><xsl:value-of select="concat($url,'?',$params)" /> |
|
<xsl:text>','_blank','directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no</xsl:text><xsl:if test="not( contains(f_name,'big'))"><xsl:text>,width=800,height=600</xsl:text></xsl:if><xsl:text>'); return false;</xsl:text></xsl:attribute> |
|
|
|
<img src="../images/pencil.svg" class="svg_icon" border="0" alt="Bearbeiten" /> |
|
</a> |
|
</xsl:when> |
|
<xsl:otherwise> |
|
<a target="nextedit"> |
|
<xsl:attribute name="href"><xsl:value-of select="$derwert" /> |
|
</xsl:attribute> |
|
<xsl:attribute name="onClick"><xsl:text>javascript:neu=window.open('</xsl:text><xsl:value-of select="$derwert" /> |
|
<xsl:text>','_blank','directories=no,location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes</xsl:text><xsl:if test="not( contains(f_name,'big'))"><xsl:text>,width=800,height=600</xsl:text></xsl:if><xsl:text>'); return false;</xsl:text></xsl:attribute> |
|
<img src="../images/pencil.svg" class="svg_icon" border="0" alt="Bearbeiten" /> |
|
</a> |
|
|
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</div> |
|
</xsl:if> |
|
|
|
</xsl:when> |
|
|
|
<xsl:otherwise> |
|
<xsl:copy-of select="$zs2" /> |
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</xsl:template> |
|
<xsl:template name="sidebar_link"> |
|
<xsl:param name="caption"/> |
|
<xsl:param name="href"/> |
|
<xsl:param name="target"/> |
|
<xsl:variable name="href_1"> |
|
<xsl:call-template name="get_colvalue"> |
|
<xsl:with-param name="colname"><xsl:value-of select="$href" /></xsl:with-param></xsl:call-template> |
|
</xsl:variable> |
|
<xsl:if test="string-length($href_1) > 0 "> |
|
<li> |
|
<xsl:choose> |
|
<xsl:when test="starts-with($href_1,'http://')"> |
|
<a target="_blank"><xsl:attribute name="href"><xsl:value-of select="$href_1" /></xsl:attribute><![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]></a> |
|
|
|
</xsl:when> |
|
<xsl:when test="starts-with($href,'email') "> |
|
<a><xsl:attribute name="href"> |
|
<xsl:text>mailto:</xsl:text><xsl:value-of select="$href_1" /></xsl:attribute><![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]></a> |
|
|
|
</xsl:when> |
|
<xsl:otherwise> |
|
<a target="_self"><xsl:attribute name="href"> |
|
<xsl:value-of select="'SuperXmlTabelle'" /> |
|
<xsl:text>?tid=</xsl:text><xsl:value-of select="$href_1" /></xsl:attribute><![CDATA[]]><xsl:value-of select="$caption" /><![CDATA[]]></a> |
|
|
|
</xsl:otherwise> |
|
</xsl:choose> |
|
</li> |
|
</xsl:if> |
|
</xsl:template> |
|
</xsl:stylesheet>
|
|
|