]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/view_mail.js
edf6c7963a87d57785b67805bbade3a311ce4d29
[citadel.git] / webcit-ng / static / js / view_mail.js
1 // This module handles the view for "mailbox" rooms.
2 //
3 // Copyright (c) 2016-2023 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or
6 // disclosure are subject to the GNU General Public License v3.
7
8
9 var displayed_message = 0;                                                      // ID of message currently being displayed
10 var RefreshMailboxInterval;                                                     // We store our refresh timer here
11 var highest_mailnum;                                                            // This is used to detect newly arrived mail
12 var newmail_notify = {
13         NO  : 0,                                                                // do not perform new mail notifications
14         YES : 1                                                                 // yes, perform new mail notifications
15 };
16
17
18 // This is the async back end for mail_delete_selected()
19 mail_delete_func = async(table, row) => {
20         let m = parseInt(row["id"].substring(12));                              // derive msgnum from row id
21
22         if (is_trash_folder) {
23                 response = await fetch(
24                         "/ctdl/r/" + escapeHTMLURI(current_room) + "/" + m,
25                         {
26                                 method: "DELETE"                                // If this is the Trash folder, delete permanently
27                         },
28                 );
29         }
30         else {
31                 response = await fetch(
32                         "/ctdl/r/" + escapeHTMLURI(current_room) + "/" + m,
33                         {
34                                 method: "MOVE",                                 // Otherwise, move to the Trash folder
35                                 headers: { "Destination" : "/ctdl/r/_TRASH_" }
36                         },
37                 );
38         }
39
40         if (response.ok) {                              // If the server accepted the delete, blank out the message div
41                 table.deleteRow(row.rowIndex);
42                 if (m == displayed_message) {
43                         document.getElementById("ctdl-mailbox-reading-pane").innerHTML = "";
44                         displayed_message = 0;
45                 }
46         }
47 }
48
49
50 // Delete the selected messages (can be activated by mouse click or keypress)
51 function mail_delete_selected() {
52         let table = document.getElementById("ctdl-onscreen-mailbox");
53         let i, row;
54         for (i=0; row=table.rows[i]; ++i) {
55                 if (row.classList.contains("ctdl-mail-selected")) {
56                         mail_delete_func(table, row);
57                 }
58         }
59 }
60
61
62 // Handler function for keypresses detected while the mail view is displayed.  Mainly for deleting messages.
63 function mail_keypress(event) {
64
65         // If the "ctdl-mailbox-pane" no longer exists, the user has navigated to a different part of the site,
66         // so cancel the event listener.
67         try {
68                 document.getElementById("ctdl-mailbox-pane").innerHTML;
69         }
70         catch {
71                 document.removeEventListener("keydown", mail_keypress);
72                 return;
73         }
74
75         const key = event.key.toLowerCase();
76         if (key == "delete") {
77                 mail_delete_selected();
78         }
79
80 }
81
82
83 // Handler function for dragging email messages to other folders
84 function mail_dragstart(event) {
85         let i;
86         let count = 0;
87         let table = document.getElementById("ctdl-onscreen-mailbox");
88         let messages_being_dragged = [] ;
89
90         if (event.target.classList.contains("ctdl-mail-selected")) {
91                 // The row being dragged IS selected.  See if any OTHER rows are selected, and they will come along for the ride.
92                 for (i=1; row=table.rows[i]; ++i) {
93                         if (row.classList.contains("ctdl-mail-selected")) {
94                                 count = count + 1;
95                                 messages_being_dragged.push(row.id);    // Tell the clipboard what's being moved.
96                         }
97                 }
98         }
99         else {
100                 // The row being dragged is NOT selected.  It will be dragged on its own, ignoring the selected rows.
101                 count = 1;
102                 messages_being_dragged.push(event.target.id);           // Tell the clipboard what's being moved.
103         }
104
105         // Set the custom drag image to an envelope + number of messages being dragged
106         d = document.getElementById("ctdl_draggo");
107         d.innerHTML = "<font size='+2'><i class='fa fa-envelope' style='color: red'></i> " + count + "</font>"
108         event.dataTransfer.setDragImage(d, 0, 0);
109         event.dataTransfer.setData("text", messages_being_dragged);
110 }
111
112
113 // Render reply address for a message (FIXME figure out how to deal with "reply-to:")
114 function reply_addr(msg) {
115         //if (msg.locl) {
116                 //return([msg.from]);
117         //}
118         //else {
119                 return([msg.from + " &lt;" + msg.rfca + "&gt;"]);
120         //}
121 }
122
123
124 // Render the To: recipients for a reply-all operation
125 function replyall_to(msg) {
126         return([...reply_addr(msg), ...msg.rcpt]);
127 }
128
129
130 // Render a message into the mailbox view
131 // (We want the message number and the message itself because we need to keep the msgnum for reply purposes)
132 function mail_render_one(msgnum, msg, target_div, include_controls) {
133         let div = "";
134         try {
135                 outmsg =
136                   "<div class=\"ctdl-mmsg-wrapper\">"                           // begin message wrapper
137                 ;
138
139                 if (include_controls) {                                         // omit controls if this is a pull quote
140                         outmsg +=
141                           render_userpic(msg.from)                              // user avatar
142                         + "<div class=\"ctdl-mmsg-content\">"                   // begin content
143                         + "<div class=\"ctdl-msg-header\">"                     // begin header
144                         + "<span class=\"ctdl-msg-header-info\">"               // begin header info on left side
145                         + render_msg_author(msg, views.VIEW_MAILBOX)
146                         + "<span class=\"ctdl-msgdate\">"
147                         + string_timestamp(msg.time,0)
148                         + "</span>"                                             // end msgdate
149                         + "</span>"                                             // end header info on left side
150                         + "<span class=\"ctdl-msg-header-buttons\">"            // begin buttons on right side
151                 
152                         + "<span class=\"ctdl-msg-button\">"                    // Reply (mail is always Quoted)
153                         + "<a href=\"javascript:mail_compose(true,'"+msg.wefw+"','"+msgnum+"', reply_addr(msg), [], 'Re: '+msg.subj);\">"
154                         + "<i class=\"fa fa-reply\"></i> " 
155                         + _("Reply")
156                         + "</a></span>"
157                 
158                         + "<span class=\"ctdl-msg-button\">"                    // Reply-All (mail is always Quoted)
159                         + "<a href=\"javascript:mail_compose(true,'"+msg.wefw+"','"+msgnum+"', replyall_to(msg), msg.cccc, 'Re: '+msg.subj);\">"
160                         + "<i class=\"fa fa-reply-all\"></i> " 
161                         + _("ReplyAll")
162                         + "</a></span>";
163                 
164                         if (can_delete_messages) {
165                                 outmsg +=
166                                 "<span class=\"ctdl-msg-button\">"
167                                 + "<a href=\"javascript:forum_delete_message('"+div+"','"+msg.msgnum+"');\">"
168                                 + "<i class=\"fa fa-trash\"></i> " 
169                                 + _("Delete")
170                                 + "</a></span>";
171                         }
172                 
173                         outmsg +=
174                           "</span>";                                            // end buttons on right side
175
176                         // Display the To: recipients, if any are present
177                         if (msg.rcpt) {
178                                 outmsg += "<br><span>" + _("To:") + " ";
179                                 for (var r=0; r<msg.rcpt.length; ++r) {
180                                         if (r != 0) {
181                                                 outmsg += ", ";
182                                         }
183                                         outmsg += escapeHTML(msg.rcpt[r]);
184                                 }
185                                 outmsg += "</span>";
186                         }
187
188                         // Display the Cc: recipients, if any are present
189                         if (msg.cccc) {
190                                 outmsg += "<br><span>" + _("Cc:") + " ";
191                                 for (var r=0; r<msg.cccc.length; ++r) {
192                                         if (r != 0) {
193                                                 outmsg += ", ";
194                                         }
195                                         outmsg += escapeHTML(msg.cccc[r]);
196                                 }
197                                 outmsg += "</span>";
198                         }
199
200                         // Display a subject line, but only if the message has a subject (internal Citadel messages often don't)
201                         if (msg.subj) {
202                                 outmsg +=
203                                 "<br><span class=\"ctdl-msgsubject\">" + msg.subj + "</span>";
204                         }
205
206                         outmsg +=
207                           "</div>";                                             // end header
208                 }
209
210                 outmsg +=
211                   "<div class=\"ctdl-msg-body\" id=\"" + div + "_body\">"       // begin body
212                 + msg.text
213                 + "</div>"                                                      // end body
214                 + "</div>"                                                      // end content
215                 + "</div>"                                                      // end wrapper
216                 ;
217         }
218         catch(err) {
219                 outmsg = "<div class=\"ctdl-mmsg-wrapper\">" + err.message + "</div>";
220         }
221
222         target_div.innerHTML = outmsg;
223 }
224
225
226 // display an individual message (note: this wants an actual div object, not a string containing the name of a div)
227 function mail_display_message(msgnum, target_div, include_controls) {
228         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/" + msgnum + "/json";
229         mail_fetch_msg = async() => {
230                 response = await fetch(url);
231                 msg = await(response.json());
232                 if (response.ok) {
233                         mail_render_one(msgnum, msg, target_div, include_controls);
234                 }
235         }
236         mail_fetch_msg();
237 }
238
239
240 // A message has been selected...
241 function click_message(event, msgnum) {
242         var table = document.getElementById("ctdl-onscreen-mailbox");
243         var i, m, row;
244
245         // ctrl + click = toggle an individual message without changing existing selection
246         if (event.ctrlKey) {
247                 document.getElementById("ctdl-msgsum-" + msgnum).classList.toggle("ctdl-mail-selected");
248         }
249
250         // shift + click = select a range of messages (start with row 1 because row 0 is the header)
251         else if (event.shiftKey) {
252                 for (i=1; row=table.rows[i]; ++i) {
253                         m = parseInt(row["id"].substring(12));                          // derive msgnum from row id
254                         if (
255                                 ((msgnum >= displayed_message) && (m >= displayed_message) && (m <= msgnum))
256                                 || ((msgnum <= displayed_message) && (m <= displayed_message) && (m >= msgnum))
257                         ) {
258                                 row.classList.add("ctdl-mail-selected");
259                         }
260                         else {
261                                 row.classList.remove("ctdl-mail-selected");
262                         }
263                 }
264         }
265
266         // click + no modifiers = select one message and unselect all others (start with row 1 because row 0 is the header)
267         else {
268                 for (i=1; row=table.rows[i]; ++i) {
269                         if (row["id"] == "ctdl-msgsum-" + msgnum) {
270                                 row.classList.add("ctdl-mail-selected");
271                         }
272                         else {
273                                 row.classList.remove("ctdl-mail-selected");
274                         }
275                 }
276         }
277
278         // display the message if it isn't already displayed
279         if (displayed_message != msgnum) {
280                 displayed_message = msgnum;
281                 mail_display_message(msgnum, document.getElementById("ctdl-mailbox-reading-pane"), 1);
282         }
283 }
284
285
286 // render one row in the mailbox table (this could be called from one of several places)
287 function mail_render_row(msg, is_selected) {
288         let row = "<tr "
289                 + "id=\"ctdl-msgsum-" + msg["msgnum"] + "\" "
290                 + (is_selected ? "class=\"ctdl-mail-selected\" " : "")
291                 + "onClick=\"click_message(event," + msg["msgnum"] + ");\""
292                 + "onselectstart=\"return false;\" "
293                 + "draggable=\"true\" "
294                 + "ondragstart=\"mail_dragstart(event)\" "
295                 + ">"
296                 + "<td class=\"ctdl-mail-subject\">" + msg["subject"] + "</td>"
297                 + "<td class=\"ctdl-mail-sender\">" + msg["author"] + "</td>"
298                 + "<td class=\"ctdl-mail-date\">" + string_timestamp(msg["time"],1) + "</td>"
299                 + "<td class=\"ctdl-mail-msgnum\">" + msg["msgnum"] + "</td>"
300                 + "</tr>";
301         return(row);
302 }
303
304
305 // RENDERER FOR THIS VIEW
306 function view_render_mail() {
307         // Put the "enter new message" button into the topbar
308         document.getElementById("ctdl-newmsg-button").innerHTML = "<i class=\"fa fa-edit\"></i>" + _("Write mail");
309         document.getElementById("ctdl-newmsg-button").style.display = "block";
310
311         // Put the "delete message(s)" button into the topbar
312         let d = document.getElementById("ctdl-delete-button");
313         d.innerHTML = "<i class=\"fa fa-trash\"></i>" + _("Delete");
314         d.style.display = "block";
315         //d.addEventListener("click", mail_delete_selected);
316
317         document.getElementById("ctdl-main").innerHTML
318                 = "<div id=\"ctdl-mailbox-grid-container\" class=\"ctdl-mailbox-grid-container\">"
319                 + "<div id=\"ctdl-mailbox-pane\" class=\"ctdl-mailbox-pane\"></div>"
320                 + "<div id=\"ctdl-mailbox-reading-pane\" class=\"ctdl-mailbox-reading-pane\"></div>"
321                 + "</div>"
322         ;
323
324         highest_mailnum = 0;                                    // Keep track of highest message number to track newly arrived messages
325         render_mailbox_display(newmail_notify.NO);
326         try {                                                   // if this was already set up, clear it so there aren't multiple
327                 clearInterval(RefreshMailboxInterval);
328         }
329         catch {
330         }
331         RefreshMailboxInterval = setInterval(refresh_mail_display, 10000);
332 }
333
334
335 // Refresh the mailbox, either for the first time or whenever needed
336 function refresh_mail_display() {
337         // If the "ctdl-mailbox-pane" no longer exists, the user has navigated to a different part of the site,
338         // so cancel the refresh.
339         try {
340                 document.getElementById("ctdl-mailbox-pane").innerHTML;
341         }
342         catch {
343                 clearInterval(RefreshMailboxInterval);
344                 return;
345         }
346
347         // Ask the server if the room has been written to since our last look at it.
348         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/stat";
349         fetch_stat = async() => {
350                 response = await fetch(url);
351                 stat = await(response.json());
352                 if (stat.room_mtime > room_mtime) {                     // FIXME commented out to force refreshes
353                         room_mtime = stat.room_mtime;
354                         render_mailbox_display(newmail_notify.YES);
355                 }
356         }
357         fetch_stat();
358 }
359
360
361 // This is where the rendering of the message list in the mailbox view is performed.
362 // Set notify to newmail_notify.NO or newmail_notify.YES depending on whether we are interested in the arrival of new messages.
363 function render_mailbox_display(notify) {
364
365         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/mailbox";
366         fetch_mailbox = async() => {
367                 response = await fetch(url);
368                 msgs = await(response.json());
369                 if (response.ok) {
370                         var previously_selected = [];
371                         var oldtable = document.getElementById("ctdl-onscreen-mailbox");
372                         var i, row;
373
374                         // If one or more messages was already selected, remember them so we can re-select them
375                         if ( (displayed_message > 0) && (oldtable) ) {
376                                 for (i=0; row=oldtable.rows[i]; ++i) {
377                                         if (row.classList.contains("ctdl-mail-selected")) {
378                                                 previously_selected.push(parseInt(row["id"].substring(12)));
379                                         }
380                                 }
381                         }
382
383                         // begin rendering the mailbox table
384                         box =   "<table id=\"ctdl-onscreen-mailbox\" class=\"ctdl-mailbox-table\" width=100%><tr>"
385                                 + "<th>" + _("Subject") + "</th>"
386                                 + "<th>" + _("Sender") + "</th>"
387                                 + "<th>" + _("Date") + "</th>"
388                                 + "<th>#</th>"
389                                 + "</tr>";
390
391                         for (let i=0; i<msgs.length; ++i) {
392                                 let m = parseInt(msgs[i].msgnum);
393                                 let s = (previously_selected.includes(m));
394                                 box += mail_render_row(msgs[i], s);
395                                 if (m > highest_mailnum) {
396                                         highest_mailnum = m;
397                                 }
398                         }
399
400                         box +=  "</table>";
401                         document.getElementById("ctdl-mailbox-pane").innerHTML = box;
402                         document.addEventListener("keydown", mail_keypress);
403                 }
404         }
405         fetch_mailbox();
406 }
407
408
409 // Compose a new mail message (called by the Reply button here, or by the dispatcher in views.js)
410 function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subject) {
411         // m_to will be an array of zero or more recipients for the To: field.  Convert it to a string.
412         if (m_to) {
413                 m_to = Array.from(new Set(m_to));       // remove dupes
414                 m_to_str = "";
415                 for (i=0; i<m_to.length; ++i) {
416                         if (i > 0) {
417                                 m_to_str += ", ";
418                         }
419                         m_to_str += m_to[i].replaceAll("<", "&lt;").replaceAll(">", "&gt;");
420                 }
421         }
422         else {
423                 m_to_str = "";
424         }
425
426         // m_to will be an array of zero or more recipients for the Cc: field.  Convert it to a string.
427         if (m_cc) {
428                 m_cc = Array.from(new Set(m_cc));       // remove dupes
429                 m_cc_str = "";
430                 for (i=0; i<m_cc.length; ++i) {
431                         if (i > 0) {
432                                 m_cc_str += ", ";
433                         }
434                         m_cc_str += m_cc[i].replaceAll("<", "&lt;").replaceAll(">", "&gt;");
435                 }
436         }
437         else {
438                 m_cc_str = "";
439         }
440
441         quoted_div_name = randomString();
442
443         // Make the "Write mail" button disappear.  We're already there!
444         document.getElementById("ctdl-newmsg-button").style.display = "none";
445
446         // is_quoted    true or false depending on whether the user selected "reply quoted" (is this appropriate for mail?)
447         // references   list of references, be sure to use this in a reply
448         // msgid        if a reply, the msgid of the most recent message in the chain, the one to which we are replying
449
450         // Now display the screen.
451         compose_screen =
452                 // Hidden values that we are storing right here in the document tree for later
453                   "<input id=\"ctdl_mc_is_quoted\" style=\"display:none\" value=\"" + is_quoted + "\"></input>"
454                 + "<input id=\"ctdl_mc_references\" style=\"display:none\" value=\"" + references + "\"></input>"
455
456                 // Header fields, the composition window, and the button bar are arranged using a Grid layout.
457                 + "<div id=\"ctdl-compose-mail\" class=\"ctdl-compose-mail\">"
458
459                 // Visible To: field, plus a box to make the CC/BCC lines appear
460                 + "<div class=\"ctdl-compose-to-label\">" + _("To:") + "</div>"
461                 + "<div class=\"ctdl-compose-to-line\">"
462                 + "<div class=\"ctdl-compose-to-field\" id=\"ctdl-compose-to-field\" contenteditable=\"true\">" + m_to_str + "</div>"
463                 + "<div class=\"ctdl-cc-bcc-buttons ctdl-msg-button\" id=\"ctdl-cc-bcc-buttons\" "
464                 + "onClick=\"make_cc_bcc_visible()\">"
465                 + _("CC:") + "/" + _("BCC:") + "</div>"
466                 + "</div>"
467
468                 // CC/BCC
469                 + "<div class=\"ctdl-compose-cc-label\" id=\"ctdl-compose-cc-label\">" + _("CC:") + "</div>"
470                 + "<div class=\"ctdl-compose-cc-field\" id=\"ctdl-compose-cc-field\" contenteditable=\"true\">" + m_cc_str + "</div>"
471                 + "<div class=\"ctdl-compose-bcc-label\" id=\"ctdl-compose-bcc-label\">" + _("BCC:") + "</div>"
472                 + "<div class=\"ctdl-compose-bcc-field\" id=\"ctdl-compose-bcc-field\" contenteditable=\"true\"></div>"
473
474                 // Visible subject field
475                 + "<div class=\"ctdl-compose-subject-label\">" + _("Subject:") + "</div>"
476                 + "<div class=\"ctdl-compose-subject-field\" id=\"ctdl-compose-subject-field\" contenteditable=\"true\">" + m_subject + "</div>"
477
478                 // Message composition box
479                 + "<div class=\"ctdl-compose-message-box\" id=\"ctdl-editor-body\" contenteditable=\"true\">"
480         ;
481
482         if (is_quoted) {
483                 compose_screen += "<br><br><blockquote><div id=\"" + quoted_div_name + "\"></div></blockquote>";
484         }
485
486         compose_screen +=
487                   "</div>"
488
489                 // The button bar is a Grid element, and is also a Flexbox container.
490                 + "<div class=\"ctdl-compose-toolbar\">"
491                 + "<span class=\"ctdl-msg-button\" onclick=\"mail_send_message()\"><i class=\"fa fa-paper-plane\" style=\"color:green\"></i> " + _("Send message") + "</span>"
492                 + "<span class=\"ctdl-msg-button\">" + _("Save to Drafts") + "</span>"
493                 + "<span class=\"ctdl-msg-button\">" + _("Attachments:") + " 0" + "</span>"
494                 + "<span class=\"ctdl-msg-button\">" + _("Contacts") + "</span>"
495                 + "<span class=\"ctdl-msg-button\" onClick=\"gotoroom(current_room)\"><i class=\"fa fa-trash\" style=\"color:red\"></i> " + _("Cancel") + "</span>"
496                 + "</div>"
497         ;
498
499         document.getElementById("ctdl-main").innerHTML = compose_screen;
500         mail_display_message(quoted_msgnum, document.getElementById(quoted_div_name), 0);
501         if (m_cc) {
502                 document.getElementById("ctdl-compose-cc-label").style.display = "block";
503                 document.getElementById("ctdl-compose-cc-field").style.display = "block";
504         }
505 }
506
507
508 // Called when the user clicks the button to make the hidden "CC" and "BCC" lines appear.
509 // It is also called automatically during a Reply when CC is pre-populated.
510 function make_cc_bcc_visible() {
511         document.getElementById("ctdl-cc-bcc-buttons").style.display = "none";
512         document.getElementById("ctdl-compose-bcc-label").style.display = "block";
513         document.getElementById("ctdl-compose-bcc-field").style.display = "block";
514 }
515
516
517 // Helper function for mail_send_messages() to extract and decode metadata values.
518 function msm_field(element_name, separator) {
519         let s1 = document.getElementById(element_name).innerHTML;
520         let s2 = s1.replaceAll("|",separator);          // Replace "|" with "!" because "|" is a field separator in Citadel
521         let s3 = decodeURI(s2);
522         let s4 = document.createElement("textarea");    // This One Weird Trick Unescapes All HTML Entities
523         s4.innerHTML = s3;
524         let s5 = s4.value;
525         return(s5);
526 }
527
528
529 // Save the posted message to the server
530 function mail_send_message() {
531
532         document.body.style.cursor = "wait";
533         let url = "/ctdl/r/" + escapeHTMLURI(current_room)
534                 + "/dummy_name_for_new_mail"
535                 + "?wefw="      + msm_field("ctdl_mc_references", "!")                          // references (if present)
536                 + "&subj="      + msm_field("ctdl-compose-subject-field", " ")                  // subject (if present)
537                 + "&mailto="    + msm_field("ctdl-compose-to-field", ",")                       // To: (required)
538                 + "&mailcc="    + msm_field("ctdl-compose-cc-field", ",")                       // Cc: (if present)
539                 + "&mailbcc="   + msm_field("ctdl-compose-bcc-field", ",")                      // Bcc: (if present)
540         ;
541         boundary = randomString();
542         body_text =
543                 "--" + boundary + "\r\n"
544                 + "Content-type: text/html\r\n"
545                 + "Content-transfer-encoding: quoted-printable\r\n"
546                 + "\r\n"
547                 + quoted_printable_encode(
548                         "<html><body>" + document.getElementById("ctdl-editor-body").innerHTML + "</body></html>"
549                 ) + "\r\n"
550                 + "--" + boundary + "--\r\n"
551         ;
552
553         var request = new XMLHttpRequest();
554         request.open("PUT", url, true);
555         request.setRequestHeader("Content-type", "multipart/mixed; boundary=\"" + boundary + "\"");
556         request.onreadystatechange = function() {
557                 if (request.readyState == 4) {
558                         document.body.style.cursor = "default";
559                         if (Math.trunc(request.status / 100) == 2) {
560                                 headers = request.getAllResponseHeaders().split("\n");
561                                 for (var i in headers) {
562                                         if (headers[i].startsWith("etag: ")) {
563                                                 new_msg_num = headers[i].split(" ")[1];
564                                         }
565                                 }
566
567                                 // After saving the message, go back to the mailbox view.
568                                 gotoroom(current_room);
569
570                         }
571                         else {
572                                 error_message = request.responseText;
573                                 if (error_message.length == 0) {
574                                         error_message = _("An error has occurred.");
575                                 }
576                                 alert(error_message);                                           // editor remains open
577                         }
578                 }
579         };
580         request.send(body_text);
581 }