]> git.donarmstrong.com Git - roundcube.git/blob - skins/default/templates/mail.html
Merge commit 'upstream/0.1_rc2'
[roundcube.git] / skins / default / templates / mail.html
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 </head>
9 <body>
10
11 <roundcube:include file="/includes/taskbar.html" />
12 <roundcube:include file="/includes/header.html" />
13
14 <div id="messagetoolbar">
15 <roundcube:button command="checkmail" imageSel="/images/buttons/inbox_sel.png" imageAct="/images/buttons/inbox_act.png" imagePas="/images/buttons/inbox_pas.png" width="32" height="32" title="checkmail" />
16 <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" />
17 <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" />
18 <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" />
19 <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" />
20 <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" />
21 <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" />
22 </div>
23
24 <div id="quicksearchbar">
25 <roundcube:object name="searchform" type="search" results="5" id="quicksearchbox" /><roundcube:button command="reset-search" id="searchreset" image="/images/icons/reset.gif" title="resetsearch" />
26 </div>
27
28 <div id="messagecountbar">
29 <roundcube:button command="firstpage" imageSel="/images/buttons/first_sel.png" imageAct="/images/buttons/first_act.png" imagePas="/images/buttons/first_pas.png" width="11" height="11" title="firstmessages" />
30 <roundcube:button command="previouspage" imageSel="/images/buttons/previous_sel.png" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previousmessages" />
31 &nbsp;<roundcube:object name="messageCountDisplay" />&nbsp;
32 <roundcube:button command="nextpage" imageSel="/images/buttons/next_sel.png" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextmessages" />
33 <roundcube:button command="lastpage" imageSel="/images/buttons/last_sel.png" imageAct="/images/buttons/last_act.png" imagePas="/images/buttons/last_pas.png" width="11" height="11" title="lastmessages" />
34 </div>
35
36 <div id="mailboxlist-container">
37 <div id="mailboxlist-header"><roundcube:label name="mailboxlist" /></div>
38 <roundcube:object name="mailboxlist" id="mailboxlist" maxlength="16" />
39 </div>
40
41 <div id="mailboxcontrols">
42 <roundcube:label name="folder" />:&nbsp;
43 <roundcube:button command="expunge" label="compact" classAct="active" />&nbsp;
44 <roundcube:button command="purge" label="empty" classAct="active" />&nbsp;
45 </div>
46
47
48 <div id="mailcontframe">
49 <roundcube:object name="messages"
50   id="messagelist"
51   cellspacing="0"
52   summary="Message list"
53   messageIcon="/images/icons/dot.png"
54   unreadIcon="/images/icons/unread.png"
55   deletedIcon="/images/icons/deleted.png"
56   repliedIcon="/images/icons/replied.png"
57   attachmentIcon="/images/icons/attachment.png" />
58 </div>
59
60 <roundcube:if condition="config:preview_pane == true" />
61 <script type="text/javascript">
62   var mailviewsplit = new rcube_splitter({id:'mailviewsplitter', p1: 'mailcontframe', p2: 'mailpreviewframe', orientation: 'h'});
63   rcmail.add_onload('mailviewsplit.init()');
64 </script>
65 <div id="mailpreviewframe">
66 <roundcube:object name="messagecontentframe" id="messagecontframe" width="100%" height="100%" frameborder="0" src="/watermark.html" />
67 </div>
68
69 <style type="text/css">
70 #mailcontframe {
71   bottom: auto;
72   height: 208px;
73 }
74 </style>
75 <roundcube:endif />
76
77 <div id="listcontrols">
78 <roundcube:label name="select" />:&nbsp;
79 <roundcube:button command="select-all" label="all" classAct="active" />&nbsp;
80 <roundcube:button command="select-all" prop="unread" label="unread" classAct="active" />&nbsp;
81 <roundcube:button command="select-none" label="none" classAct="active" /> &nbsp;&nbsp;&nbsp;
82 <roundcube:if condition="env:quota" />
83 <roundcube:label name="quota" />: <roundcube:object name="quotaDisplay" display="image" width="120" id="quotadisplay" />
84 <roundcube:endif />
85 </div>
86
87 </body>
88 </html>