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" /> |
a7d5c6
|
6 |
<script type="text/javascript" src="/splitter.js"></script> |
5f660c
|
7 |
<script type="text/javascript" src="/functions.js"></script> |
cb7597
|
8 |
<style type="text/css"> |
a1f722
|
9 |
<roundcube:if condition="config:preview_pane == true" /> |
A |
10 |
#mailcontframe { height: <roundcube:exp expression="!empty(cookie:mailviewsplitter) ? cookie:mailviewsplitter-5 : 195" />px; } |
4b1647
|
11 |
#mailpreviewframe { top: <roundcube:exp expression="!empty(cookie:mailviewsplitter) ? cookie:mailviewsplitter+5 : 205" />px; |
189482
|
12 |
<roundcube:exp expression="browser:ie ? ('height: expression((parseInt(this.parentNode.offsetHeight)-'.(!empty(cookie:mailviewsplitter) ? cookie:mailviewsplitter+25 : 245).')+\\'px\\');') : ''" /> |
a1f722
|
13 |
} |
cb7597
|
14 |
<roundcube:endif /> |
4b1647
|
15 |
#mailleftcontainer { width: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv-5 : 175" />px; } |
T |
16 |
#mailrightcontainer { left: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 185" />px; |
189482
|
17 |
<roundcube:exp expression="browser:ie ? ('width: expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 180).')+\\'px\\');') : ''" /> |
a1f722
|
18 |
} |
A |
19 |
</style> |
4e17e6
|
20 |
</head> |
5f660c
|
21 |
<body onload="rcube_init_mail_ui()"> |
4e17e6
|
22 |
|
b076a4
|
23 |
<roundcube:include file="/includes/taskbar.html" /> |
4e17e6
|
24 |
<roundcube:include file="/includes/header.html" /> |
T |
25 |
|
e5686f
|
26 |
<div id="mainscreen"> |
189482
|
27 |
<div id="mailleftcontainer"> |
f45bbe
|
28 |
<div id="mailboxlist-container"> |
5261d2
|
29 |
<div class="boxtitle"><roundcube:label name="mailboxlist" /></div> |
27e9a5
|
30 |
<roundcube:object name="mailboxlist" id="mailboxlist" maxlength="25" /> |
f45bbe
|
31 |
</div> |
cd900d
|
32 |
|
e5686f
|
33 |
<script type="text/javascript"> |
189482
|
34 |
var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailleftcontainer', p2: 'mailrightcontainer', orientation: 'v', relative: true, start: 165}); |
e5686f
|
35 |
rcmail.add_onload('mailviewsplitv.init()'); |
A |
36 |
</script> |
996f0b
|
37 |
|
T |
38 |
<div id="mailboxcontrols"> |
8583d6
|
39 |
<span><roundcube:label name="folder" />: </span> |
A |
40 |
<roundcube:button command="expunge" type="link" title="compact" class="buttonPas expunge" classAct="button expunge" classSel="button expungesel" content=" " /> |
|
41 |
<roundcube:button command="purge" type="link" title="empty" class="buttonPas purge" classAct="button purge" classSel="button purgesel" content=" " /> |
|
42 |
<roundcube:container name="mailboxcontrols" id="mailboxcontrols" /> |
996f0b
|
43 |
</div> |
T |
44 |
</div> |
4e17e6
|
45 |
|
189482
|
46 |
<div id="mailrightcontainer"> |
T |
47 |
<div id="mailrightcontent"> |
4e17e6
|
48 |
<div id="mailcontframe"> |
T |
49 |
<roundcube:object name="messages" |
|
50 |
id="messagelist" |
|
51 |
cellspacing="0" |
d59aaa
|
52 |
columns="" |
4e17e6
|
53 |
summary="Message list" |
T |
54 |
messageIcon="/images/icons/dot.png" |
|
55 |
unreadIcon="/images/icons/unread.png" |
d810d5
|
56 |
deletedIcon="/images/icons/deleted.png" |
4e17e6
|
57 |
repliedIcon="/images/icons/replied.png" |
d73404
|
58 |
forwardedIcon="/images/icons/forwarded.png" |
A |
59 |
forwardedrepliedIcon="/images/icons/forwarded_replied.png" |
e189a6
|
60 |
attachmentIcon="/images/icons/attachment.png" |
A |
61 |
flaggedIcon="/images/icons/flagged.png" |
f52c93
|
62 |
unflaggedIcon="/images/icons/blank.gif" |
T |
63 |
unreadchildrenIcon="" |
|
64 |
optionsmenuIcon="/images/icons/columnpicker.gif" /> |
4e17e6
|
65 |
</div> |
T |
66 |
|
b19097
|
67 |
<roundcube:if condition="config:preview_pane == true" /> |
e5686f
|
68 |
|
a7d5c6
|
69 |
<script type="text/javascript"> |
4b1647
|
70 |
var mailviewsplit = new rcube_splitter({id:'mailviewsplitter', p1: 'mailcontframe', p2: 'mailpreviewframe', orientation: 'h', relative: true, start: 205}); |
a7d5c6
|
71 |
rcmail.add_onload('mailviewsplit.init()'); |
T |
72 |
</script> |
e5686f
|
73 |
|
b19097
|
74 |
<div id="mailpreviewframe"> |
T |
75 |
<roundcube:object name="messagecontentframe" id="messagecontframe" width="100%" height="100%" frameborder="0" src="/watermark.html" /> |
|
76 |
</div> |
e5686f
|
77 |
|
b19097
|
78 |
<roundcube:endif /> |
e5686f
|
79 |
</div> |
A |
80 |
|
8583d6
|
81 |
<div id="listcontrols"> |
A |
82 |
<span><roundcube:label name="select" />: </span> |
|
83 |
<roundcube:button command="select-all" type="link" title="all" class="buttonPas all" classAct="button all" classSel="button allsel" content=" " /> |
fb7ec5
|
84 |
<roundcube:button command="select-all" type="link" prop="page" title="currpage" class="buttonPas page" classAct="button page" classSel="button pagesel" content=" " /> |
05d18d
|
85 |
<roundcube:button command="select-all" type="link" prop="unread" title="unread" class="buttonPas unread" classAct="button unread" classSel="button unreadsel" content=" " /> |
37d909
|
86 |
<roundcube:button command="select-all" type="link" prop="invert" title="invert" class="buttonPas invert" classAct="button invert" classSel="button invertsel" content=" " /> |
8583d6
|
87 |
<roundcube:button command="select-none" type="link" title="none" class="buttonPas none" classAct="button none" classSel="button nonesel" content=" " /> |
74fd1a
|
88 |
<roundcube:container name="listcontrols" id="listcontrols" /> |
258a04
|
89 |
<roundcube:if condition="env:threads" /> |
f52c93
|
90 |
<span style="margin-left: 20px"><roundcube:label name="threads" />: </span> |
T |
91 |
<roundcube:button command="expand-all" type="link" title="expand-all" class="buttonPas expand-all" classAct="button expand-all" classSel="button expand-allsel" content=" " /> |
|
92 |
<roundcube:button command="expand-unread" type="link" title="expand-unread" class="buttonPas expand-unread" classAct="button expand-unread" classSel="button expand-unreadsel" content=" " /> |
|
93 |
<roundcube:button command="collapse-all" type="link" title="collapse-all" class="buttonPas collapse-all" classAct="button collapse-all" classSel="button collapse-allsel" content=" " /> |
258a04
|
94 |
<roundcube:endif /> |
4a4265
|
95 |
<roundcube:if condition="env:quota" /> |
7415c0
|
96 |
<span style="margin-left: 20px; margin-right: 5px"><roundcube:label name="quota" />:</span> |
8583d6
|
97 |
<roundcube:object name="quotaDisplay" display="image" width="100" height="14" id="quotadisplay" /> |
4a4265
|
98 |
<roundcube:endif /> |
8583d6
|
99 |
</div> |
A |
100 |
|
|
101 |
<div id="countcontrols" class="pagenav"> |
4a4265
|
102 |
<roundcube:button command="lastpage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastmessages" content=" " /> |
T |
103 |
<roundcube:button command="nextpage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextmessages" content=" " /> |
8583d6
|
104 |
<roundcube:object name="messageCountDisplay" style="padding:0 .5em; float:right" /> |
4a4265
|
105 |
<roundcube:button command="previouspage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previousmessages" content=" " /> |
T |
106 |
<roundcube:button command="firstpage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstmessages" content=" " /> |
996f0b
|
107 |
</div> |
T |
108 |
|
|
109 |
</div> |
189482
|
110 |
</div> |
4e17e6
|
111 |
|
7f9ea1
|
112 |
<div id="messagetoolbar"> |
4a4265
|
113 |
<roundcube:button command="checkmail" type="link" class="button checkmail" classAct="button checkmail" classSel="button checkmailSel" title="checkmail" content=" " /> |
T |
114 |
<roundcube:button command="compose" type="link" class="button compose" classAct="button compose" classSel="button composeSel" title="writenewmessage" content=" " /> |
|
115 |
<roundcube:button command="reply" type="link" class="buttonPas reply" classAct="button reply" classSel="button replySel" title="replytomessage" content=" " /> |
|
116 |
<roundcube:button command="reply-all" type="link" class="buttonPas replyAll" classAct="button replyAll" classSel="button replyAllSel" title="replytoallmessage" content=" " /> |
|
117 |
<roundcube:button command="forward" type="link" class="buttonPas forward" classAct="button forward" classSel="button forwardSel" title="forwardmessage" content=" " /> |
|
118 |
<roundcube:button command="delete" type="link" class="buttonPas delete" classAct="button delete" classSel="button deleteSel" title="deletemessage" content=" " /> |
cc97ea
|
119 |
<roundcube:container name="toolbar" id="messagetoolbar" /> |
4a4265
|
120 |
<roundcube:button name="markreadbutton" id="markreadbutton" type="link" class="button markmessage" title="markmessages" onclick="rcmail_ui.show_markmenu();return false" content=" " /> |
T |
121 |
<roundcube:button name="messagemenulink" id="messagemenulink" type="link" class="button messagemenu" title="messageactions" onclick="rcmail_ui.show_messagemenu();return false" content=" " /> |
a61bbb
|
122 |
</div> |
7f9ea1
|
123 |
|
f52c93
|
124 |
<div id="markmessagemenu" class="popupmenu"> |
7f9ea1
|
125 |
<ul class="toolbarmenu"> |
799752
|
126 |
<li><roundcube:button command="mark" prop="read" label="markread" classAct="readlink active" class="readlink" /></li> |
A |
127 |
<li><roundcube:button command="mark" prop="unread" label="markunread" classAct="unreadlink active" class="unreadlink" /></li> |
|
128 |
<li><roundcube:button command="mark" prop="flagged" label="markflagged" classAct="flaggedlink active" class="flaggedlink" /></li> |
|
129 |
<li><roundcube:button command="mark" prop="unflagged" label="markunflagged" classAct="unflaggedlink active" class="unflaggedlink" /></li> |
4beb1a
|
130 |
<roundcube:container name="markmenu" id="markmessagemenu" /> |
7f9ea1
|
131 |
</ul> |
T |
132 |
</div> |
3dc19d
|
133 |
|
b4f7c6
|
134 |
<roundcube:include file="/includes/messagemenu.html" /> |
7f9ea1
|
135 |
|
f52c93
|
136 |
<div id="searchmenu" class="popupmenu"> |
30b152
|
137 |
<ul class="toolbarmenu"> |
A |
138 |
<li><input type="checkbox" name="s_mods[]" value="subject" id="s_mod_subject" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_subject"><roundcube:label name="subject" /></label></li> |
|
139 |
<li><input type="checkbox" name="s_mods[]" value="from" id="s_mod_from" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_from"><roundcube:label name="from" /></label></li> |
|
140 |
<li><input type="checkbox" name="s_mods[]" value="to" id="s_mod_to" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_to"><roundcube:label name="to" /></label></li> |
|
141 |
<li><input type="checkbox" name="s_mods[]" value="cc" id="s_mod_cc" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_cc"><roundcube:label name="cc" /></label></li> |
|
142 |
<li><input type="checkbox" name="s_mods[]" value="bcc" id="s_mod_bcc" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_bcc"><roundcube:label name="bcc" /></label></li> |
|
143 |
<li><input type="checkbox" name="s_mods[]" value="text" id="s_mod_text" onclick="rcmail_ui.set_searchmod(this)" /><label for="s_mod_text"><roundcube:label name="msgtext" /></label></li> |
|
144 |
</ul> |
|
145 |
</div> |
|
146 |
|
7f9ea1
|
147 |
<div id="quicksearchbar"> |
4bcb36
|
148 |
<div id="searchfilter"> |
A |
149 |
<label for="rcmlistfilter"><roundcube:label name="filter" /></label>: |
|
150 |
<roundcube:object name="searchfilter" class="searchfilter" /> |
|
151 |
</div> |
562c0e
|
152 |
<roundcube:button name="searchmod" id="searchmod" image="/images/icons/glass_roll.png" onclick="rcmail_ui.show_searchmenu();return false" title="searchmod" /> |
30b152
|
153 |
<roundcube:object name="searchform" id="quicksearchbox" /> |
A |
154 |
<roundcube:button command="reset-search" id="searchreset" image="/images/icons/reset.gif" title="resetsearch" /> |
7f9ea1
|
155 |
</div> |
T |
156 |
|
9b3fdc
|
157 |
<div id="dragmessagemenu" class="popupmenu"> |
A |
158 |
<ul> |
|
159 |
<li><roundcube:button command="moveto" onclick="return rcmail.drag_menu_action('moveto')" label="move" classAct="active" /></li> |
|
160 |
<li><roundcube:button command="copy" onclick="return rcmail.drag_menu_action('copy')" label="copy" classAct="active" /></li> |
|
161 |
</ul> |
|
162 |
</div> |
|
163 |
|
f52c93
|
164 |
<div id="listmenu" class="popupmenu"> |
258a04
|
165 |
<roundcube:if condition="env:threads" /> |
f52c93
|
166 |
<fieldset class="thinbordered"><legend><roundcube:label name="listmode" /></legend> |
T |
167 |
<ul class="toolbarmenu"> |
|
168 |
<li><input type="radio" name="view" value="list" id="view_default" /><label for="view_default"><roundcube:label name="list" /></label></li> |
258a04
|
169 |
<li><input type="radio" name="view" value="thread" id="view_thread" /><label for="view_thread"><roundcube:label name="threads" /></label></li> |
f52c93
|
170 |
</ul> |
T |
171 |
</fieldset> |
258a04
|
172 |
<roundcube:endif /> |
f52c93
|
173 |
<fieldset class="thinbordered"><legend><roundcube:label name="listcolumns" /></legend> |
T |
174 |
<ul class="toolbarmenu"> |
c3eab2
|
175 |
<li><input type="checkbox" name="list_col[]" value="threads" id="cols_threads" checked="checked" disabled="disabled" /><label for="cols_threads" class="disabled"><roundcube:label name="threads" /></label></li> |
f52c93
|
176 |
<li><input type="checkbox" name="list_col[]" value="subject" id="cols_subject" checked="checked" disabled="disabled" /><label for="cols_subject" class="disabled"><roundcube:label name="subject" /></label></li> |
T |
177 |
<li><input type="checkbox" name="list_col[]" value="from" id="cols_fromto" /><label for="cols_fromto"><roundcube:label name="fromto" /></label></li> |
|
178 |
<li><input type="checkbox" name="list_col[]" value="replyto" id="cols_replyto" /><label for="cols_replyto"><roundcube:label name="replyto" /></label></li> |
|
179 |
<li><input type="checkbox" name="list_col[]" value="cc" id="cols_cc" /><label for="cols_cc"><roundcube:label name="cc" /></label></li> |
|
180 |
<li><input type="checkbox" name="list_col[]" value="date" id="cols_date" /><label for="cols_date"><roundcube:label name="date" /></label></li> |
|
181 |
<li><input type="checkbox" name="list_col[]" value="size" id="cols_size" /><label for="cols_size"><roundcube:label name="size" /></label></li> |
|
182 |
<li><input type="checkbox" name="list_col[]" value="attachment" id="cols_attachment" /><label for="cols_attachment"><roundcube:label name="attachment" /></label></li> |
c3eab2
|
183 |
<li><input type="checkbox" name="list_col[]" value="flag" id="cols_flag" /><label for="cols_flag"><roundcube:label name="flag" /></label></li> |
f52c93
|
184 |
</ul> |
T |
185 |
</fieldset> |
|
186 |
<fieldset class="thinbordered"><legend><roundcube:label name="listsorting" /></legend> |
|
187 |
<ul class="toolbarmenu"> |
|
188 |
<li><input type="radio" name="sort_col" value="" id="sort_default" /><label for="sort_default"><roundcube:label name="nonesort" /></label></li> |
|
189 |
<li><input type="radio" name="sort_col" value="arrival" id="sort_arrival" /><label for="sort_arrival"><roundcube:label name="arrival" /></label></li> |
|
190 |
<li><input type="radio" name="sort_col" value="date" id="sort_date" /><label for="sort_date"><roundcube:label name="sentdate" /></label></li> |
|
191 |
<li><input type="radio" name="sort_col" value="subject" id="sort_subject" /><label for="sort_subject"><roundcube:label name="subject" /></label></li> |
|
192 |
<li><input type="radio" name="sort_col" value="from" id="sort_fromto" /><label for="sort_fromto"><roundcube:label name="fromto" /></label></li> |
|
193 |
<li><input type="radio" name="sort_col" value="to" id="sort_replyto" /><label for="sort_replyto"><roundcube:label name="replyto" /></label></li> |
|
194 |
<li><input type="radio" name="sort_col" value="cc" id="sort_cc" /><label for="sort_cc"><roundcube:label name="cc" /></label></li> |
|
195 |
<li><input type="radio" name="sort_col" value="size" id="sort_size" /><label for="sort_size"><roundcube:label name="size" /></label></li> |
|
196 |
</ul> |
|
197 |
</fieldset> |
|
198 |
<fieldset><legend><roundcube:label name="listorder" /></legend> |
|
199 |
<ul class="toolbarmenu"> |
|
200 |
<li><input type="radio" name="sort_ord" value="ASC" id="sort_asc" /><label for="sort_asc"><roundcube:label name="asc" /></label></li> |
|
201 |
<li><input type="radio" name="sort_ord" value="DESC" id="sort_desc" /><label for="sort_desc"><roundcube:label name="desc" /></label></li> |
|
202 |
</ul> |
|
203 |
</fieldset> |
|
204 |
<div> |
|
205 |
<roundcube:button command="menu-open" id="listmenucancel" type="input" class="button" label="cancel" /> |
|
206 |
<roundcube:button command="menu-save" id="listmenusave" type="input" class="button mainaction" label="save" /> |
|
207 |
</div> |
|
208 |
</div> |
|
209 |
|
4e17e6
|
210 |
</body> |
T |
211 |
</html> |