]> err.no Git - scalable-opengroupware.org/blob - SOGo/UI/Templates/MailerUI/UIxMailMainFrame.wox
improved error handling in mail-view
[scalable-opengroupware.org] / SOGo / UI / Templates / MailerUI / UIxMailMainFrame.wox
1 <?xml version="1.0" standalone="yes"?>
2 <container xmlns="http://www.w3.org/1999/xhtml"
3       xmlns:var="http://www.skyrix.com/od/binding"
4       xmlns:const="http://www.skyrix.com/od/constant"
5       xmlns:rsrc="OGo:url"
6       xmlns:label="OGo:label"
7 >
8   <var:if condition="hideFrame" const:negate="YES">
9 <html xmlns="http://www.w3.org/1999/xhtml"
10       xmlns:var="http://www.skyrix.com/od/binding"
11       xmlns:const="http://www.skyrix.com/od/constant"
12       xmlns:rsrc="OGo:url"
13       xmlns:label="OGo:label"
14 >
15   <head>
16     <title>
17       <var:string value="title"/>
18     </title>
19     
20     <meta name="description" content="SOGo Web Interface"/>
21     <meta name="author" content="SKYRIX Software AG"/>
22     <meta name="robots" content="stop"/>
23     
24     <script rsrc:src="generic.js"    > <!-- space required --></script>
25     <script rsrc:src="mailer.js"     > <!-- space required --></script>
26     <script rsrc:src="searchfield.js"> <!-- space required --></script>
27     
28     <link type="text/css" rel="stylesheet" rsrc:href="uix.css"/>
29     <link type="text/css" rel="stylesheet" rsrc:href="mailer.css"/>
30     <link href="mailto:info@skyrix.com" rev="made"/>
31   </head>
32
33   <body style="background-color: #D4D0C8;">
34    <!-- 
35      Note: the 'href' is required, otherwise an element-id will get created
36      -->
37    <form name="pageform" var:href="pageFormURL" sidInUrl="NO">
38     <table border="0" width="100%" cellspacing="0" cellpadding="2"
39            style="position: fixed; height: 48px; z-index: 100;"
40     >
41       <!-- this table is required for right alignment -->
42       <tr>
43         <td valign="top" class="vertframerow">
44           <var:component className="UIxMailToolbar" />
45         </td>
46         <td align="right" width="80" class="vertframerow">
47           <table border="0">
48             <tr>
49               <td class="tb_icon" style="width: 36px; padding-right: 8px;"
50                   ><div class="tbicon_logo"> </div></td>
51             </tr>
52           </table>
53         </td>
54       </tr>
55     </table>
56     <div style="height: 58px; clear: both;"> </div> <!-- consume toolbar -->
57     
58     <table border="0" width="100%" cellspacing="0" cellpadding="2"
59     >
60       <tr class="vertframerow">
61         <td width="100%" valign="top" class="vertframerow" colspan="2">
62           <var:if condition="hideFolderTree">
63             <var:component-content/>
64           </var:if>
65           
66           <var:if condition="hideFolderTree" const:negate="YES">
67             <table width="100%">
68               <tr>
69                 <td width="25%" valign="top" class="foldercell">
70                   <div class="titlediv"
71                        ><var:string label:value="Folders" /></div>
72                   <div style="height: 95%">
73                     <div class="embedwhite_out">
74                       <div class="embedwhite_in">
75                         <var:component className="UIxMailTree" 
76                            rootClassName="treeRootClassName" 
77                            const:treeFolderAction="tb.view" 
78                            />
79                       </div>
80                     </div>
81                   </div>
82                 </td>
83                 <td style="width: 6px;"> </td>
84                 <td valign="top" class="contentcell">
85                   <var:component-content/>
86                 </td>
87               </tr>
88             </table>
89           </var:if>
90         </td>
91       </tr>
92     </table>
93    </form>
94
95    <var:string value="errorAlertJavaScript" const:escapeHTML="NO" />
96   </body>
97 </html>
98    </var:if>
99
100   <var:if condition="hideFrame">
101     <var:component-content/>
102   </var:if>
103 </container>