diff options
Diffstat (limited to 'skins/default/templates')
-rw-r--r-- | skins/default/templates/addressbook.html | 4 | ||||
-rw-r--r-- | skins/default/templates/identities.html | 2 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 1 | ||||
-rw-r--r-- | skins/default/templates/managefolders.html | 2 | ||||
-rw-r--r-- | skins/default/templates/message.html | 1 | ||||
-rw-r--r-- | skins/default/templates/plugin.html | 24 | ||||
-rw-r--r-- | skins/default/templates/settings.html | 6 |
7 files changed, 34 insertions, 6 deletions
diff --git a/skins/default/templates/addressbook.html b/skins/default/templates/addressbook.html index ce295567b..431c0589e 100644 --- a/skins/default/templates/addressbook.html +++ b/skins/default/templates/addressbook.html @@ -7,7 +7,7 @@ <script type="text/javascript" src="/splitter.js"></script> <style type="text/css"> -<roundcube:if condition="config:ldap_public == false" /> +<roundcube:if condition="count(env:address_sources) <= 1" /> #abookcountbar { left: 20px;} #mainscreen { left:20px; /* IE hack */ width:expression((parseInt(document.documentElement.clientWidth)-40)+'px') } #addresslist { width: <roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter-5 : 245" />px; } @@ -44,7 +44,7 @@ <roundcube:object name="searchform" id="quicksearchbox" /><roundcube:button command="reset-search" id="searchreset" image="/images/icons/reset.gif" title="resetsearch" /> </div> -<roundcube:if condition="config:ldap_public" /> +<roundcube:if condition="count(env:address_sources) > 1" /> <div id="directorylist"> <div id="groups-title"><roundcube:label name="groups" /></div> <roundcube:object name="directorylist" id="directories-list" /> diff --git a/skins/default/templates/identities.html b/skins/default/templates/identities.html index 9799bc576..30d33a38b 100644 --- a/skins/default/templates/identities.html +++ b/skins/default/templates/identities.html @@ -6,7 +6,7 @@ <link rel="stylesheet" type="text/css" href="/settings.css" /> <script type="text/javascript" src="/functions.js"></script> </head> -<body onload="rcube_init_settings_tabs()"> +<body> <roundcube:include file="/includes/taskbar.html" /> <roundcube:include file="/includes/header.html" /> diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index 96be0f65e..4e1d7ce3a 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -119,6 +119,7 @@ <roundcube:button command="forward" imageSel="/images/buttons/forward_sel.png" imageAct="/images/buttons/forward_act.png" imagePas="/images/buttons/forward_pas.png" width="32" height="32" title="forwardmessage" /> <roundcube:button command="delete" imageSel="/images/buttons/delete_sel.png" imageAct="/images/buttons/delete_act.png" imagePas="/images/buttons/delete_pas.png" width="32" height="32" title="deletemessage" /> <roundcube:button command="print" imageSel="/images/buttons/print_sel.png" imageAct="/images/buttons/print_act.png" imagePas="/images/buttons/print_pas.png" width="32" height="32" title="printmessage" /> +<roundcube:container name="toolbar" id="messagetoolbar" /> <div id="markmessagemenu"> <ul class="toolbarmenu"> diff --git a/skins/default/templates/managefolders.html b/skins/default/templates/managefolders.html index 5da5c22f1..925bc2c81 100644 --- a/skins/default/templates/managefolders.html +++ b/skins/default/templates/managefolders.html @@ -6,7 +6,7 @@ <link rel="stylesheet" type="text/css" href="/settings.css" /> <script type="text/javascript" src="/functions.js"></script> </head> -<body onload="rcube_init_settings_tabs()"> +<body> <roundcube:include file="/includes/taskbar.html" /> <roundcube:include file="/includes/header.html" /> diff --git a/skins/default/templates/message.html b/skins/default/templates/message.html index b8d66c1be..7d42ef73f 100644 --- a/skins/default/templates/message.html +++ b/skins/default/templates/message.html @@ -36,6 +36,7 @@ <roundcube:button command="print" imageSel="/images/buttons/print_sel.png" imageAct="/images/buttons/print_act.png" imagePas="/images/buttons/print_pas.png" width="32" height="32" title="printmessage" /> <roundcube:button command="viewsource" imageSel="/images/buttons/source_sel.png" imageAct="/images/buttons/source_act.png" imagePas="/images/buttons/source_pas.png" width="32" height="32" title="viewsource" /> <roundcube:object name="mailboxlist" type="select" noSelection="moveto" maxlength="25" onchange="rcmail.command('moveto', this.options[this.selectedIndex].value)" class="mboxlist" /> +<roundcube:container name="toolbar" id="messagetoolbar" /> </div> <div id="mainscreen"> diff --git a/skins/default/templates/plugin.html b/skins/default/templates/plugin.html new file mode 100644 index 000000000..9725fe4d8 --- /dev/null +++ b/skins/default/templates/plugin.html @@ -0,0 +1,24 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +<link rel="stylesheet" type="text/css" href="/<roundcube:var name='env:task'/>.css" /> +<script type="text/javascript" src="/functions.js"></script> +</head> +<body> + +<roundcube:include file="/includes/taskbar.html" /> +<roundcube:include file="/includes/header.html" /> +<roundcube:if condition="env:task == 'settings'" /> + <roundcube:include file="/includes/settingstabs.html" /> +<roundcube:endif /> + +<div id="pagecontent"> +<roundcube:object name="plugin.body" /> +</div> + +<roundcube:object name="plugin.footer" /> + +</body> +</html> diff --git a/skins/default/templates/settings.html b/skins/default/templates/settings.html index a3f5298cd..0abe7fa41 100644 --- a/skins/default/templates/settings.html +++ b/skins/default/templates/settings.html @@ -6,7 +6,7 @@ <link rel="stylesheet" type="text/css" href="/settings.css" /> <script type="text/javascript" src="/functions.js"></script> </head> -<body onload="rcube_init_settings_tabs()"> +<body> <roundcube:include file="/includes/taskbar.html" /> <roundcube:include file="/includes/header.html" /> @@ -17,7 +17,7 @@ <div id="userprefs-box"> <div id="userprefs-title"><roundcube:label name="userpreferences" /></div> -<div style="padding:15px 0 15px 15px"> +<div id="userprefscontainer" style="padding:15px 0 15px 15px"> <div class="userprefs-block"> <roundcube:object name="userprefs" form="form" parts="general,mailbox,mailview" /> </div> @@ -25,6 +25,8 @@ <roundcube:object name="userprefs" form="form" parts="compose,folders,server" /> </div> <div style="clear:left"></div> + +<roundcube:container name="userprefs" id="userprefscontainer" /> </div> </div> |