alecpl
2008-09-27 e80f502efbc451a02e53502d75956aff973d45ce
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" />
4e17e6 6 <link rel="stylesheet" type="text/css" href="/addresses.css" />
a7d5c6 7 <script type="text/javascript" src="/splitter.js"></script>
cb7597 8
A 9 <style type="text/css">
a1f722 10 <roundcube:if condition="config:ldap_public == false" />
cb7597 11 #abookcountbar { left: 20px;}
A 12 #mainscreen { left:20px; /* IE hack */ width:expression((parseInt(document.documentElement.clientWidth)-40)+'px') }
a1f722 13 #addresslist { width: <roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter-5 : 245" />px; }
A 14 #contacts-box {
15     left: <roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter+5 : 255" />px;
16     /* IE hack */
17     width:expression((parseInt(mainscreen.offsetWidth)-<roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter+5 : 255" />)+'px')
18 }
19 <roundcube:else />
20 #addresslist { width: <roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter-5 : 245" />px; }
21 #contacts-box {
22     left: <roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter+5 : 255" />px;
23     /* IE hack */
24     width:expression((parseInt(mainscreen.offsetWidth)-<roundcube:exp expression="!empty(cookie:addressviewsplitter) ? cookie:addressviewsplitter+5 : 255" />)+'px')
25 }
cb7597 26 <roundcube:endif />
a1f722 27 </style>
cb7597 28
4e17e6 29 </head>
T 30 <body>
31
b076a4 32 <roundcube:include file="/includes/taskbar.html" />
4e17e6 33 <roundcube:include file="/includes/header.html" />
T 34
35 <div id="abooktoolbar">
c8c1e0 36 <roundcube:button command="add" imageSel="/images/buttons/add_contact_sel.png" imageAct="/images/buttons/add_contact_act.png" imagePas="/images/buttons/add_contact_pas.png" width="32" height="32" title="newcontact" />
S 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="deletecontact" />
38 <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="composeto" />
a6d7a9 39 <roundcube:button command="import" imageSel="/images/buttons/adr_import_sel.png" imageAct="/images/buttons/adr_import_act.png" imagePas="/images/buttons/adr_import_pas.png" width="32" height="32" title="importcontacts" />
T 40 <roundcube:button command="export" imageSel="/images/buttons/download_sel.png" imageAct="/images/buttons/download_act.png" imagePas="/images/buttons/download_pas.png" width="32" height="32" title="exportvcards" />
4e17e6 41 </div>
T 42
f11541 43 <div id="quicksearchbar">
T 44 <roundcube:object name="searchform" type="search" results="5" id="quicksearchbox" /><roundcube:button command="reset-search" id="searchreset" image="/images/icons/reset.gif" title="resetsearch" />
45 </div>
46
a549a9 47 <roundcube:if condition="config:ldap_public" />
f11541 48 <div id="directorylist">
T 49 <div id="groups-title"><roundcube:label name="groups" /></div>
50 <roundcube:object name="directorylist" id="directories-list" />
4e17e6 51 </div>
a549a9 52 <roundcube:endif />
e5686f 53
A 54 <div id="mainscreen">
a549a9 55
4e17e6 56 <div id="addresslist">
T 57 <roundcube:object name="addresslist" id="contacts-table" class="records-table" cellspacing="0" summary="Contacts list" />
58 </div>
59
a7d5c6 60 <script type="text/javascript">
e5686f 61   var addrviewsplit = new rcube_splitter({id:'addressviewsplitter', p1: 'addresslist', p2: 'contacts-box', orientation: 'v', relative: true, start: 250});
a7d5c6 62   rcmail.add_onload('addrviewsplit.init()');
T 63 </script>
64
4e17e6 65 <div id="contacts-box">
T 66 <roundcube:object name="addressframe" id="contact-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
67 </div>
68
e5686f 69 </div>
A 70
f11541 71 <div id="abookcountbar">
T 72 <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="firstpage" />
73 <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="previouspage" />
74 &nbsp;<roundcube:object name="recordsCountDisplay" />&nbsp;
75 <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="nextpage" />
76 <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="lastpage" />
77 </div>
78
4e17e6 79 </body>
T 80 </html>