added xsl file

This commit is contained in:
ceb 2002-11-20 15:36:26 +00:00
parent e39dc2a3ee
commit 6137f2c184
2 changed files with 29 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<!-- BEGIN app_row_noicon -->
<tr class="th_bright">
<td height="25" colspan="2" width="95%" valign="bottom"><b>&nbsp;{app_title}</b> <a name="{app_name}"></a></td>
<td height="25" colspan="2" width="95%" valign="middle"><b>&nbsp;{app_title}</b> <a name="{app_name}"></a></td>
</tr>
<!-- END app_row_noicon -->

View 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>&nbsp;&#8226;&nbsp;<a href="{$pref_link}"><xsl:value-of select="pref_text"></a></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</xsl:template>