Fix auto-save for email composition form.
[platal.git] / templates / emails / send.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
0337d704 4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
18{* Foundation, Inc., *}
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
22
faefdbb7 23<h1>Envoyer un email</h1>
0337d704 24
0337d704 25<script type="text/javascript">//<![CDATA[
26 {literal}
91a14f73 27 function _selectAll(id) {
28 var list = document.getElementById(id);
29 for (i = 0 ; i < list.length ; i++) {
30 list.options[i].selected = true;
31 }
32 }
33
3360c04f 34 var sent = false;
f3fb8eda 35 function check(form)
36 {
91a14f73 37 _selectAll('to_contacts');
38 _selectAll('cc_contacts');
71ff2e11 39 if(form.sujet.value == "" && !confirm("Le sujet de l'email est vide, veux-tu continuer ?")) {
f3fb8eda 40 form.sujet.focus();
41 return false;
42 }
43 if (form.to.value == "" && form.cc.value == ""
44 && document.getElementById('to_contacts').length == 0 && document.getElementById('cc_contacts').length == 0) {
45 if (form.bcc.value == "") {
faefdbb7 46 alert("Il faut définir au moins un destinataire.");
f3fb8eda 47 return false;
48 }
71ff2e11 49 if (!confirm("Tous les destinataires sont en copie cachée, veux-tu continuer ?")) {
f3fb8eda 50 form.to.focus();
51 return false;
52 }
0337d704 53 }
3360c04f 54 sent = true;
0337d704 55 return true;
56 }
91a14f73 57
440a32c3
FB
58 function saveMessage() {
59 var form = document.forms.form_mail;
60 var toc = "";
61 var ccc = "";
62 for (var i = 0 ; i < form['to_contacts[]'].length ; ++i) {
63 toc += form['to_contacts[]'].options[i].value + ";";
64 }
65 for (var i = 0 ; i < form['cc_contacts[]'].length ; ++i) {
66 ccc += form['cc_contacts[]'].options[i].value + ";";
67 }
63c89179 68 $.xpost("emails/send",
440a32c3 69 { save: true,
30e7b416 70 token: {/literal}'{xsrf_token}'{literal},
440a32c3
FB
71 from: form.from.value,
72 to_contacts: toc,
73 cc_contacts: ccc,
74 contenu: form.contenu.value,
75 to: form.to.value,
76 sujet: form.sujet.value,
77 cc: form.cc.value,
78 bcc: form.bcc.value });
79 }
80
0938c545 81 var doAuth = true;
82 function _keepAuth() {
83 doAuth = true;
84 }
85
86 function keepAuth() {
87 if (doAuth) {
440a32c3 88 saveMessage();
0938c545 89 doAuth = false;
90 setTimeout("_keepAuth()", 10000);
91 }
92 }
93
91a14f73 94 function _move(idFrom, idTo) {
95 var from = document.getElementById(idFrom);
96 var to = document.getElementById(idTo);
97
98 var index = new Array();
99 var j = 0;
100 for (i = 0 ; i < from.length ; i++) {
101 if (from.options[i].selected) {
102 var option = document.createElement('option');
103 option.value = from.options[i].value;
104 option.text = from.options[i].text;
105 try {
106 to.add(option, null);
107 } catch(ex) {
108 to.add(option);
109 }
110 index[j++] = i;
111 }
112 }
113 for (i = index.length - 1 ; i >= 0 ; i--) {
114 from.remove(index[i]);
115 }
116 }
117
118 function addTo() {
119 _move('contacts', 'to_contacts');
120 }
121
122 function removeTo() {
123 _move('to_contacts', 'contacts');
124 }
125
126 function addCc() {
127 _move('contacts', 'cc_contacts');
128 }
129
130 function removeCc() {
131 _move('cc_contacts', 'contacts');
132 }
fdbeba4f 133
134 function updateWikiView(box) {
135 if (box.checked) {
136 document.getElementById("preview_bt").style.display = "none";
137 document.getElementById("preview").style.display = "none";
3360c04f 138 document.getElementById("preview_pv").style.display = "none";
fdbeba4f 139 } else {
140 document.getElementById("preview_bt").style.display = "";
3360c04f 141 document.getElementById("preview").style.display = "";
fdbeba4f 142 }
143 }
3360c04f 144
40279e62
SJ
145 function toggleWiki()
146 {
147 if ($('[name="wiki"]').val() == 'text') {
148 $('[name="wiki"]').val('wiki');
149 } else {
150 $('[name="wiki"]').val('text');
151 }
152 }
153
3360c04f
FB
154 $(window).unload(
155 function() {
156 if (sent) {
157 return true;
158 }
440a32c3 159 saveMessage();
3360c04f
FB
160 return true;
161 });
4171c0bf 162 $(
7a5719a2
PC
163 function() {
164 // Remove empty options in select (they were added only for HTML
165 // compatibility).
166 $('#to_contacts option[value=""]').remove();
167 $('#cc_contacts option[value=""]').remove();
168 });
7774a3e6 169
4171c0bf 170 $(function() {
7774a3e6
SJ
171 $("[name='to']").focus();
172 });
0337d704 173 {/literal}
174//]]>
175</script>
176
9fcffac6 177<p>
faefdbb7 178 <small>{icon name=information title="Envoi d'email"} Pour envoyer un email, tu peux soit le faire depuis l'interface
57a29e19 179 ci-dessous, soit utiliser <a href="Xorg/SMTPSecurise">notre serveur d'envoi SMTP</a>.</small>
9fcffac6
SJ
180</p>
181
3360c04f 182<form action="emails/send" method="post" enctype="multipart/form-data" id="form_mail" onsubmit="return check(this);">
46504fb3 183 {xsrf_token_field}
0337d704 184 <table class="bicol" cellpadding="2" cellspacing="0">
aab2ffdd 185 <tr>
0337d704 186 <th colspan="2">Destinataires</th>
187 </tr>
aab2ffdd 188 <tr>
0337d704 189 <td class="titre">de&nbsp;:</td>
190 <td>
191 <input type='hidden' name='signature' value='1' />
40279e62
SJ
192 <input type='text' name='from' size='60'
193 value="{if $smarty.request.from}{$smarty.request.from}{else}{$preferences.from_email}{/if}" />
0337d704 194 </td>
195 </tr>
aab2ffdd 196 <tr>
a7de4ef7 197 <td class="titre">à&nbsp;:</td>
0337d704 198 <td>
199 <input type='text' name='to' size='60' value="{$smarty.request.to}" />
200 </td>
201 </tr>
aab2ffdd 202 <tr>
0337d704 203 <td class="titre">copie&nbsp;:</td>
204 <td>
205 <input type='text' name='cc' size='60' value="{$smarty.request.cc}" />
206 </td>
207 </tr>
aab2ffdd 208 <tr>
a7de4ef7 209 <td class="titre">copie cachée&nbsp;:</td>
0337d704 210 <td>
211 <input type='text' name='bcc' size='60' value="{$smarty.request.bcc}" />
212 </td>
213 </tr>
91a14f73 214 <tr class="pair">
215 <td colspan="2" class="smaller">
9e92370d 216 &bull;&nbsp;Les destinataires sont simplement séparés par des virgules.<br />
faefdbb7 217 &bull;&nbsp;Pense à te mettre en copie cachée de l'email pour en avoir une trace.
0337d704 218 </td>
219 </tr>
91a14f73 220 {if $contacts|@count}
221 <tr>
222 <th colspan="2">
223 Destinataires parmi tes contacts
0337d704 224 </th>
225 </tr>
91a14f73 226 <tr>
227 <td colspan="2" style="padding: 4px">
228 <div style="float: right; width: 40%;">
229 <select id="to_contacts" name="to_contacts[]" multiple="multiple" style="width: 100%; height: 5em">
230 {foreach key=key item=contact from=$contacts}
51fb3b6f 231 {if t($smarty.request.to_contacts) && in_array($contact->hrpid,$smarty.request.to_contacts)}
a289e967 232 <option value="{$contact->hrpid}">
48e683dd 233 {$contact->full_name}
91a14f73 234 </option>
7a5719a2 235 {assign var="to_not_empty" value="true"}
91a14f73 236 {/if}
237 {/foreach}
7a5719a2
PC
238 {if !$to_not_empty}
239 {* HTML compatibility *}
240 <option value="">&nbsp;</option>
241 {/if}
242 </select>
243 {if !$to_not_empty}
244 {/if}
245 <br />
91a14f73 246 <select id="cc_contacts" name="cc_contacts[]" multiple="multiple" style="width: 100%; height: 5em">
247 {foreach key=key item=contact from=$contacts}
51fb3b6f 248 {if t($smarty.request.cc_contacts) && in_array($contact->hrpid,$smarty.request.cc_contacts)}
a289e967 249 <option value="{$contact->hrpid}">
48e683dd 250 {$contact->full_name}
91a14f73 251 </option>
7a5719a2 252 {assign var="cc_not_empty" value="true"}
91a14f73 253 {/if}
254 {/foreach}
7a5719a2
PC
255 {if !$cc_not_empty}
256 {* HTML compatibility *}
257 <option value="">&nbsp;</option>
258 {/if}
91a14f73 259 </select>
260 </div>
261 <div style="width: 19%; text-align: center; height: 8em; float: right;">
262 <div style="height: 4em">
263 Destinataires<br />
7a5719a2
PC
264 <a href="emails/send/addTo" onclick="addTo(); return false" style="text-decoration: none">&gt;&gt; &gt;&gt;</a><br />
265 <a href="emails/send/removeTo" onclick="removeTo(); return false" style="text-decoration: none">&lt;&lt; &lt;&lt;</a>
91a14f73 266 </div>
267 <div style="height: 4em">
268 En copie<br />
7a5719a2
PC
269 <a href="emails/send/addCc" onclick="addCc(); return false" style="text-decoration: none">&gt;&gt; &gt;&gt;</a><br />
270 <a href="emails/send/removeCc" onclick="removeCc(); return false" style="text-decoration: none">&lt;&lt; &lt;&lt;</a>
91a14f73 271 </div>
272 </div>
273 <div style="float: right; width: 40%">
274 <select id="contacts" name="all_contacts[]" multiple="multiple" style="height: 10em; width: 100%">
275 {foreach item=contact from=$contacts}
51fb3b6f
SJ
276 {if !(isset($smarty.request.to_contacts|smarty:nodefaults) && isset($smarty.request.cc_contacts|smarty:nodefaults)) ||
277 (!in_array($contact->hrpid,$smarty.request.to_contacts) && !in_array($contact->hrpid,$smarty.request.cc_contacts))}
a289e967 278 <option value="{$contact->hrpid}">
48e683dd 279 {$contact->full_name}
91a14f73 280 </option>
281 {/if}
282 {/foreach}
283 </select>
284 </div>
91a14f73 285 </td>
286 </tr>
287 {/if}
288 </table>
91a14f73 289 <fieldset>
290 <legend>Sujet&nbsp;:&nbsp;<input type='text' name='sujet' size='60' value="{$smarty.request.sujet}" /></legend>
5b21237d 291 <div class="center">
72b2f8bb 292 Tu peux utiliser des <a href="wiki_help" class="popup3">{icon name=information title="Syntaxe wiki"} marqueurs wiki</a> pour formatter ton texte.<br />
40279e62
SJ
293 <small><label>
294 <input type="hidden" name="wiki" value="{$smarty.request.wiki|default:$preferences.from_format}" />
295 <input type="checkbox" {if $smarty.request.wiki eq "text" || (!$smarty.request.wiki && $preferences.from_format eq "text")}checked="checked"{/if}
296 onchange="updateWikiView(this); toggleWiki();" />
297 coche cette case pour envoyer l'email en texte brut, sans formattage
298 </label></small>
5b21237d 299 </div>
3360c04f
FB
300 <div id="preview">
301 <div id="preview_pv" style="display: none">
faefdbb7 302 <strong>Aperçu de l'email&nbsp;:</strong>
3360c04f
FB
303 <div id="mail_preview">
304 </div>
305 <div class="center">
306 <input type="submit" name="submit" value="Envoyer" />
307 </div>
fdbeba4f 308 </div>
309 <div class="center">
3360c04f
FB
310 <input type="submit" name="preview" id="preview_bt_top" value="Aperçu"
311 onclick="previewWiki('mail_text', 'mail_preview', true, 'preview_pv'); return false;" />
fdbeba4f 312 </div>
313 </div>
0938c545 314 <textarea name='contenu' rows="30" cols="75" id="mail_text" onkeyup="keepAuth()">
0337d704 315{$smarty.request.contenu}
316{if !$smarty.request.contenu}
317--
48e683dd 318{$smarty.session.user->full_name}
0337d704 319{/if}</textarea>
da419622 320 <script type="text/javascript">//<![CDATA[
321 {literal}
322 function removeAttachments()
323 {
b0e935d6
FB
324 $.xget('email/send');
325 $('#att_already').hide();
326 $('#att_form').show();
da419622 327 }
328 {/literal}
329 //]]></script>
330 {if $uploaded_f|@count}
331 <div id="att_already">
332 <strong>{icon name=email_attach}&nbsp;Pièce jointe&nbsp;:&nbsp;</strong>
333 {$uploaded_f[0]}
334 <a href="javascript:removeAttachments()">
5124d583 335 {icon name=cross alt="Supprimer" title="Supprimer la pièce jointe"}
da419622 336 </a>
337 </div>
338 {/if}
339 <div id="att_form" {if $uploaded_f|@count neq 0}style="display: none"{/if}>
f3fb8eda 340 <strong>{icon name=email_attach}&nbsp;Ajouter une pièce jointe (max. {$maxsize})&nbsp;:&nbsp;</strong>
91a14f73 341 <input type="file" name="uploaded" />
342 </div>
343 <div class="center">
3360c04f
FB
344 <input type="submit" name="preview" id="preview_bt" value="Aperçu"
345 onclick="previewWiki('mail_text', 'mail_preview', true, 'preview_pv'); return false;" />
91a14f73 346 <input type="submit" name="submit" value="Envoyer" />
347 </div>
348 </fieldset>
0337d704 349</form>
350
351
a7de4ef7 352{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}