2002-09-29 06:14:35 +02:00
|
|
|
<!-- $Id$ -->
|
|
|
|
|
2002-09-29 23:17:35 +02:00
|
|
|
<xsl:template match="about">
|
2002-10-03 04:49:22 +02:00
|
|
|
<table cellpadding="2" cellspacing="2" width="70%" align="center" class="portal">
|
2002-09-29 06:14:35 +02:00
|
|
|
<xsl:variable name="phpgw_logo"><xsl:value-of select="phpgw_logo"/></xsl:variable>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td colspan="2">
|
|
|
|
<a href="http://www.phpgroupware.org" target="_blank"><img src="{$phpgw_logo}/logo.png" border="0"/></a>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td colspan="2">
|
|
|
|
<a href="http://www.phpgroupware.org" target="_blank">phpGroupWare </a>
|
|
|
|
<xsl:value-of select="phpgw_descr"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2002-10-03 04:49:22 +02:00
|
|
|
<xsl:value-of select="lang_version"/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<xsl:value-of select="phpgw_version"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<tr>
|
|
|
|
<td height="15"> </td>
|
|
|
|
</tr>
|
|
|
|
<xsl:apply-templates select="about_app"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</table>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="about_app">
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td colspan="2" class="th_text">
|
|
|
|
<xsl:value-of select="app_title"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td colspan="2">
|
|
|
|
<xsl:value-of select="app_descr"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td valign="top">
|
|
|
|
<xsl:value-of select="lang_written_by"/>
|
|
|
|
</td>
|
2002-09-29 06:14:35 +02:00
|
|
|
<td>
|
2002-10-03 04:49:22 +02:00
|
|
|
<xsl:value-of select="developers"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td>
|
|
|
|
<xsl:value-of select="lang_version"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2002-10-03 04:49:22 +02:00
|
|
|
<xsl:value-of select="app_version"/>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td valign="top"><xsl:value-of select="lang_based_on"/></td>
|
|
|
|
<td><xsl:value-of select="app_source"/></td>
|
2002-09-29 06:14:35 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-03 04:49:22 +02:00
|
|
|
<td height="5"></td>
|
|
|
|
<td>
|
|
|
|
<a target="_blank">
|
|
|
|
<xsl:attribute name="href">
|
|
|
|
<xsl:value-of select="app_source_url"/>
|
|
|
|
</xsl:attribute>
|
|
|
|
<xsl:value-of select="lang_app_source_url"/>
|
|
|
|
</a>
|
2002-09-29 06:14:35 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</xsl:template>
|