mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
192 lines
7.5 KiB
XML
192 lines
7.5 KiB
XML
<!-- $Id$ -->
|
|
|
|
<xsl:template match="phpgw">
|
|
<xsl:variable name="phpgw_css_file" select="phpgw_css_file"/>
|
|
<xsl:variable name="theme_css_file" select="theme_css_file"/>
|
|
<xsl:variable name="charset" select="charset"/>
|
|
<xsl:variable name="logo_img" select="logo_img"/>
|
|
<xsl:variable name="home_link" select="home_link"/>
|
|
<xsl:variable name="prefs_link" select="prefs_link"/>
|
|
<xsl:variable name="logout_link" select="logout_link"/>
|
|
<xsl:variable name="about_link" select="about_link"/>
|
|
<xsl:variable name="help_link" select="help_link"/>
|
|
<xsl:variable name="home_img" select="home_img"/>
|
|
<xsl:variable name="prefs_img" select="prefs_img"/>
|
|
<xsl:variable name="logout_img" select="logout_img"/>
|
|
<xsl:variable name="about_img" select="about_img"/>
|
|
<xsl:variable name="help_img" select="help_img"/>
|
|
<xsl:variable name="home_title" select="home_title"/>
|
|
<xsl:variable name="prefs_title" select="prefs_title"/>
|
|
<xsl:variable name="logout_title" select="logout_title"/>
|
|
<xsl:variable name="about_title" select="about_title"/>
|
|
<xsl:variable name="help_title" select="help_title"/>
|
|
<xsl:variable name="phpgw_body" select="phpgw_body"/>
|
|
<xsl:variable name="greybar" select="greybar"/>
|
|
<xsl:variable name="phpgw_statustext" select="lang_phpgw_statustext"/>
|
|
<xsl:variable name="app_tpl" select="app_tpl"/>
|
|
<xsl:variable name="current_app" select="current_app"/>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={$charset}"/>
|
|
<meta name="author" content="phpGroupWare http://www.phpgroupware.org"/>
|
|
<meta name="description" content="phpGroupWare"/>
|
|
<meta name="keywords" content="phpGroupWare"/>
|
|
<meta name="robots" content="noindex"/>
|
|
<link rel="icon" href="favicon.ico" type="image/x-ico"/>
|
|
<link rel="shortcut icon" href="favicon.ico"/>
|
|
<title><xsl:value-of select="website_title"/></title>
|
|
<link rel="stylesheet" type="text/css" href="{$phpgw_css_file}"/>
|
|
<link rel="stylesheet" type="text/css" href="{$theme_css_file}"/>
|
|
<xsl:value-of disable-output-escaping="yes" select="java_script"/>
|
|
<xsl:choose>
|
|
<xsl:when test="app_css">
|
|
<style type="text/css">
|
|
<xsl:text><!--</xsl:text>
|
|
<xsl:value-of disable-output-escaping="yes" select="app_css"/>
|
|
<xsl:text>--></xsl:text>
|
|
</style>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</head>
|
|
<body>
|
|
<table width="100%" height="100%" cellspacing="0" cellpadding="0">
|
|
<!-- BEGIN top_part -->
|
|
<tr height="30">
|
|
<td colspan="2" valign="top">
|
|
<table class="navbar" height="30" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
<tr valign="bottom">
|
|
<td width="95%">
|
|
<a href="http://www.phpgroupware.org" target="_blank" title="{$phpgw_statustext}"><img src="{$logo_img}" border="0"/></a>
|
|
</td>
|
|
<td rowspan="2" nowrap="nowrap">
|
|
<table cellspacing="0" cellpadding="0" border="0">
|
|
<tr>
|
|
<td><a href="{$home_link}"><img src="{$home_img}" border="0" alt="{$home_title}" title="{$home_title}"/></a></td>
|
|
<xsl:if test="$prefs_link != ''">
|
|
<td><a href="{$prefs_link}"><img src="{$prefs_img}" border="0" alt="{$prefs_title}" title="{$prefs_title}"/></a></td>
|
|
</xsl:if>
|
|
<td><a href="{$logout_link}"><img src="{$logout_img}" border="0" alt="{$logout_title}" title="{$logout_title}"/></a></td>
|
|
<td><a href="{$about_link}"><img src="{$about_img}" border="0" alt="{$about_title}" title="{$about_title}"/></a></td>
|
|
<td><a href="{$help_link}" target="_blank"><img src="{$help_img}" border="0" alt="{$help_title}" title="{$help_title}"/></a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr valign="bottom">
|
|
<td valign="bottom"><img src="{$greybar}" height="6" width="100%"/></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<!-- END top_part -->
|
|
<!-- BEGIN app_header -->
|
|
<tr valign="top">
|
|
<td class="left"></td>
|
|
<td height="15">
|
|
<xsl:choose>
|
|
<xsl:when test="app_header">
|
|
<xsl:attribute name="class">app_header</xsl:attribute>
|
|
<xsl:value-of disable-output-escaping="yes" select="app_header"/>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</td>
|
|
</tr>
|
|
<!-- END app_header -->
|
|
<tr valign="top">
|
|
<td class="left" width="32">
|
|
<!-- BEGIN left_part -->
|
|
<table cellspacing="0" cellpadding="0" valign="top" class="left">
|
|
<xsl:apply-templates select="applications">
|
|
<xsl:with-param name="navbar_format" select="navbar_format"/>
|
|
</xsl:apply-templates>
|
|
</table>
|
|
<!-- END left_part -->
|
|
</td>
|
|
<td width="100%" height="100%" valign="top" align="center" style="padding-left: 5px">
|
|
<xsl:choose>
|
|
<xsl:when test="msgbox_data">
|
|
<xsl:call-template name="msgbox"/>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
<xsl:choose>
|
|
<xsl:when test="$current_app = 'home'">
|
|
<xsl:call-template name="portal"/>
|
|
</xsl:when>
|
|
<xsl:when test="$current_app = 'about'">
|
|
<xsl:call-template name="about"/>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
<xsl:choose>
|
|
<xsl:when test="$app_tpl != ''">
|
|
<xsl:choose>
|
|
<xsl:when test="$app_tpl = 'delete'">
|
|
<xsl:call-template name="app_delete"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:call-template name="app_data"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of disable-output-escaping="yes" select="body_data"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</td>
|
|
</tr>
|
|
<tr class="navbar">
|
|
<td colspan="2">
|
|
<!-- BEGIN bottom_part -->
|
|
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
<tr>
|
|
<td align="left" width="30%" class="info">
|
|
<xsl:value-of select="user_info"/>
|
|
</td>
|
|
<td align="center" width="30%" class="info">
|
|
<xsl:choose>
|
|
<xsl:when test="current_users">
|
|
<xsl:variable name="url_current_users"><xsl:value-of select="url_current_users"/></xsl:variable>
|
|
<a href="{$url_current_users}"><xsl:value-of select="current_users"/></a>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</td>
|
|
<td align="right" width="30%" class="info">
|
|
<xsl:value-of select="lang_powered_by"/>
|
|
<a href="http://www.phpgroupware.org" target="blank" onMouseout="window.status='';return true;">
|
|
<xsl:attribute name="onMouseover">
|
|
<xsl:text>window.status='</xsl:text>
|
|
<xsl:value-of select="lang_phpgw_statustext"/>
|
|
<xsl:text>'; return true;</xsl:text>
|
|
</xsl:attribute>
|
|
<xsl:text> phpGroupWare </xsl:text>
|
|
</a>
|
|
<xsl:text> </xsl:text><xsl:value-of select="lang_version"/><xsl:text> </xsl:text><xsl:value-of select="phpgw_version"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- END bottom_part -->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="applications">
|
|
<xsl:param name="navbar_format"/>
|
|
<xsl:variable name="url" select="url"/>
|
|
<xsl:variable name="icon" select="icon"/>
|
|
<xsl:variable name="title" select="title"/>
|
|
<tr>
|
|
<td class="left">
|
|
<a href="{$url}">
|
|
<xsl:if test="$navbar_format != 'text'">
|
|
<img src="{$icon}" border="0" alt="{$title}" title="{$title}"/>
|
|
</xsl:if>
|
|
<xsl:if test="$navbar_format != 'icons'">
|
|
<br/><xsl:value-of select="title"/>
|
|
</xsl:if>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</xsl:template>
|