]> err.no Git - scalable-opengroupware.org/blob - UI/Templates/MailerUI/UIxMailEditor.wox
added default to disable etag caching in mail objects
[scalable-opengroupware.org] / UI / Templates / MailerUI / UIxMailEditor.wox
1 <?xml version='1.0' standalone='yes'?>
2 <var:component 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:uix="OGo:uix"
6                xmlns:rsrc="OGo:url"
7                xmlns:label="OGo:label"
8                className="UIxMailPanelFrame"
9                title="panelTitle"
10 >
11   <script rsrc:src="layout2or3_xlib.js" > <!-- space required --></script>
12   <div id="compose_panel">
13     <var:if condition="showInternetMarker">
14       <div id="compose_internetmarker">
15         <var:string
16             label:value="This mail is being sent from an unsecure network!" />
17       </div>
18     </var:if>
19     <table border="0" width="100%" id="compose_table">
20       <tr>
21         <td id="compose_leftside" var:style="initialLeftsideStyle">
22           <div id="compose_toselection">
23             <var:component className="UIxMailToSelection"
24                            to="to"
25                            cc="cc"
26                            bcc="bcc"
27             />
28           </div>
29           <!-- moved below to selection to make it look better -->
30           <div id="compose_fromline">
31             <table border="0" width="100%">
32               <tr>
33                 <td class="compose_label" width="20%">
34                   <var:string label:value="From" />:
35                 </td>
36                 <td width="80%">
37                   <var:popup const:name="from" list="fromEMails" item="item"
38                              selection="from"
39                              const:style="width: 100%; font-size: 8pt;"
40                     />
41                 </td>
42               </tr>
43             </table>
44           </div>
45     
46           <div id="compose_subject">
47             <table border="0" width="100%">
48               <tr>
49                 <td class="compose_label" width="20%">
50                   <var:string label:value="Subject" />:
51                 </td>
52                 <td width="80%"><input name="subject"
53                                        id="compose_subject_input"
54                                        type="text"
55                                        var:value="subject"
56                                 /></td>
57               </tr>
58             </table>
59           </div>
60         </td>
61         <td id="compose_rightside" var:style="initialRightsideStyle">
62           <div id="compose_attachments">
63             <div id="compose_attachments_header">  
64               <span class="compose_label"
65               ><var:string label:value="Attachments" />:</span>
66                <!--<a href="#"
67                   onclick="hideInlineAttachmentList(this);"
68                ><var:string label:value="close" /></a>-->
69             </div>
70             <div id="compose_attachments_list"
71                  onclick="clickedEditorAttach(this);"
72             >
73               <var:foreach list="attachmentNames" item="attachmentName">
74                 <var:string value="attachmentName" /><br />
75               </var:foreach>
76             </div>
77           </div>
78         </td>
79       </tr>
80     </table>
81     <!-- separator line -->
82     <div id="compose_text">
83       <textarea name="content" var:value="text" />
84     </div>
85
86     <!-- img rsrc:src="tbird_073_compose.png" alt="screenshot" / -->
87   </div>
88 </var:component>