source: subversion/trunk/roundcubemail/skins/default/templates/message.html @ 2523

Last change on this file since 2523 was 2523, checked in by alec, 4 years ago
  • Added message menu (some image needed), removed Print and Source buttons
  • Added possibility to save message as .eml file (#1485861)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/mail.css" />
7<script type="text/javascript" src="/splitter.js"></script>
8<script type="text/javascript" src="/functions.js"></script>
9<style type="text/css">
10#mailboxlist-container { width: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv-5 : 160" />px; }
11#messageframe {
12    left: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 170" />px;
13    width: expression((parseInt(this.parentNode.offsetWidth)-<roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 170" />)+'px');
14}
15</style>
16</head>
17<body onload="rcube_init_mail_ui()">
18
19<roundcube:include file="/includes/taskbar.html" />
20<roundcube:include file="/includes/header.html" />
21<roundcube:include file="/includes/messagemenu.html" />
22
23<div id="messagecountbar">
24<roundcube:button command="firstmessage" imageSel="/images/buttons/first_sel.png" imageAct="/images/buttons/first_act.png" imagePas="/images/buttons/first_pas.png" width="11" height="11" title="firstmessage" />
25<roundcube:button command="previousmessage" imageSel="/images/buttons/previous_sel.png" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previousmessage" />
26&nbsp;<roundcube:object name="messageCountDisplay" />&nbsp;
27<roundcube:button command="nextmessage" imageSel="/images/buttons/next_sel.png" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextmessage" />
28<roundcube:button command="lastmessage" imageSel="/images/buttons/last_sel.png" imageAct="/images/buttons/last_act.png" imagePas="/images/buttons/last_pas.png" width="11" height="11" title="lastmessage" />
29</div>
30
31<div id="messagetoolbar">
32<roundcube:button command="list" image="/images/buttons/back_act.png" imageSel="/images/buttons/back_sel.png" imageAct="/images/buttons/back_act.png" width="32" height="32" title="backtolist" />
33<roundcube:button command="compose" imageSel="/images/buttons/compose_sel.png" imageAct="/images/buttons/compose_act.png" imagePas="/images/buttons/compose_pas.png" width="32" height="32" title="writenewmessage" />
34<roundcube:button command="reply" imageSel="/images/buttons/reply_sel.png" imageAct="/images/buttons/reply_act.png" imagePas="/images/buttons/reply_pas.png" width="32" height="32" title="replytomessage" />
35<roundcube:button command="reply-all" imageSel="/images/buttons/replyall_sel.png" imageAct="/images/buttons/replyall_act.png" imagePas="/images/buttons/replyall_pas.png" width="32" height="32" title="replytoallmessage" />
36<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" />
37<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" />
38<roundcube:button name="messagemenulink" image="/images/icons/extwin.png" width="32" height="32" title="messagemenu" onclick="rcmail_ui.show_messagemenu();return false" id="messagemenulink" />
39<roundcube:object name="mailboxlist" type="select" noSelection="moveto" maxlength="25" onchange="rcmail.command('moveto', this.options[this.selectedIndex].value)" class="mboxlist" />
40<roundcube:container name="toolbar" id="messagetoolbar" />
41</div>
42
43<div id="mainscreen">
44
45<div id="mailboxlist-container">
46<div id="mailboxlist-header"><roundcube:label name="mailboxlist" /></div>
47<roundcube:object name="mailboxlist" id="mailboxlist" maxlength="25" />
48</div>
49
50<div id="messageframe">
51<div id="messagecanvas">
52<roundcube:object name="messageHeaders" class="headers-table" cellspacing="0" cellpadding="2" addicon="/images/icons/plus.gif" summary="Message headers" />
53<roundcube:object name="messageAttachments" id="attachment-list" />
54
55<roundcube:object name="blockedObjects" id="remote-objects-message" />
56<roundcube:object name="messageBody" id="messagebody" />
57</div>
58</div>
59
60</div>
61
62<script type="text/javascript">
63    var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailboxlist-container', p2: 'messageframe', orientation: 'v', relative: true, start: 165});
64    rcmail.add_onload('mailviewsplitv.init()');
65</script>
66
67</body>
68</html>
Note: See TracBrowser for help on using the repository browser.