* summary.c: summary screen is now updated using ajax instead of refreshing
[citadel.git] / webcit / sysmsgs.c
index 536da8c3d41f9688b080404fd4fc804a3a46436c..b995327c724d242ff33cadabf24f4b51ef7514d0 100644 (file)
@@ -1,72 +1,58 @@
+/*
+ * $Id$
+ *
+ * Editing of various text files on the Citadel server.
+ */
 
-
-#include <ctype.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <limits.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <string.h>
-#include <pwd.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <pthread.h>
-#include <signal.h>
 #include "webcit.h"
 
 
-
-
-
-
-
-
 /*
  * display the form for editing something (room info, bio, etc)
  */
 void display_edit(char *description, char *check_cmd,
-                 char *read_cmd, char *save_cmd)
+                 char *read_cmd, char *save_cmd, int with_room_banner)
 {
        char buf[SIZ];
 
        serv_puts(check_cmd);
-       serv_gets(buf);
+       serv_getln(buf, sizeof buf);
 
        if (buf[0] != '2') {
-               display_error(&buf[4]);
+               safestrncpy(WC->ImportantMessage, &buf[4], sizeof WC->ImportantMessage);
+               display_main_menu();
                return;
        }
-       output_headers(1);
+       if (with_room_banner) {
+               output_headers(1, 1, 1, 0, 0, 0);
+       }
+       else {
+               output_headers(1, 1, 0, 0, 0, 0);
+       }
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007700><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Edit ");
-       escputs(description);
-       wprintf("</B></FONT></TD></TR></TABLE>\n");
+       svprintf("BOXTITLE", WCS_STRING, _("Edit %s"), description);
+       do_template("beginbox");
 
-       wprintf("<CENTER>Enter %s below.  Text is formatted to\n", description);
-       wprintf("the <EM>reader's</EM> screen width.  To defeat the\n");
-       wprintf("formatting, indent a line at least one space.  \n");
-       wprintf("<BR>");
+       wprintf("<div align=\"center\">");
+       wprintf(_("Enter %s below.  Text is formatted to "
+               "the reader's screen width.  To defeat the "
+               "formatting, indent a line at least one space."), description);
+       wprintf("<br />");
 
        wprintf("<FORM METHOD=\"POST\" ACTION=\"%s\">\n", save_cmd);
-       wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Save\">");
-       wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\"><BR>\n");
-       wprintf("<TEXTAREA NAME=\"msgtext\" wrap=soft ROWS=30 COLS=80 WIDTH=80>");
+       wprintf("<TEXTAREA NAME=\"msgtext\" wrap=soft "
+               "ROWS=10 COLS=80 WIDTH=80>\n");
        serv_puts(read_cmd);
-       serv_gets(buf);
+       serv_getln(buf, sizeof buf);
        if (buf[0] == '1')
                server_to_text();
-       wprintf("</TEXTAREA><P>\n");
+       wprintf("</TEXTAREA><br /><br />\n");
+       wprintf("<INPUT TYPE=\"submit\" NAME=\"save_button\" VALUE=\"%s\">", _("Save changes"));
+       wprintf("&nbsp;");
+       wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\"><br />\n", _("Cancel"));
 
-       wprintf("</FORM></CENTER>\n");
+       wprintf("</FORM></div>\n");
+       do_template("endbox");
        wDumpContent(1);
 }
 
@@ -78,16 +64,18 @@ void save_edit(char *description, char *enter_cmd, int regoto)
 {
        char buf[SIZ];
 
-       if (strcmp(bstr("sc"), "Save")) {
-               output_headers(1);
-               wprintf("Cancelled.  %s was not saved.<BR>\n", description);
-               wDumpContent(1);
+       if (strlen(bstr("save_button")) == 0) {
+               sprintf(WC->ImportantMessage,
+                       _("Cancelled.  %s was not saved."),
+                       description);
+               display_main_menu();
                return;
        }
        serv_puts(enter_cmd);
-       serv_gets(buf);
+       serv_getln(buf, sizeof buf);
        if (buf[0] != '4') {
-               display_error(&buf[4]);
+               safestrncpy(WC->ImportantMessage, &buf[4], sizeof WC->ImportantMessage);
+               display_main_menu();
                return;
        }
        text_to_server(bstr("msgtext"), 0);
@@ -96,8 +84,10 @@ void save_edit(char *description, char *enter_cmd, int regoto)
        if (regoto) {
                smart_goto(WC->wc_roomname);
        } else {
-               output_headers(1);
-               wprintf("%s has been saved.\n", description);
-               wDumpContent(1);
+               sprintf(WC->ImportantMessage,
+                       _("%s has been saved."),
+                       description);
+               display_main_menu();
+               return;
        }
 }