mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
added xsl file
This commit is contained in:
parent
e39dc2a3ee
commit
6137f2c184
@ -19,7 +19,7 @@
|
||||
|
||||
<!-- BEGIN app_row_noicon -->
|
||||
<tr class="th_bright">
|
||||
<td height="25" colspan="2" width="95%" valign="bottom"><b> {app_title}</b> <a name="{app_name}"></a></td>
|
||||
<td height="25" colspan="2" width="95%" valign="middle"><b> {app_title}</b> <a name="{app_name}"></a></td>
|
||||
</tr>
|
||||
<!-- END app_row_noicon -->
|
||||
|
||||
|
28
preferences/templates/funkwerk/app_data.xsl
Normal file
28
preferences/templates/funkwerk/app_data.xsl
Normal file
@ -0,0 +1,28 @@
|
||||
<xsl:template name="app_data">
|
||||
<xsl:apply-templates select="list"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="list">
|
||||
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align="left"><xsl:value-of disable-output-escaping="yes" select="tabs"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="75%" border="0" cellspacing="2" cellpadding="2">
|
||||
<xsl:apply-templates select="app_link"/>
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="app_link">
|
||||
<xsl:variable name="pref_link"><xsl:value-of select="pref_link"/></xsl:variable>
|
||||
<xsl:variable name="app_name"><xsl:value-of select="app_name"/></xsl:variable>
|
||||
<tr class="th_bright">
|
||||
<td height="25" width="95%" valign="bottom"><b>[<xsl:value-of select="app_title">]</b> <a name="{$app_name}"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> • <a href="{$pref_link}"><xsl:value-of select="pref_text"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</xsl:template>
|
Loading…
Reference in New Issue
Block a user