]> code.citadel.org Git - citadel.git/blobdiff - webcit/sysmsgs.c
* Repaired all my b0rken COLOR tags
[citadel.git] / webcit / sysmsgs.c
index 7021ad16e84d5e96e213de9f4681dae5798b2c2f..859872afd7aa8ca7da534bf38deaf5799989ba8b 100644 (file)
@@ -1,36 +1,54 @@
+
+
+#include <ctype.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
+#include <fcntl.h>
 #include <signal.h>
 #include <sys/types.h>
-#include <ctype.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"
-#include "child.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 buf[256];
+                 char *read_cmd, char *save_cmd)
+{
+       char buf[SIZ];
 
        serv_puts(check_cmd);
        serv_gets(buf);
 
-       if (buf[0]!='2') {
+       if (buf[0] != '2') {
                display_error(&buf[4]);
                return;
-               }
-
-        printf("HTTP/1.0 200 OK\n");
-       output_headers(1, "bottom");
+       }
+       output_headers(1);
 
-        wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=007700><TR><TD>");
-        wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-        wprintf("<B>Edit ");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#007700\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Edit ");
        escputs(description);
-        wprintf("</B></FONT></TD></TR></TABLE>\n");
+       wprintf("</SPAN></TD></TR></TABLE>\n");
 
        wprintf("<CENTER>Enter %s below.  Text is formatted to\n", description);
        wprintf("the <EM>reader's</EM> screen width.  To defeat the\n");
@@ -43,45 +61,42 @@ void display_edit(char *description, char *check_cmd,
        wprintf("<TEXTAREA NAME=\"msgtext\" wrap=soft ROWS=30 COLS=80 WIDTH=80>");
        serv_puts(read_cmd);
        serv_gets(buf);
-       if (buf[0] == '1') server_to_text();
+       if (buf[0] == '1')
+               server_to_text();
        wprintf("</TEXTAREA><P>\n");
 
        wprintf("</FORM></CENTER>\n");
        wDumpContent(1);
-       }
+}
 
 
 /*
  * save a screen which was displayed with display_edit()
  */
-void save_edit(char *description, char *enter_cmd, int regoto) {
-       char buf[256];
+void save_edit(char *description, char *enter_cmd, int regoto)
+{
+       char buf[SIZ];
 
-       if (strcmp(bstr("sc"),"Save")) {
-               printf("HTTP/1.0 200 OK\n");
-               output_headers(1, "bottom");
+       if (strcmp(bstr("sc"), "Save")) {
+               output_headers(1);
                wprintf("Cancelled.  %s was not saved.<BR>\n", description);
                wDumpContent(1);
                return;
-               }
-
+       }
        serv_puts(enter_cmd);
        serv_gets(buf);
-       if (buf[0]!='4') {
+       if (buf[0] != '4') {
                display_error(&buf[4]);
                return;
-               }
-
-       text_to_server(bstr("msgtext"));
+       }
+       text_to_server(bstr("msgtext"), 0);
        serv_puts("000");
 
        if (regoto) {
-               gotoroom(wc_roomname, 1);
-               }
-       else {
-               printf("HTTP/1.0 200 OK\n");
-               output_headers(1, "bottom");
+               smart_goto(WC->wc_roomname);
+       } else {
+               output_headers(1);
                wprintf("%s has been saved.\n", description);
                wDumpContent(1);
-               }
-       }       
+       }
+}