commit | author | age
|
4e17e6
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
T |
2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 |
<head> |
|
4 |
<title><roundcube:object name="pagetitle" /></title> |
e66f5b
|
5 |
<roundcube:include file="/includes/links.html" /> |
e5686f
|
6 |
<script type="text/javascript" src="/splitter.js"></script> |
49dfb0
|
7 |
<script type="text/javascript" src="/functions.js"></script> |
a1f722
|
8 |
<style type="text/css"> |
189482
|
9 |
#mailboxlist-container { width: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv-5 : 170" />px; } |
T |
10 |
#messageframe { left: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 180" />px; |
|
11 |
<roundcube:exp expression="browser:ie ? ('width: expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 180).')+\\'px\\');') : ''" /> |
a1f722
|
12 |
} |
A |
13 |
</style> |
4e17e6
|
14 |
</head> |
49dfb0
|
15 |
<body onload="rcube_init_mail_ui()"> |
4e17e6
|
16 |
|
b076a4
|
17 |
<roundcube:include file="/includes/taskbar.html" /> |
4e17e6
|
18 |
<roundcube:include file="/includes/header.html" /> |
8e99ff
|
19 |
<roundcube:include file="/includes/messagetoolbar.html" /> |
4e17e6
|
20 |
|
e5686f
|
21 |
<div id="mainscreen"> |
189482
|
22 |
<div id="mailleftcontainer"> |
f45bbe
|
23 |
<div id="mailboxlist-container"> |
e9b5a6
|
24 |
<div id="mailboxlist-title" class="boxtitle"><roundcube:label name="mailboxlist" /></div> |
172e33
|
25 |
<div class="boxlistcontent"> |
a81be1
|
26 |
<roundcube:object name="mailboxlist" id="mailboxlist" maxlength="25" /> |
172e33
|
27 |
</div> |
A |
28 |
<div class="boxfooter"> |
9e5550
|
29 |
<roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="button groupactions" onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " /> |
189482
|
30 |
</div> |
f45bbe
|
31 |
</div> |
e9b5a6
|
32 |
</div> |
4e17e6
|
33 |
|
T |
34 |
<div id="messageframe"> |
d4711f
|
35 |
<div class="boxlistcontent" style="top:0; overflow-x:auto"> |
9808b3
|
36 |
<roundcube:object name="messageHeaders" class="headers-table" cellspacing="0" cellpadding="2" addicon="/images/icons/silhouette.png" summary="Message headers" /> |
c6be45
|
37 |
<roundcube:object name="messageFullHeaders" id="full-headers" /> |
4e17e6
|
38 |
<roundcube:object name="messageAttachments" id="attachment-list" /> |
480f8c
|
39 |
|
4e17e6
|
40 |
<roundcube:object name="blockedObjects" id="remote-objects-message" /> |
be5f03
|
41 |
<roundcube:object name="messageBody" id="messagebody" /> |
e2dd81
|
42 |
</div> |
ce06d3
|
43 |
<div class="boxfooter"> |
8583d6
|
44 |
<div id="countcontrols" class="pagenav"> |
4a4265
|
45 |
<roundcube:button command="lastmessage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastmessage" content=" " /> |
T |
46 |
<roundcube:button command="nextmessage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextmessage" content=" " /> |
8583d6
|
47 |
<roundcube:object name="messageCountDisplay" style="padding:0 .5em; float:right" /> |
4a4265
|
48 |
<roundcube:button command="previousmessage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previousmessage" content=" " /> |
T |
49 |
<roundcube:button command="firstmessage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstmessage" content=" " /> |
189482
|
50 |
</div> |
ce06d3
|
51 |
</div> |
A |
52 |
</div> |
|
53 |
|
e5686f
|
54 |
</div> |
A |
55 |
|
|
56 |
<script type="text/javascript"> |
|
57 |
var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailboxlist-container', p2: 'messageframe', orientation: 'v', relative: true, start: 165}); |
|
58 |
rcmail.add_onload('mailviewsplitv.init()'); |
|
59 |
</script> |
|
60 |
|
172e33
|
61 |
<div id="mailboxoptionsmenu" class="popupmenu"> |
A |
62 |
<ul> |
|
63 |
<li><roundcube:button command="expunge" type="link" label="compact" classAct="active" /></li> |
|
64 |
<li class="separator_below"><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li> |
|
65 |
<li><roundcube:button command="folders" task="settings" type="link" label="managefolders" classAct="active" /></li> |
|
66 |
<roundcube:container name="mailboxoptions" id="mailboxoptionsmenu" /> |
|
67 |
</ul> |
|
68 |
</div> |
|
69 |
|
4e17e6
|
70 |
</body> |
T |
71 |
</html> |