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.

messagepart.html 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. #messagepartheader { width: <roundcube:exp expression="!empty(cookie:mailpartsplitter) ? cookie:mailpartsplitter-5 : 170" />px; }
  10. #messagepartcontainer { left: <roundcube:exp expression="!empty(cookie:mailpartsplitter) ? cookie:mailpartsplitter+5 : 180" />px; }
  11. </style>
  12. </head>
  13. <body class="extwin">
  14. <roundcube:object name="message" id="message" />
  15. <div id="messagetoolbar">
  16. <roundcube:button command="download" type="link" class="button download" classAct="button download" classSel="button downloadSel" title="download" content=" " />
  17. <roundcube:button command="print" type="link" class="button print" classAct="button print" classSel="button printSel" title="print" content=" " />
  18. <roundcube:container name="toolbar" id="messagetoolbar" />
  19. </div>
  20. <div id="mainscreen">
  21. <div id="messagepartheader">
  22. <div class="boxtitle" /><roundcube:label name="properties" /></div>
  23. <div class="boxlistcontent">
  24. <roundcube:object name="messagePartControls" class="records-table" cellspacing="0" />
  25. </div>
  26. </div>
  27. <div id="messagepartcontainer">
  28. <roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="100%" />
  29. </div>
  30. </div>
  31. <script type="text/javascript">
  32. var mailpartsplit = new rcube_splitter({id:'mailpartsplitter', p1: 'messagepartheader', p2: 'messagepartcontainer', orientation: 'v', relative: true, start: 165});
  33. rcmail.add_onload('mailpartsplit.init()');
  34. </script>
  35. </body>
  36. </html>