Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

message.html 4.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <roundcube:include file="/includes/taskbar.html" />
  19. <roundcube:include file="/includes/header.html" />
  20. <roundcube:endif />
  21. <roundcube:include file="/includes/messagetoolbar.html" />
  22. <div id="mainscreen">
  23. <roundcube:if condition="!env:extwin" />
  24. <div id="mailleftcontainer">
  25. <div id="mailboxlist-container">
  26. <div id="mailboxlist-title" class="boxtitle"><roundcube:label name="mailboxlist" /></div>
  27. <div class="boxlistcontent">
  28. <roundcube:object name="mailboxlist" id="mailboxlist" class="treelist folderlist" folder_filter="mail" />
  29. </div>
  30. <div class="boxfooter"></div>
  31. </div>
  32. </div>
  33. <roundcube:else />
  34. <roundcube:object name="mailboxlist" folder_filter="mail" type="js" />
  35. <roundcube:endif />
  36. <div id="messageframe">
  37. <div class="boxlistcontent" style="top:0; overflow-x:auto">
  38. <div id="messagelinks">
  39. <roundcube:if condition="env:optional_format=='text'" />
  40. <roundcube:button command="change-format" prop="text" image="/images/icons/text.png" width="15" height="15" title="changeformattext" id="changeformattext" />
  41. <roundcube:endif />
  42. <roundcube:if condition="env:optional_format=='html'" />
  43. <roundcube:button command="change-format" prop="html" image="/images/icons/html.png" width="15" height="15" title="changeformathtml" id="changeformathtml" />
  44. <roundcube:endif />
  45. </div>
  46. <roundcube:object name="messageHeaders" class="headers-table" cellspacing="0" cellpadding="2" addicon="/images/icons/silhouette.png" summary="Message headers" />
  47. <roundcube:object name="messageFullHeaders" id="full-headers" />
  48. <roundcube:object name="messageAttachments" id="attachment-list" maxlength="50" />
  49. <roundcube:object name="messageObjects" id="message-objects" />
  50. <roundcube:object name="messageBody" id="messagebody" />
  51. </div>
  52. <div class="boxfooter">
  53. <div id="countcontrols" class="pagenav">
  54. <roundcube:button command="lastmessage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastmessage" content=" " />
  55. <roundcube:button command="nextmessage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextmessage" content=" " />
  56. <roundcube:object name="messageCountDisplay" style="padding:0 .5em; float:right" />
  57. <roundcube:button command="previousmessage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previousmessage" content=" " />
  58. <roundcube:button command="firstmessage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstmessage" content=" " />
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. <roundcube:if condition="!env:extwin" />
  64. <script type="text/javascript">
  65. var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailboxlist-container', p2: 'messageframe', orientation: 'v', relative: true, start: 165});
  66. rcmail.add_onload('mailviewsplitv.init()');
  67. </script>
  68. <roundcube:endif />
  69. <div id="attachmentmenu" class="popupmenu">
  70. <ul class="toolbarmenu">
  71. <li><roundcube:button command="open-attachment" id="attachmenuopen" type="link" label="open" class="openlink" classAct="openlink active" innerclass="openlink" /></li>
  72. <li><roundcube:button command="download-attachment" id="attachmenudownload" type="link" label="download" class="downloadlink" classAct="downloadlink active" innerclass="downloadlink" /></li>
  73. <roundcube:container name="attachmentmenu" id="attachmentmenu" />
  74. </ul>
  75. </div>
  76. <script type="text/javascript">
  77. rcube_init_mail_ui();
  78. </script>
  79. </body>
  80. </html>