comparison skins/classic/templates/message.html @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1e000243b222
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 <script type="text/javascript" src="/splitter.js"></script>
7 <script type="text/javascript" src="/functions.js"></script>
8 <style type="text/css">
9 #mailboxlist-container { width: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv-5 : 170" />px; }
10 #messageframe { left: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 180" />px; }
11 </style>
12 </head>
13 <roundcube:if condition="env:extwin" />
14 <body class="extwin">
15 <roundcube:object name="message" id="message" />
16 <roundcube:else />
17 <body>
18
19 <roundcube:include file="/includes/taskbar.html" />
20 <roundcube:include file="/includes/header.html" />
21 <roundcube:endif />
22
23 <roundcube:include file="/includes/messagetoolbar.html" />
24
25 <div id="mainscreen">
26 <roundcube:if condition="!env:extwin" />
27 <div id="mailleftcontainer">
28 <div id="mailboxlist-container">
29 <div id="mailboxlist-title" class="boxtitle"><roundcube:label name="mailboxlist" /></div>
30 <div class="boxlistcontent">
31 <roundcube:object name="mailboxlist" id="mailboxlist" class="treelist folderlist" folder_filter="mail" />
32 </div>
33 <div class="boxfooter"></div>
34 </div>
35 </div>
36 <roundcube:else />
37 <roundcube:object name="mailboxlist" folder_filter="mail" type="js" />
38 <roundcube:endif />
39
40 <div id="messageframe">
41 <div class="boxlistcontent" style="top:0; overflow-x:auto">
42 <div id="messagelinks">
43 <roundcube:if condition="env:optional_format=='text'" />
44 <roundcube:button command="change-format" prop="text" image="/images/icons/text.png" width="15" height="15" title="changeformattext" id="changeformattext" />
45 <roundcube:endif />
46 <roundcube:if condition="env:optional_format=='html'" />
47 <roundcube:button command="change-format" prop="html" image="/images/icons/html.png" width="15" height="15" title="changeformathtml" id="changeformathtml" />
48 <roundcube:endif />
49 </div>
50 <roundcube:object name="messageHeaders" class="headers-table" cellspacing="0" cellpadding="2" addicon="/images/icons/silhouette.png" summary="Message headers" />
51 <roundcube:object name="messageFullHeaders" id="full-headers" />
52 <roundcube:object name="messageAttachments" id="attachment-list" maxlength="50" />
53 <roundcube:object name="messageObjects" id="message-objects" />
54 <roundcube:object name="messageBody" id="messagebody" />
55 </div>
56 <div class="boxfooter">
57 <div id="countcontrols" class="pagenav">
58 <roundcube:button command="lastmessage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastmessage" content=" " />
59 <roundcube:button command="nextmessage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextmessage" content=" " />
60 <roundcube:object name="messageCountDisplay" style="padding:0 .5em; float:right" />
61 <roundcube:button command="previousmessage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previousmessage" content=" " />
62 <roundcube:button command="firstmessage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstmessage" content=" " />
63 </div>
64 </div>
65 </div>
66
67 </div>
68
69 <roundcube:if condition="!env:extwin" />
70 <script type="text/javascript">
71 var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailboxlist-container', p2: 'messageframe', orientation: 'v', relative: true, start: 165});
72 rcmail.add_onload('mailviewsplitv.init()');
73 </script>
74 <roundcube:endif />
75
76 <div id="attachmentmenu" class="popupmenu">
77 <ul class="toolbarmenu">
78 <li><roundcube:button command="open-attachment" id="attachmenuopen" type="link" label="open" class="openlink" classAct="openlink active" innerclass="openlink" /></li>
79 <li><roundcube:button command="download-attachment" id="attachmenudownload" type="link" label="download" class="downloadlink" classAct="downloadlink active" innerclass="downloadlink" /></li>
80 <roundcube:container name="attachmentmenu" id="attachmentmenu" />
81 </ul>
82 </div>
83
84 <script type="text/javascript">
85 rcube_init_mail_ui();
86 </script>
87
88 </body>
89 </html>