You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

folders.html 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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="/functions.js"></script>
  7. <script type="text/javascript" src="/splitter.js"></script>
  8. <style type="text/css">
  9. #folder-manager { width: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter-5 : 295" />px; }
  10. #folder-box { left: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter+5 : 305" />px; }
  11. </style>
  12. </head>
  13. <body>
  14. <roundcube:include file="/includes/taskbar.html" />
  15. <roundcube:include file="/includes/header.html" />
  16. <roundcube:include file="/includes/settingstabs.html" />
  17. <div id="mainscreen">
  18. <div id="folder-manager">
  19. <div id="folderlist-title" class="boxtitle">
  20. <roundcube:label name="folders" />
  21. <a href="#folders" class="iconbutton search" title="<roundcube:label name='findfolders' />" tabindex="0"><roundcube:label name='findfolders' /></a>
  22. </div>
  23. <div class="listsearchbox">
  24. <roundcube:object name="folderfilter" id="folderlist-filter" />
  25. <div class="searchbox" role="search">
  26. <input type="text" name="q" id="foldersearch" placeholder="<roundcube:label name='findfolders' />" />
  27. <a class="iconbutton searchicon"></a>
  28. <roundcube:button command="reset-foldersearch" id="folderlistsearch-reset" class="iconbutton reset" title="resetsearch" width="13" height="13" />
  29. </div>
  30. </div>
  31. <div id="folderlist-content" class="boxlistcontent">
  32. <roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table"
  33. summary="Folder subscription table" class="treelist folderlist" />
  34. </div>
  35. <div id="folderlist-footer" class="boxfooter">
  36. <roundcube:button command="create-folder" type="link" title="createfolder" class="buttonPas addgroup" classAct="button addgroup" content=" " />
  37. <roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="button groupactions" onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " />
  38. <roundcube:if condition="env:quota" />
  39. <img id="quotaimg" src="/images/quota.png" alt="" width="102" height="16" />
  40. <div id="quota">
  41. <roundcube:object name="quotaDisplay" display="image" width="100" height="14" id="quotadisplay" />
  42. </div>
  43. <roundcube:endif />
  44. </div>
  45. </div>
  46. <script type="text/javascript">
  47. var folderviewsplit = new rcube_splitter({id:'folderviewsplitter', p1: 'folder-manager', p2: 'folder-box', orientation: 'v', relative: true, start: 300 });
  48. rcmail.add_onload('folderviewsplit.init()');
  49. </script>
  50. <div id="folder-box">
  51. <roundcube:object name="folderframe" id="folder-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
  52. </div>
  53. </div>
  54. <div id="mailboxoptionsmenu" class="popupmenu">
  55. <ul>
  56. <li><roundcube:button command="delete-folder" label="delete" classAct="active" /></li>
  57. <li><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li>
  58. <roundcube:container name="mailboxoptions" id="mailboxoptionsmenu" />
  59. </ul>
  60. </div>
  61. <script type="text/javascript">
  62. rcube_init_mail_ui();
  63. </script>
  64. </body>
  65. </html>