* Added "edit room info file"
authorArt Cancro <ajc@citadel.org>
Mon, 28 Dec 1998 05:26:32 +0000 (05:26 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 28 Dec 1998 05:26:32 +0000 (05:26 +0000)
        * Added "edit bio"

webcit/ChangeLog
webcit/Makefile.in
webcit/child.h
webcit/serv_func.c
webcit/sysmsgs.c [new file with mode: 0644]
webcit/webcit.c

index a8f697facc53eb3d19f2bf6bedaf23e4946da94b..8e6ad9385920b8cb12c4563ea51742f421c8b410 100644 (file)
@@ -1,3 +1,7 @@
+Mon Dec 28 00:26:01 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Added "edit room info file"
+       * Added "edit bio"
+
 Sat Dec 26 23:12:47 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Changed the "auto read new" functionality from a meta refresh tag
          to an "onload" directive (the former was causing graphics problems)
index 83d59bc63afb40c9af157405efd95e16d28400ae..a9ecdd2fa31cde9f7db705792f3798cc4b7f761f 100644 (file)
@@ -35,9 +35,9 @@ snprintf.o: snprintf.c
 
 
 webcit: webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o \
-       roomops.o tools.o messages.o userlist.o paging.o
+       roomops.o tools.o messages.o userlist.o paging.o sysmsgs.o
        $(CC) webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o \
-       tools.o roomops.o messages.o userlist.o paging.o -o webcit
+       tools.o roomops.o messages.o userlist.o paging.o sysmsgs.o -o webcit
 
 webcit.o: webcit.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c webcit.c
@@ -72,6 +72,9 @@ messages.o: messages.c webcit.h child.h
 paging.o: paging.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c paging.c
 
+sysmsgs.o: sysmsgs.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c sysmsgs.c
+
 Makefile: $(srcdir)/Makefile.in config.status
        CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
 
index 8a27b75085bf01e85fc321ec8b4e24344fdb4cd3..62d89325342a87dc238666d713a165086f6e3fdf 100644 (file)
@@ -63,3 +63,8 @@ void display_entroom(void);
 void entroom(void);
 void display_editroom(void);
 void editroom(void);
+void server_to_text(void);
+void save_edit(char *description, char *enter_cmd, int regoto);
+void display_edit(char *description, char *check_cmd,
+                char *read_cmd, char *save_cmd);
+void gotoroom(char *gname, int display_name);
index 087a7bc78c232a71f19bd0ef3341d00df49d8fd4..fd23284f4d7722308d2b50239b3fa592caf9c550 100644 (file)
@@ -152,3 +152,29 @@ void text_to_server(char *ptr) {
        serv_puts(buf);
        }
 
+
+
+
+
+
+/*
+ * translate server message output to text
+ * (used for editing room info files and such)
+ */
+void server_to_text() {
+       char buf[256]; 
+
+       int count = 0;
+
+       while (serv_gets(buf), strcmp(buf, "000") ) {
+               if ( (buf[0] == 32) && (count > 0) ) {
+                       wprintf("\n");
+                       }
+               wprintf("%s", buf);
+               ++count;
+               }
+       }
+
+
+
+
diff --git a/webcit/sysmsgs.c b/webcit/sysmsgs.c
new file mode 100644 (file)
index 0000000..739b53f
--- /dev/null
@@ -0,0 +1,87 @@
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <ctype.h>
+#include <string.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];
+
+       serv_puts(check_cmd);
+       serv_gets(buf);
+
+       if (buf[0]!='2') {
+               display_error(&buf[4]);
+               return;
+               }
+
+        printf("HTTP/1.0 200 OK\n");
+       output_headers(1);
+
+        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");
+
+       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("<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>");
+       serv_puts(read_cmd);
+       serv_gets(buf);
+       if (buf[0] == '1') server_to_text();
+       wprintf("</TEXTAREA><P>\n");
+
+       wprintf("</FORM></CENTER></BODY></HTML>\n");
+       wDumpContent();
+       }
+
+
+/*
+ * save a screen which was displayed with display_edit()
+ */
+void save_edit(char *description, char *enter_cmd, int regoto) {
+       char buf[256];
+
+       if (strcmp(bstr("sc"),"Save")) {
+               printf("HTTP/1.0 200 OK\n");
+               output_headers(1);
+               wprintf("Cancelled.  %s was not saved.<BR>\n", description);
+               wDumpContent();
+               return;
+               }
+
+       serv_puts(enter_cmd);
+       serv_gets(buf);
+       if (buf[0]!='4') {
+               display_error(&buf[4]);
+               return;
+               }
+
+       text_to_server(bstr("msgtext"));
+       serv_puts("000");
+
+       if (regoto) {
+               gotoroom(wc_roomname, 1);
+               }
+       else {
+               printf("HTTP/1.0 200 OK\n");
+               output_headers(1);
+               wprintf("%s has been saved.</BODY></HTML>\n", description);
+               wDumpContent();
+               }
+       }       
index 2fa13e76ca56d5864503e3b291e80ac8651ac6a2..043094451c4dcfa033d2cc0ad7be8bcc4f8d0425 100644 (file)
@@ -724,6 +724,23 @@ fclose(fp);
                editroom();
                }
 
+       else if (!strcasecmp(action, "display_editinfo")) {
+               display_edit("Room info", "EINF 0", "RINF", "/editinfo");
+               }
+
+       else if (!strcasecmp(action, "editinfo")) {
+               save_edit("Room info", "EINF 1", 1);
+               }
+
+       else if (!strcasecmp(action, "display_editbio")) {
+               sprintf(buf, "RBIO %s", wc_username);
+               display_edit("Your bio", "NOOP", buf, "editbio");
+               }
+
+       else if (!strcasecmp(action, "editbio")) {
+               save_edit("Your bio", "EBIO", 0);
+               }
+
        /* When all else fails... */
        else {
                printf("HTTP/1.0 200 OK\n");