X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Froomops.c;h=685b32c0807387a7ac3bd2e7537ff8dca8cdecc5;hb=8e165dd308679f195af8614d62dbdb4e43238495;hp=54948e49e221dea1d9f0b9d23dc6ea6111b2be59;hpb=ba0dee1349abb4ff68cd843c9b8733e38e7dd5d0;p=citadel.git diff --git a/webcit/roomops.c b/webcit/roomops.c index 54948e49e..685b32c08 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -6,25 +6,14 @@ #include "webcit.h" #include "webserver.h" #define MAX_FLOORS 128 -char floorlist[MAX_FLOORS][SIZ]; /**< list of our floor names */ - -char *viewdefs[9]; /**< the different kinds of available views */ - -/** See GetFloorListHash and GetRoomListHash for info on these. Basically we pull LFLR/LKRA etc. and set up a room HashList with these keys. */ -const char FLOOR_PARAM_NAMES[(FLOOR_PARAM_LEN + 1)][15] = {"ID", - "NAME", - "ROOMS"}; -const char ROOM_PARAM_NAMES[(ROOM_PARAM_LEN + 1)][20] = {"NAME", - "FLAG", - "FLOOR", - "LISTORDER", - "ACL", - "CURVIEW", - "DEFVIEW", - "LASTCHANGE"}; -/* Because avoiding strlen at run time is a Good Thing(TM) */ -const int FLOOR_PARAM_NAMELEN[(FLOOR_PARAM_LEN +1)] = {2, 4, 5}; -const int ROOM_PARAM_NAMELEN[(ROOM_PARAM_LEN +1)] = {4, 4, 5, 9, 3, 7, 7, 8}; + +char floorlist[MAX_FLOORS][SIZ]; /* list of our floor names */ + +char *viewdefs[9]; /* the different kinds of available views */ + +/* See GetFloorListHash and GetRoomListHash for info on these. + * Basically we pull LFLR/LKRA etc. and set up a room HashList with these keys. + */ void display_whok(void); @@ -49,22 +38,16 @@ void initialize_viewdefs(void) { int is_view_allowed_as_default(int which_view) { switch(which_view) { - case VIEW_BBS: return(1); - case VIEW_MAILBOX: return(1); - case VIEW_ADDRESSBOOK: return(1); - case VIEW_CALENDAR: return(1); - case VIEW_TASKS: return(1); - case VIEW_NOTES: return(1); - -#ifdef TECH_PREVIEW - case VIEW_WIKI: return(1); -#else /* TECH_PREVIEW */ - case VIEW_WIKI: return(0); /* because it isn't finished yet */ -#endif /* TECH_PREVIEW */ - - case VIEW_CALBRIEF: return(0); - case VIEW_JOURNAL: return(0); - default: return(0); /* should never get here */ + case VIEW_BBS: return(1); + case VIEW_MAILBOX: return(1); + case VIEW_ADDRESSBOOK: return(1); + case VIEW_CALENDAR: return(1); + case VIEW_TASKS: return(1); + case VIEW_NOTES: return(1); + case VIEW_WIKI: return(1); + case VIEW_CALBRIEF: return(0); + case VIEW_JOURNAL: return(0); + default: return(0); /* should never get here */ } } @@ -97,52 +80,6 @@ void load_floorlist(StrBuf *Buf) } -/* - * Free a session's march list - */ -void free_march_list(wcsession *wcf) -{ - struct march *mptr; - - while (wcf->march != NULL) { - mptr = wcf->march->next; - free(wcf->march); - wcf->march = mptr; - } - -} - - - -/* - * remove a room from the march list - */ -void remove_march(const StrBuf *aaa) -{ - struct march *mptr, *mptr2; - - if (WC->march == NULL) - return; - - if (!strcasecmp(WC->march->march_name, ChrPtr(aaa))) { - mptr = WC->march->next; - free(WC->march); - WC->march = mptr; - return; - } - mptr2 = WC->march; - for (mptr = WC->march; mptr != NULL; mptr = mptr->next) { - if (!strcasecmp(mptr->march_name, ChrPtr(aaa))) { - mptr2->next = mptr->next; - free(mptr); - mptr = mptr2; - } else { - mptr2 = mptr; - } - } -} - - /* @@ -162,31 +99,28 @@ void room_tree_list(struct roomlisting *rp) strcpy(rmname, rp->rlname); f = rp->rlflags; - wprintf(""); + wc_printf("\""); + wc_printf(">"); escputs1(rmname, 1, 1); if ((f & QR_DIRECTORY) && (f & QR_NETWORK)) - wprintf("}"); + wc_printf("}"); else if (f & QR_DIRECTORY) - wprintf("]"); + wc_printf("]"); else if (f & QR_NETWORK) - wprintf(")"); + wc_printf(")"); else - wprintf(">"); - wprintf(" \n"); + wc_printf(">"); + wc_printf(" \n"); room_tree_list(rp->rnext); free(rp); } -/** - * \brief Room ordering stuff (compare first by floor, then by order) - * \param r1 first roomlist to compare - * \param r2 second roomlist co compare - * \return are they the same??? +/* + * Room ordering stuff (compare first by floor, then by order) */ int rordercmp(struct roomlisting *r1, struct roomlisting *r2) { @@ -208,9 +142,8 @@ int rordercmp(struct roomlisting *r1, struct roomlisting *r2) } -/** - * \brief Common code for all room listings - * \param variety what??? +/* + * Common code for all room listings */ void listrms(char *variety) { @@ -221,11 +154,11 @@ void listrms(char *variety) struct roomlisting *rp; struct roomlisting *rs; - /** Ask the server for a room list */ + /* Ask the server for a room list */ serv_puts(variety); serv_getln(buf, sizeof buf); if (buf[0] != '1') { - wprintf(" "); + wc_printf(" "); return; } @@ -264,16 +197,16 @@ void listrms(char *variety) room_tree_list(rl); - /** + /* * If no rooms were listed, print an nbsp to make the cell * borders show up anyway. */ - if (num_rooms == 0) wprintf(" "); + if (num_rooms == 0) wc_printf(" "); } -/** - * \brief list all forgotten rooms +/* + * list all forgotten rooms */ void zapped_list(void) { @@ -291,15 +224,15 @@ void zapped_list(void) listrms("LZRM -1"); - wprintf("

\n"); - wprintf(_("Click on any room to un-zap it and goto that room.\n")); + wc_printf("

\n"); + wc_printf(_("Click on any room to un-zap it and goto that room.\n")); do_template("endbox", NULL); wDumpContent(1); } -/** - * \brief read this room's info file (set v to 1 for verbose mode) +/* + * read this room's info file (set v to 1 for verbose mode) */ void readinfo(StrBuf *Target, WCTemplputParams *TP) { @@ -322,33 +255,32 @@ void readinfo(StrBuf *Target, WCTemplputParams *TP) safestrncpy(briefinfo, fullinfo, sizeof briefinfo); strcpy(&briefinfo[50], "..."); - wprintf("
"); + ">" + ); escputs(briefinfo); - wprintf("
"); - wprintf("
"); + wc_printf("\"%s\"", + "src=\"static/closewindow.gif\" alt=\"%s\" width=\"16\" height=\"16\">", _("Close window") - ); + ); escputs(fullinfo); - wprintf("
"); + wc_printf("
"); } else { - wprintf(" "); + wc_printf(" "); } } -/** - * \brief Display room banner icon. - * The server doesn't actually - * need the room name, but we supply it in order to - * keep the browser from using a cached icon from - * another room. +/* + * Display room banner icon. + * The server doesn't actually need the room name, but we supply it in + * order to keep the browser from using a cached icon from another room. */ void embed_room_graphic(StrBuf *Target, WCTemplputParams *TP) { @@ -357,46 +289,46 @@ void embed_room_graphic(StrBuf *Target, WCTemplputParams *TP) serv_puts("OIMG _roompic_"); serv_getln(buf, sizeof buf); if (buf[0] == '2') { - wprintf("wc_roomname)); - wprintf("\">"); + wc_printf("\">"); serv_puts("CLOS"); serv_getln(buf, sizeof buf); } else if (WC->wc_view == VIEW_ADDRESSBOOK) { - wprintf("\"\"" + "\" >" ); } else if ( (WC->wc_view == VIEW_CALENDAR) || (WC->wc_view == VIEW_CALBRIEF) ) { - wprintf("\"\"" + "\" width=\"48\" height=\"48\">" ); } else if (WC->wc_view == VIEW_TASKS) { - wprintf("\"\"" + "\" width=\"48\" height=\"48\">" ); } else if (WC->wc_view == VIEW_NOTES) { - wprintf("\"\"" + "\" width=\"48\" height=\"48\">" ); } else if (WC->wc_view == VIEW_MAILBOX) { - wprintf("\"\"" + "\" width=\"48\" height=\"48\">" ); } else { - wprintf("\"\"" + "\" width=\"48\" height=\"48\">" ); } @@ -404,70 +336,70 @@ void embed_room_graphic(StrBuf *Target, WCTemplputParams *TP) -/** - * \brief Display the current view and offer an option to change it +/* + * Display the current view and offer an option to change it */ void embed_view_o_matic(StrBuf *Target, WCTemplputParams *TP) { int i; - wprintf("
\n"); - wprintf("\t
\n\t\n", WC->nonce); - wprintf(" " + wc_printf("\n"); + wc_printf("\t
\n\t\n", WC->nonce); + wc_printf(" " "
\n"); + wc_printf("
\n"); } -/** - * \brief Display a search box +/* + * Display a search box */ void embed_search_o_matic(StrBuf *Target, WCTemplputParams *TP) { - wprintf("
\n"); - wprintf("
\n", WC->nonce); - wprintf("serv_info->serv_fulltext_enabled ? "" : "disabled "); - wprintf("type=\"text\" name=\"query\" id=\"srchquery\" size=\"15\" maxlength=\"128\" class=\"inputbox\">\n" + wc_printf("\n"); + wc_printf("
\n", WC->nonce); + wc_printf("serv_info->serv_fulltext_enabled ? "" : "disabled "); + wc_printf("type=\"text\" name=\"query\" id=\"srchquery\" size=\"15\" maxlength=\"128\" class=\"inputbox\">\n" ); - wprintf("
\n"); + wc_printf("
\n"); } -/** - * \brief Embed the room banner +/* + * Embed the room banner * - * \param got The information returned from a GOTO server command - * \param navbar_style Determines which navigation buttons to display + * got The information returned from a GOTO server command + * navbar_style Determines which navigation buttons to display * */ @@ -478,7 +410,7 @@ void embed_room_banner(char *got, int navbar_style) { char with_files[256]; int file_count=0; - /** + /* * We need to have the information returned by a GOTO server command. * If it isn't supplied, we fake it by issuing our own GOTO. */ @@ -490,25 +422,27 @@ void embed_room_banner(char *got, int navbar_style) { got = buf; } - /** The browser needs some information for its own use */ - wprintf("\n", WC->wc_is_trash - ); + ); - /** + /* * If the user happens to select the "make this my start page" link, * we want it to remember the URL as a "/dotskip" one instead of * a "skip" or "gotonext" or something like that. */ - if (WCC->Hdr->this_page == NULL) + if (WCC->Hdr->this_page == NULL) { WCC->Hdr->this_page = NewStrBuf(); + } StrBufPrintf(WCC->Hdr->this_page, - "dotskip&room=%s", - ChrPtr(WC->wc_roomname)); + "dotskip?room=%s", + ChrPtr(WC->wc_roomname) + ); - /** Check for new mail. */ + /* Check for new mail. */ WC->new_mail = extract_int(&got[4], 9); WC->wc_view = extract_int(&got[4], 11); @@ -543,21 +477,21 @@ void embed_room_banner(char *got, int navbar_style) { /* roombanner contains this for mobile */ if (navbar_style != navbar_none && !WC->is_mobile) { - wprintf("
\n"); } } @@ -794,7 +765,8 @@ long gotoroom(const StrBuf *gname) strcpy(WC->ugname, ChrPtr(WC->wc_roomname)); WC->uglsn = ls; Buf = NewStrBuf(); - /** move to the new room */ + + /* move to the new room */ serv_printf("GOTO %s", ChrPtr(gname)); StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, &err) != 2) { @@ -844,134 +816,6 @@ long gotoroom(const StrBuf *gname) } -/** - * \brief Locate the room on the march list which we most want to go to. - * Each room - * is measured given a "weight" of preference based on various factors. - * \param desired_floor the room number on the citadel server - * \return the roomname - */ -char *pop_march(int desired_floor) -{ - static char TheRoom[128]; - int TheFloor = 0; - int TheOrder = 32767; - int TheWeight = 0; - int weight; - struct march *mptr = NULL; - - strcpy(TheRoom, "_BASEROOM_"); - if (WC->march == NULL) - return (TheRoom); - - for (mptr = WC->march; mptr != NULL; mptr = mptr->next) { - weight = 0; - if ((strcasecmp(mptr->march_name, "_BASEROOM_"))) - weight = weight + 10000; - if (mptr->march_floor == desired_floor) - weight = weight + 5000; - - weight = weight + ((128 - (mptr->march_floor)) * 128); - weight = weight + (128 - (mptr->march_order)); - - if (weight > TheWeight) { - TheWeight = weight; - strcpy(TheRoom, mptr->march_name); - TheFloor = mptr->march_floor; - TheOrder = mptr->march_order; - } - } - return (TheRoom); -} - - - -/* - * Goto next room having unread messages. - * - * We want to skip over rooms that the user has already been to, and take the - * user back to the lobby when done. The room we end up in is placed in - * newroom - which is set to 0 (the lobby) initially. - * We start the search in the current room rather than the beginning to prevent - * two or more concurrent users from dragging each other back to the same room. - */ -void gotonext(void) -{ - char buf[256]; - struct march *mptr = NULL; - struct march *mptr2 = NULL; - char room_name[128]; - StrBuf *next_room; - int ELoop = 0; - - /* - * First check to see if the march-mode list is already allocated. - * If it is, pop the first room off the list and go there. - */ - - if (WC->march == NULL) { - serv_puts("LKRN"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - if (IsEmptyStr(buf)) { - if (ELoop > 10000) - return; - if (ELoop % 100 == 0) - sleeeeeeeeeep(1); - ELoop ++; - continue; - } - extract_token(room_name, buf, 0, '|', sizeof room_name); - if (strcasecmp(room_name, ChrPtr(WC->wc_roomname))) { - mptr = (struct march *) malloc(sizeof(struct march)); - mptr->next = NULL; - safestrncpy(mptr->march_name, room_name, sizeof mptr->march_name); - mptr->march_floor = extract_int(buf, 2); - mptr->march_order = extract_int(buf, 3); - if (WC->march == NULL) - WC->march = mptr; - else - mptr2->next = mptr; - mptr2 = mptr; - } - buf[0] = '\0'; - } - /* - * add _BASEROOM_ to the end of the march list, so the user will end up - * in the system base room (usually the Lobby>) at the end of the loop - */ - mptr = (struct march *) malloc(sizeof(struct march)); - mptr->next = NULL; - mptr->march_order = 0; - mptr->march_floor = 0; - strcpy(mptr->march_name, "_BASEROOM_"); - if (WC->march == NULL) { - WC->march = mptr; - } else { - mptr2 = WC->march; - while (mptr2->next != NULL) - mptr2 = mptr2->next; - mptr2->next = mptr; - } - /* - * ...and remove the room we're currently in, so a oto doesn't make us - * walk around in circles - */ - remove_march(WC->wc_roomname); - } - if (WC->march != NULL) { - next_room = NewStrBufPlain(pop_march(-1), -1);/*TODO: migrate march to strbuf */ - } else { - next_room = NewStrBufPlain(HKEY("_BASEROOM_")); - } - - - smart_goto(next_room); - FreeStrBuf(&next_room); -} - - /* * goto next room */ @@ -994,36 +838,6 @@ void slrp_highest(void) } -/* - * un-goto the previous room - */ -void ungoto(void) -{ - StrBuf *Buf; - - if (!strcmp(WC->ugname, "")) { - smart_goto(WC->wc_roomname); - return; - } - serv_printf("GOTO %s", WC->ugname); - Buf = NewStrBuf(); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - smart_goto(WC->wc_roomname); - FreeStrBuf(&Buf); - return; - } - if (WC->uglsn >= 0L) { - serv_printf("SLRP %ld", WC->uglsn); - StrBuf_ServGetln(Buf); - } - FlushStrBuf(Buf); - StrBufAppendBufPlain(Buf, WC->ugname, -1, 0); - strcpy(WC->ugname, ""); - smart_goto(Buf); - FreeStrBuf(&Buf); -} - typedef struct __room_states { char password[SIZ]; char dirname[SIZ]; @@ -1196,116 +1010,116 @@ void display_editroom(void) FreeStrBuf(&Buf); output_headers(1, 1, 1, 0, 0, 0); - wprintf("
"); + wc_printf("
"); - wprintf("
\n"); + wc_printf("
\n"); /* print the tabbed dialog */ - wprintf("
"); - wprintf(""); + wc_printf("
" "" ); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); if ( (WC->axlevel >= 6) || (WC->is_room_aide) ) { - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); } - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("
 "); - wprintf(_("Administration")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Administration")); } else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Administration")); - wprintf(""); + wc_printf("< tab_cell_edit\">"); + wc_printf(_("Administration")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Configuration")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Configuration")); } else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Configuration")); - wprintf(""); + wc_printf(" tab_cell_edit\">"); + wc_printf(_("Configuration")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Message expire policy")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Message expire policy")); } else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Message expire policy")); - wprintf(""); + wc_printf(" tab_cell_edit\">"); + wc_printf(_("Message expire policy")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Access controls")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Access controls")); } else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Access controls")); - wprintf(""); + wc_printf(" tab_cell_edit\">"); + wc_printf(_("Access controls")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Sharing")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Sharing")); } else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Sharing")); - wprintf(""); + wc_printf(" tab_cell_edit\">"); + wc_printf(_("Sharing")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Mailing list service")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Mailing list service")); } else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Mailing list service")); - wprintf(""); + wc_printf("< tab_cell_edit\">"); + wc_printf(_("Mailing list service")); + wc_printf(""); } - wprintf("  "); - wprintf(_("Remote retrieval")); + wc_printf(" tab_cell_label\">"); + wc_printf(_("Remote retrieval")); } else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Remote retrieval")); - wprintf(""); + wc_printf("< tab_cell_edit\">"); + wc_printf(_("Remote retrieval")); + wc_printf(""); } - wprintf("  
\n"); - wprintf("
\n"); + wc_printf("\n"); + wc_printf("
\n"); /* end tabbed dialog */ - wprintf("" ); @@ -1313,36 +1127,38 @@ void display_editroom(void) /* begin content of whatever tab is open now */ if (!strcmp(tab, "admin")) { - wprintf("
"); - wprintf("
"); } if (!strcmp(tab, "config")) { - wprintf("
"); + wc_printf("
"); serv_puts("GETR"); serv_getln(buf, sizeof buf); if (!strncmp(buf, "550", 3)) { - wprintf("

%s


\n", + wc_printf("

%s


\n", _("Higher access is required to access this function.") ); } else if (buf[0] != '2') { - wprintf("

%s


\n", &buf[4]); + wc_printf("

%s


\n", &buf[4]); } else { extract_token(er_name, &buf[4], 0, '|', sizeof er_name); @@ -1352,209 +1168,209 @@ void display_editroom(void) er_floor = extract_int(&buf[4], 4); er_flags2 = extract_int(&buf[4], 7); - wprintf("
\n"); - wprintf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("\n", WC->nonce); - wprintf("
  • "); - wprintf(_("Name of room: ")); - wprintf("\n", + wc_printf("
    • "); + wc_printf(_("Name of room: ")); + wc_printf("\n", er_name, (sizeof(er_name)-1) ); - wprintf("
    • "); - wprintf(_("Resides on floor: ")); - wprintf("\n"); + wc_printf("disabled >\n"); for (i = 0; i < 128; ++i) if (!IsEmptyStr(floorlist[i])) { - wprintf("\n"); + wc_printf("\n"); } - wprintf("\n"); + wc_printf("\n"); - wprintf("
    • "); - wprintf(_("Type of room:")); - wprintf("
        \n"); + wc_printf("
      • "); + wc_printf(_("Type of room:")); + wc_printf("
          \n"); - wprintf("
        • "); - wprintf(_("Public (automatically appears to everyone)")); - wprintf("\n"); + wc_printf(_("Public (automatically appears to everyone)")); + wc_printf("\n"); - wprintf("
        • "); - wprintf(_("Private - hidden (accessible to anyone who knows its name)")); + wc_printf(_("Private - hidden (accessible to anyone who knows its name)")); - wprintf("\n
        • "); - wprintf(_("Private - require password: ")); - wprintf("\n\n", + wc_printf(_("Private - require password: ")); + wc_printf("\n\n", er_password); - wprintf("
        • "); - wprintf(_("Private - invitation only")); + wc_printf(_("Private - invitation only")); - wprintf("\n
        • "); - wprintf(_("Personal (mailbox for you only)")); + wc_printf(_("Personal (mailbox for you only)")); - wprintf("\n
        • "); - wprintf(_("If private, cause current users to forget room")); + wc_printf("\n
        • "); + wc_printf(_("If private, cause current users to forget room")); - wprintf("\n
        \n"); + wc_printf("\n
      \n"); - wprintf("
    • "); - wprintf(_("Preferred users only")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Preferred users only")); - wprintf("\n
    • "); - wprintf(_("Read-only room")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Read-only room")); - wprintf("\n
    • "); - wprintf(_("All users allowed to post may also delete messages")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("All users allowed to post may also delete messages")); /** directory stuff */ - wprintf("\n
    • "); - wprintf(_("File directory room")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("File directory room")); - wprintf("\n
      • "); - wprintf(_("Directory name: ")); - wprintf("\n", + wc_printf("\n
        • "); + wc_printf(_("Directory name: ")); + wc_printf("\n", er_dirname); - wprintf("
        • "); - wprintf(_("Uploading allowed")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Uploading allowed")); - wprintf("\n
        • "); - wprintf(_("Downloading allowed")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Downloading allowed")); - wprintf("\n
        • "); - wprintf(_("Visible directory")); - wprintf("
        \n"); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Visible directory")); + wc_printf("
      \n"); /** end of directory stuff */ - wprintf("
    • "); - wprintf(_("Network shared room")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Network shared room")); - wprintf("\n
    • "); - wprintf(_("Permanent (does not auto-purge)")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Permanent (does not auto-purge)")); - wprintf("\n
    • "); - wprintf(_("Subject Required (Force users to specify a message subject)")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Subject Required (Force users to specify a message subject)")); /** start of anon options */ - wprintf("\n
    • "); - wprintf(_("Anonymous messages")); - wprintf("
        \n"); + wc_printf("\n
      • "); + wc_printf(_("Anonymous messages")); + wc_printf("
          \n"); - wprintf("
        • "); - wprintf(_("No anonymous messages")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("No anonymous messages")); - wprintf("\n
        • "); - wprintf(_("All messages are anonymous")); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("All messages are anonymous")); - wprintf("\n
        • "); - wprintf(_("Prompt user when entering messages")); - wprintf("
        \n"); + wc_printf("CHECKED "); + wc_printf("> "); + wc_printf(_("Prompt user when entering messages")); + wc_printf("
      \n"); /* end of anon options */ - wprintf("
    • "); - wprintf(_("Room aide: ")); + wc_printf("
    • "); + wc_printf(_("Room aide: ")); serv_puts("GETA"); serv_getln(buf, sizeof buf); if (buf[0] != '2') { - wprintf("%s\n", &buf[4]); + wc_printf("%s\n", &buf[4]); } else { extract_token(er_roomaide, &buf[4], 0, '|', sizeof er_roomaide); - wprintf("\n", er_roomaide); + wc_printf("\n", er_roomaide); } - wprintf("
    \n"); - wprintf("\n" + wc_printf("
\n"); + wc_printf("\n" "" " " "" @@ -1563,13 +1379,13 @@ void display_editroom(void) _("Cancel") ); } - wprintf("
"); + wc_printf("
"); } /* Sharing the room with other Citadel nodes... */ if (!strcmp(tab, "sharing")) { - wprintf("
"); + wc_printf("
"); shared_with = strdup(""); not_shared_with = strdup(""); @@ -1615,99 +1431,99 @@ void display_editroom(void) } /* Display the stuff */ - wprintf("

" + wc_printf("

" "" "" + wc_printf(_("Shared with")); + wc_printf("" "\n" + wc_printf(_("Not shared with")); + wc_printf("\n" "" + wc_printf("
"); - wprintf(_("Shared with")); - wprintf(""); - wprintf(_("Not shared with")); - wprintf("
\n"); - wprintf("\n"); + wc_printf("
"); - wprintf(_("Remote node name")); - wprintf(""); - wprintf(_("Remote room name")); - wprintf(""); - wprintf(_("Actions")); - wprintf("
\n"); for (i=0; i"); - wprintf("\n", WC->nonce); - wprintf("\n", node); + wc_printf(""); + wc_printf("\n", WC->nonce); + wc_printf("\n", node); - wprintf(""); + wc_printf(""); - wprintf("\n"); + wc_printf("\n"); } } - wprintf("
"); + wc_printf(_("Remote node name")); + wc_printf(""); + wc_printf(_("Remote room name")); + wc_printf(""); + wc_printf(_("Actions")); + wc_printf("
%s
%s"); + wc_printf(""); if (!IsEmptyStr(remote_room)) { escputs(remote_room); } - wprintf(""); + wc_printf(""); - wprintf(""); - wprintf("\n"); - wprintf("\n"); - wprintf(""); + wc_printf("\n"); + wc_printf("\n"); + wc_printf("", _("Unshare")); - wprintf("
\n"); - wprintf("
\n"); - wprintf("\n"); + wc_printf("
"); - wprintf(_("Remote node name")); - wprintf(""); - wprintf(_("Remote room name")); - wprintf(""); - wprintf(_("Actions")); - wprintf("
\n"); + wc_printf("
\n"); + wc_printf("\n"); for (i=0; i"); - wprintf("\n", WC->nonce); - wprintf("\n"); + wc_printf("\n"); } } - wprintf("
"); + wc_printf(_("Remote node name")); + wc_printf(""); + wc_printf(_("Remote room name")); + wc_printf(""); + wc_printf(_("Actions")); + wc_printf("
"); + wc_printf("
"); + wc_printf("\n", WC->nonce); + wc_printf("
"); escputs(node); - wprintf("" + wc_printf("" "" ""); - wprintf(""); - wprintf(""); + wc_printf("\n"); - wprintf("\n"); - wprintf("", _("Share")); - wprintf("
\n"); - wprintf("
\n"); + wc_printf("" "

\n" "%s
  • ", _("Notes:")); - wprintf(_("When sharing a room, " + wc_printf(_("When sharing a room, " "it must be shared from both ends. Adding a node to " "the 'shared' list sends messages out, but in order to" " receive messages, the other nodes must be configured" @@ -1719,19 +1535,19 @@ void display_editroom(void) "

\n" )); - wprintf("
"); + wc_printf("
"); } /* Mailing list management */ if (!strcmp(tab, "listserv")) { room_states RoomFlags; - wprintf("
"); + wc_printf("
"); - wprintf("
" + wc_printf("
" "" "
"); - wprintf(_("The contents of this room are being " + wc_printf(_("The contents of this room are being " "mailed as individual messages " "to the following list recipients:" "

\n")); @@ -1744,24 +1560,24 @@ void display_editroom(void) extract_token(recp, buf, 1, '|', sizeof recp); escputs(recp); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); + wc_printf("\">"); + wc_printf(_("(remove)")); + wc_printf("
"); } } - wprintf("
\n" + wc_printf("
\n" "\n" "\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("", _("Add")); - wprintf("
\n"); + wc_printf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("", _("Add")); + wc_printf("\n"); - wprintf("
\n"); + wc_printf("\n"); - wprintf(_("The contents of this room are being " + wc_printf(_("The contents of this room are being " "mailed in digest form " "to the following list recipients:" "

\n")); @@ -1774,26 +1590,26 @@ void display_editroom(void) extract_token(recp, buf, 1, '|', sizeof recp); escputs(recp); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); + wc_printf("\">"); + wc_printf(_("(remove)")); + wc_printf("
"); } } - wprintf("
\n" + wc_printf("
\n" "\n" "\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("", _("Add")); - wprintf("
\n"); + wc_printf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("", _("Add")); + wc_printf("\n"); - wprintf("
\n"); + wc_printf("\n"); /** Pop open an address book -- begin **/ - wprintf("
" + wc_printf("
" "" "" @@ -1806,56 +1622,56 @@ void display_editroom(void) ); /* Pop open an address book -- end **/ - wprintf("
\n
\n"); + wc_printf("
\n\n"); get_roomflags (&RoomFlags); /* Self Service subscription? */ - wprintf("\n" + wc_printf("
\n"); - wprintf(_("Allow self-service subscribe/unsubscribe requests.")); - wprintf("
\n" " \n", + wc_printf(_("The URL for subscribe/unsubscribe is: ")); + wc_printf("%s://%s/listsub\n", (is_https ? "https" : "http"), ChrPtr(WC->Hdr->HR.http_host)); /* Public posting? */ - wprintf("\n", + wc_printf("\n", (is_publiclist(&RoomFlags))?"checked":""); /* Moderated List? */ - wprintf("\n", + wc_printf("\n", (is_moderatedlist(&RoomFlags))?"checked":""); - wprintf("", _("Save changes")); - wprintf("
\n"); + wc_printf(_("Allow self-service subscribe/unsubscribe requests.")); + wc_printf("
\n", (is_selflist(&RoomFlags))?"checked":""); - wprintf(_("The URL for subscribe/unsubscribe is: ")); - wprintf("%s://%s/listsub
"); - wprintf(_("Allow non-subscribers to mail to this room.")); - wprintf("
"); + wc_printf(_("Allow non-subscribers to mail to this room.")); + wc_printf("
"); - wprintf(_("Room post publication needs Aide permission.")); - wprintf("
"); + wc_printf(_("Room post publication needs Aide permission.")); + wc_printf("
" + wc_printf("
" "
"); + wc_printf(""); - wprintf("
\n"); - wprintf("
"); + wc_printf("\n"); + wc_printf("
"); } /* Configuration of The Dreaded Auto-Purger */ if (!strcmp(tab, "expire")) { - wprintf("
"); + wc_printf("
"); serv_puts("GPEX room"); serv_getln(buf, sizeof buf); if (!strncmp(buf, "550", 3)) { - wprintf("

%s


\n", + wc_printf("

%s


\n", _("Higher access is required to access this function.") ); } else if (buf[0] != '2') { - wprintf("

%s


\n", &buf[4]); + wc_printf("

%s


\n", &buf[4]); } else { roompolicy = extract_int(&buf[4], 0); @@ -1868,105 +1684,105 @@ void display_editroom(void) floorvalue = extract_int(&buf[4], 1); } - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("
"); - wprintf(_("Message expire policy for this room")); - wprintf("
("); + wc_printf("
\n"); + wc_printf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("\n"); + wc_printf(_("Expire by message age")); + wc_printf("
"); + wc_printf(_("Number of messages or days: ")); + wc_printf("", roomvalue); + wc_printf("\n"); if (WC->axlevel >= 6) { - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("
\n"); + wc_printf("
\n"); - wprintf("
"); + wc_printf(_("Message expire policy for this room")); + wc_printf("
("); escputs(ChrPtr(WC->wc_roomname)); - wprintf(")
"); - wprintf("", + wc_printf(")"); + wc_printf("", ((roompolicy == 0) ? "CHECKED" : "") ); - wprintf(_("Use the default policy for this floor")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Use the default policy for this floor")); + wc_printf("
\n"); + wc_printf("", ((roompolicy == 1) ? "CHECKED" : "") ); - wprintf(_("Never automatically expire messages")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Never automatically expire messages")); + wc_printf("
\n"); + wc_printf("", ((roompolicy == 2) ? "CHECKED" : "") ); - wprintf(_("Expire by message count")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Expire by message count")); + wc_printf("
\n"); + wc_printf("", ((roompolicy == 3) ? "CHECKED" : "") ); - wprintf(_("Expire by message age")); - wprintf("
"); - wprintf(_("Number of messages or days: ")); - wprintf("", roomvalue); - wprintf("

"); - wprintf(_("Message expire policy for this floor")); - wprintf("
("); + wc_printf("

"); + wc_printf(_("Message expire policy for this floor")); + wc_printf("
("); escputs(floorlist[WC->wc_floor]); - wprintf(")
"); - wprintf("", + wc_printf(")"); + wc_printf("", ((floorpolicy == 0) ? "CHECKED" : "") ); - wprintf(_("Use the system default")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Use the system default")); + wc_printf("
\n"); + wc_printf("", ((floorpolicy == 1) ? "CHECKED" : "") ); - wprintf(_("Never automatically expire messages")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Never automatically expire messages")); + wc_printf("
\n"); + wc_printf("", ((floorpolicy == 2) ? "CHECKED" : "") ); - wprintf(_("Expire by message count")); - wprintf("
\n"); - wprintf("", + wc_printf(_("Expire by message count")); + wc_printf("
\n"); + wc_printf("", ((floorpolicy == 3) ? "CHECKED" : "") ); - wprintf(_("Expire by message age")); - wprintf("
"); - wprintf(_("Number of messages or days: ")); - wprintf("", + wc_printf(_("Expire by message age")); + wc_printf("
"); + wc_printf(_("Number of messages or days: ")); + wc_printf("", floorvalue); } - wprintf("
\n"); - wprintf("

\n"); - wprintf("", _("Save changes")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("

\n"); + wc_printf("", _("Save changes")); + wc_printf(" "); + wc_printf("", _("Cancel")); + wc_printf("
\n" + wc_printf("
\n" "\n" "
\n" ); } - wprintf("
"); + wc_printf("
"); } /* Access controls */ if (!strcmp(tab, "access")) { - wprintf("
"); + wc_printf("
"); display_whok(); - wprintf("
"); + wc_printf("
"); } /* Fetch messages from remote locations */ if (!strcmp(tab, "feeds")) { - wprintf("
"); + wc_printf("
"); - wprintf(""); - wprintf(_("Retrieve messages from these remote POP3 accounts and store them in this room:")); - wprintf("
\n"); + wc_printf(""); + wc_printf(_("Retrieve messages from these remote POP3 accounts and store them in this room:")); + wc_printf("
\n"); - wprintf("" + wc_printf("
" ""); + wc_printf(_("Remote host")); + wc_printf(""); serv_puts("GNET"); serv_getln(buf, sizeof buf); @@ -1977,74 +1793,74 @@ void display_editroom(void) safestrncpy(recp, &buf[11], sizeof recp); bg = 1 - bg; - wprintf("", + wc_printf("", (bg ? "even" : "odd") ); - wprintf(""); + wc_printf(""); - wprintf(""); + wc_printf(""); - wprintf(""); /* Don't show the password */ + wc_printf(""); /* Don't show the password */ - wprintf("", extract_int(buf, 4) ? _("Yes") : _("No")); + wc_printf("", extract_int(buf, 4) ? _("Yes") : _("No")); - wprintf("", extract_long(buf, 5)); /* Fetching interval */ + wc_printf("", extract_long(buf, 5)); /* Fetching interval */ - wprintf(""); + wc_printf("\">"); + wc_printf(_("(remove)")); + wc_printf(""); - wprintf(""); + wc_printf(""); } } - wprintf("\n" + wc_printf("\n" "" "" "\n"); - wprintf("\n", WC->nonce); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf("
"); - wprintf(_("Remote host")); - wprintf(""); - wprintf(_("User name")); - wprintf(""); - wprintf(_("Password")); - wprintf(""); - wprintf(_("Keep messages on server?")); - wprintf(""); - wprintf(_("Interval")); - wprintf("
"); + wc_printf(_("User name")); + wc_printf(""); + wc_printf(_("Password")); + wc_printf(""); + wc_printf(_("Keep messages on server?")); + wc_printf(""); + wc_printf(_("Interval")); + wc_printf("
"); + wc_printf(""); extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); escputs(pop3_host); - wprintf(""); + wc_printf(""); extract_token(pop3_user, buf, 2, '|', sizeof pop3_user); escputs(pop3_user); - wprintf("**********%s%s%ld%ld"); - wprintf(" "); + wc_printf(" "); - wprintf(_("(remove)")); - wprintf("
"); - wprintf("\n"); - wprintf(""); - wprintf("\n"); - wprintf(""); - wprintf("\n"); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf("", _("Add")); - wprintf("
\n"); - - wprintf("
\n"); - - wprintf(""); - wprintf(_("Fetch the following RSS feeds and store them in this room:")); - wprintf("
\n"); - - wprintf("" + wc_printf("\n", WC->nonce); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf("
"); + wc_printf("\n"); + wc_printf(""); + wc_printf("\n"); + wc_printf(""); + wc_printf("\n"); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf(""); + wc_printf("", _("Add")); + wc_printf("
\n"); + + wc_printf("
\n"); + + wc_printf(""); + wc_printf(_("Fetch the following RSS feeds and store them in this room:")); + wc_printf("
\n"); + + wc_printf("" ""); + wc_printf("\" "); + wc_printf(_("Feed URL")); + wc_printf(""); serv_puts("GNET"); serv_getln(buf, sizeof buf); @@ -2055,46 +1871,46 @@ void display_editroom(void) safestrncpy(recp, &buf[10], sizeof recp); bg = 1 - bg; - wprintf("", + wc_printf("", (bg ? "even" : "odd") ); - wprintf(""); + wc_printf(""); - wprintf(""); + wc_printf("\">"); + wc_printf(_("(remove)")); + wc_printf(""); - wprintf(""); + wc_printf(""); } } - wprintf("\n" + wc_printf("\n" "" "" "\n"); - wprintf("\n", WC->nonce); - wprintf(""); - wprintf(""); - wprintf("
"); - wprintf("\" "); - wprintf(_("Feed URL")); - wprintf(""); - wprintf("
"); + wc_printf("
"); + wc_printf(""); extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); escputs(pop3_host); - wprintf(""); - wprintf(" "); + wc_printf(" "); - wprintf(_("(remove)")); - wprintf("
"); - wprintf("\n", WC->nonce); + wc_printf(""); + wc_printf("\n"); - wprintf(""); - wprintf("", _("Add")); - wprintf("
\n"); + wc_printf(""); + wc_printf(""); + wc_printf("", _("Add")); + wc_printf(""); + wc_printf("\n"); - wprintf("
"); + wc_printf("
"); } /* end content of whatever tab is open now */ - wprintf("
\n"); + wc_printf("\n"); address_book_popup(); wDumpContent(1); @@ -2424,47 +2240,47 @@ void display_whok(void) extract_token(room, &buf[4], 0, '|', sizeof room); - wprintf("
"); - wprintf(_("The users listed below have access to this room. " + wc_printf("
"); + wc_printf(_("The users listed below have access to this room. " "To remove a user from the access list, select the user " "name from the list and click 'Kick'.")); - wprintf("

"); + wc_printf("

"); - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("
\n"); + wc_printf("
\n"); - wprintf("", _("Kick")); - wprintf("
\n"); + wc_printf("", _("Kick")); + wc_printf("\n"); - wprintf("
"); - wprintf(_("To grant another user access to this room, enter the " + wc_printf(""); + wc_printf(_("To grant another user access to this room, enter the " "user name in the box below and click 'Invite'.")); - wprintf("

"); - - wprintf("
\n"); - wprintf("\n"); - wprintf("\n", WC->nonce); - wprintf(_("Invite:")); - wprintf(" "); - wprintf("
\n" + wc_printf("

"); + + wc_printf("
\n"); + wc_printf("\n"); + wc_printf("\n", WC->nonce); + wc_printf(_("Invite:")); + wc_printf(" "); + wc_printf("
\n" "" "" "
\n", _("Invite")); /* Pop open an address book -- begin **/ - wprintf( + wc_printf( "" "" @@ -2474,7 +2290,7 @@ void display_whok(void) ); /* Pop open an address book -- end **/ - wprintf("
\n"); + wc_printf("
\n"); address_book_popup(); wDumpContent(1); } @@ -2506,31 +2322,31 @@ void display_entroom(void) svprintf(HKEY("BOXTITLE"), WCS_STRING, _("Create a new room")); do_template("beginbox", NULL); - wprintf("
\n"); - wprintf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("\n", WC->nonce); - wprintf(" "); + wc_printf("
"); - wprintf(""); + wc_printf(""); - wprintf(""); + wc_printf("\n"); + wc_printf(""); /* * Our clever little snippet of JavaScript automatically selects @@ -2538,10 +2354,10 @@ void display_entroom(void) * it selects a mailbox room otherwise. The user can override this, * of course. We also disable the floor selector for mailboxes. */ - wprintf(""); + wc_printf("\n"); + wc_printf(""); - wprintf("
"); - wprintf(_("Name of room: ")); - wprintf(""); - wprintf("\n"); - wprintf("
"); + wc_printf(_("Name of room: ")); + wc_printf(""); + wc_printf("\n"); + wc_printf("
"); - wprintf(_("Resides on floor: ")); - wprintf(""); + wc_printf("
"); + wc_printf(_("Resides on floor: ")); + wc_printf(""); load_floorlist(Buf); - wprintf("\n"); for (i = 0; i < 128; ++i) if (!IsEmptyStr(floorlist[i])) { - wprintf("\n"); + wc_printf("\n"); } - wprintf("\n"); - wprintf("
"); - wprintf(_("Default view for room: ")); - wprintf(""); - wprintf(""); + wc_printf(_("Default view for room: ")); + wc_printf(""); + wc_printf("\n"); - wprintf("
"); - wprintf(_("Type of room:")); - wprintf(""); - wprintf("
    \n"); + wc_printf("
"); + wc_printf(_("Type of room:")); + wc_printf(""); + wc_printf("
    \n"); - wprintf("
  • "); - wprintf(_("Public (automatically appears to everyone)")); - wprintf("
  • "); + wc_printf(_("Public (automatically appears to everyone)")); + wc_printf(""); - wprintf("\n
  • "); - wprintf(_("Private - hidden (accessible to anyone who knows its name)")); - wprintf("
  • "); + wc_printf(_("Private - hidden (accessible to anyone who knows its name)")); + wc_printf(""); - wprintf("\n
  • "); - wprintf(_("Private - require password: ")); - wprintf("\n"); - wprintf("
  • "); + wc_printf(_("Private - require password: ")); + wc_printf("\n"); + wc_printf(""); - wprintf("
  • "); - wprintf(_("Private - invitation only")); - wprintf("
  • "); + wc_printf(_("Private - invitation only")); + wc_printf(""); - wprintf("\n
  • "); - wprintf(_("Personal (mailbox for you only)")); - wprintf("
  • "); - - wprintf("\n
\n"); - wprintf("
\n"); - - wprintf("
\n"); - wprintf("", _("Create new room")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n"); - wprintf("
\n
"); + wc_printf(_("Personal (mailbox for you only)")); + wc_printf(""); + + wc_printf("\n\n"); + wc_printf("\n"); + + wc_printf("
\n"); + wc_printf("", _("Create new room")); + wc_printf(" "); + wc_printf("", _("Cancel")); + wc_printf("
\n"); + wc_printf("\n
"); serv_printf("MESG roomaccess"); serv_getln(buf, sizeof buf); if (buf[0] == '1') { @@ -2746,40 +2562,40 @@ void display_private(char *rname, int req_pass) FreeStrBuf(&Buf); - wprintf("

"); - wprintf(_("If you know the name of a hidden (guess-name) or " + wc_printf("

"); + wc_printf(_("If you know the name of a hidden (guess-name) or " "passworded room, you can enter that room by typing " "its name below. Once you gain access to a private " "room, it will appear in your regular room listings " "so you don't have to keep returning here.")); - wprintf("

"); + wc_printf("

"); - wprintf("
\n"); - wprintf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("\n", WC->nonce); - wprintf(" " + wc_printf("
" "
"); - wprintf(_("Enter room name:")); - wprintf("" + wc_printf(_("Enter room name:")); + wc_printf("" "\n", rname); if (req_pass) { - wprintf("
"); - wprintf(_("Enter room password:")); - wprintf(""); - wprintf("\n"); + wc_printf("
"); + wc_printf(_("Enter room password:")); + wc_printf(""); + wc_printf("\n"); } - wprintf("
\n"); + wc_printf("\n"); - wprintf("
\n"); - wprintf("" + wc_printf("
\n"); + wc_printf("" " " "", _("Go there"), _("Cancel") ); - wprintf("
\n"); + wc_printf("
\n"); do_template("endbox", NULL); @@ -2813,7 +2629,7 @@ void goto_private(void) return; } output_headers(1, 1, 1, 0, 0, 0); - wprintf("%s\n", &buf[4]); + wc_printf("%s\n", &buf[4]); wDumpContent(1); return; } @@ -2826,24 +2642,24 @@ void display_zap(void) { output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("

"); - wprintf(_("Zap (forget/unsubscribe) the current room")); - wprintf("

\n"); - wprintf("
\n"); + wc_printf("
\n"); + wc_printf("

"); + wc_printf(_("Zap (forget/unsubscribe) the current room")); + wc_printf("

\n"); + wc_printf("
\n"); - wprintf("
\n"); + wc_printf("
\n"); - wprintf(_("If you select this option, %s will " + wc_printf(_("If you select this option, %s will " "disappear from your room list. Is this what you wish " "to do?
\n"), ChrPtr(WC->wc_roomname)); - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("", _("Zap this room")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n"); + wc_printf("
\n"); + wc_printf("\n", WC->nonce); + wc_printf("", _("Zap this room")); + wc_printf(" "); + wc_printf("", _("Cancel")); + wc_printf("
\n"); wDumpContent(1); } @@ -3077,363 +2893,6 @@ void change_view(void) { do_change_view(view); } - -/** - * \brief One big expanded tree list view --- like a folder list - * \param fold the folder to view - * \param max_folders how many folders??? - * \param num_floors hom many floors??? - */ -void do_folder_view(struct folder *fold, int max_folders, int num_floors) { - char buf[SIZ]; - int levels; - int i; - int has_subfolders = 0; - int *parents; - - parents = malloc(max_folders * sizeof(int)); - - /** BEGIN TREE MENU */ - wprintf("
Loading folder list...
\n"); - - /** include NanoTree */ - wprintf("\n"); - - /** initialize NanoTree */ - wprintf("\n" - ); - - free(parents); - /** END TREE MENU */ -} - -/** - * \brief Boxes and rooms and lists ... oh my! - * \param fold the folder to view - * \param max_folders how many folders??? - * \param num_floors hom many floors??? - */ -void do_rooms_view(struct folder *fold, int max_folders, int num_floors) { - char buf[256]; - char floor_name[256]; - char old_floor_name[256]; - int levels, oldlevels; - int i, t; - int num_boxes = 0; - static int columns = 3; - int boxes_per_column = 0; - int current_column = 0; - int nf; - - strcpy(floor_name, ""); - strcpy(old_floor_name, ""); - - nf = num_floors; - while (nf % columns != 0) ++nf; - boxes_per_column = (nf / columns); - if (boxes_per_column < 1) boxes_per_column = 1; - - /** Outer table (for columnization) */ - wprintf("" - "
"); - - levels = 0; - oldlevels = 0; - for (i=0; i"); - - ++num_boxes; - if ((num_boxes % boxes_per_column) == 0) { - ++current_column; - if (current_column < columns) { - wprintf("\n"); - } - } - } - strcpy(old_floor_name, floor_name); - - if (levels == 1) { - StrBuf *Buf; - WCTemplputParams SubTP; - - Buf = NewStrBufPlain(floor_name, -1); - memset(&SubTP, 0, sizeof(WCTemplputParams)); - SubTP.Filter.ContextType = CTX_STRBUF; - SubTP.Context = Buf; - DoTemplate(HKEY("beginbox"), NULL, &SubTP); - - FreeStrBuf(&Buf); - } - - oldlevels = levels; - - if (levels > 1) { - wprintf(" "); - if (levels>2) for (t=0; t<(levels-2); ++t) wprintf("   "); - if (fold[i].selectable) { - wprintf(""); - } - else { - wprintf(""); - } - if (fold[i].hasnewmsgs) { - wprintf(""); - } - else { - wprintf(""); - } - extract_token(buf, fold[i].name, levels-1, '|', sizeof buf); - escputs(buf); - wprintf(""); - if (fold[i].selectable) { - wprintf(""); - } - else { - wprintf(""); - } - if (!strcasecmp(fold[i].name, "My Folders|Mail")) { - wprintf(" (INBOX)"); - } - wprintf("
\n"); - } - } - /** End the final inner box */ - do_template("endbox", NULL); - - wprintf("
\n"); -} - -/** - * \brief print a floor div??? - * \param which_floordiv name of the floordiv??? - */ -void set_floordiv_expanded(void) { - wcsession *WCC = WC; - StrBuf *FloorDiv; - - FloorDiv = NewStrBuf(); - StrBufExtract_token(FloorDiv, WCC->Hdr->HR.ReqLine, 0, '/'); - set_preference("floordiv_expanded", FloorDiv, 1); - WCC->floordiv_expanded = FloorDiv; -} - -/** - * \brief view the iconbar - * \param fold the folder to view - * \param max_folders how many folders??? - * \param num_floors hom many floors??? - */ -void do_iconbar_view(struct folder *fold, int max_folders, int num_floors) { - char buf[256]; - char floor_name[256]; - char old_floor_name[256]; - char floordivtitle[256]; - char floordiv_id[32]; - int levels, oldlevels; - int i, t; - char *icon = NULL; - - strcpy(floor_name, ""); - strcpy(old_floor_name, ""); - - levels = 0; - oldlevels = 0; - for (i=0; i\n"); - wprintf("
\n"); /** floordiv */ - } - strcpy(old_floor_name, floor_name); - - if (levels == 1) { - /** Begin floor */ - stresc(floordivtitle, 256, floor_name, 0, 0); - sprintf(floordiv_id, "floordiv%d", i); - wprintf("" - "%s
\n", floordiv_id, floordivtitle); - wprintf("
\n"); /** floordiv */ - - -} - - - /** * \brief Burn the cached folder list. * \param age How old the cahce needs to be before we burn it. @@ -3452,189 +2911,6 @@ void burn_folder_cache(time_t age) - -/** - * \brief Show the room list. - * (only should get called by - * knrooms() because that's where output_headers() is called from) - * \param viewpref the view preferences??? - */ - -void list_all_rooms_by_floor(const char *viewpref) { - StrBuf *Buf; - char buf[SIZ]; - int swap = 0; - struct folder *fold = NULL; - struct folder ftmp; - int max_folders = 0; - int alloc_folders = 0; - int *floor_mapping; - int IDMax; - int i, j; - int ShowEmptyFloors; - int ra_flags = 0; - int flags = 0; - int num_floors = 1; /** add an extra one for private folders */ - char buf3[SIZ]; - - /** If our cached folder list is very old, burn it. */ - burn_folder_cache(300); - - /** Can we do the iconbar roomlist from cache? */ - if ((WC->cache_fold != NULL) && (!strcasecmp(viewpref, "iconbar"))) { - do_iconbar_view(WC->cache_fold, WC->cache_max_folders, WC->cache_num_floors); - return; - } - Buf = NewStrBuf(); - - /** Grab the floor table so we know how to build the list... */ - load_floorlist(Buf); - FreeStrBuf(&Buf); - /** Start with the mailboxes */ - max_folders = 1; - alloc_folders = 1; - fold = malloc(sizeof(struct folder)); - memset(fold, 0, sizeof(struct folder)); - strcpy(fold[0].name, "My folders"); - fold[0].is_mailbox = 1; - - /** Then add floors */ - serv_puts("LFLR"); - serv_getln(buf, sizeof buf); - if (buf[0]=='1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - if (max_folders >= alloc_folders) { - alloc_folders = max_folders + 100; - fold = realloc(fold, - alloc_folders * sizeof(struct folder)); - } - memset(&fold[max_folders], 0, sizeof(struct folder)); - extract_token(fold[max_folders].name, buf, 1, '|', sizeof fold[max_folders].name); - extract_token(buf3, buf, 0, '|', SIZ); - fold[max_folders].floor = atol (buf3); - ++max_folders; - ++num_floors; - } - IDMax = 0; - for (i=0; i= alloc_folders) { - alloc_folders = max_folders + 100; - fold = realloc(fold, - alloc_folders * sizeof(struct folder)); - } - memset(&fold[max_folders], 0, sizeof(struct folder)); - extract_token(fold[max_folders].room, buf, 0, '|', sizeof fold[max_folders].room); - ra_flags = extract_int(buf, 5); - flags = extract_int(buf, 1); - fold[max_folders].floor = extract_int(buf, 2); - fold[max_folders].hasnewmsgs = - ((ra_flags & UA_HASNEWMSGS) ? 1 : 0 ); - if (flags & QR_MAILBOX) { - fold[max_folders].is_mailbox = 1; - } - fold[max_folders].view = extract_int(buf, 6); - room_to_folder(fold[max_folders].name, - fold[max_folders].room, - fold[max_folders].floor, - fold[max_folders].is_mailbox); - fold[max_folders].selectable = 1; - /* Increase the room count for the associtaed floor */ - if (fold[max_folders].is_mailbox) { - fold[0].num_rooms++; - } - else { - i = floor_mapping[fold[max_folders].floor]; - fold[i].num_rooms++; - } - ++max_folders; - } - - /* - * Remove any floors that don't have rooms - */ - get_pref_yesno("emptyfloors", &ShowEmptyFloors, 0); - if (ShowEmptyFloors) - { - for (i=0; i 0) { - memcpy(&ftmp, &fold[j], sizeof(struct folder)); - memcpy(&fold[j], &fold[j+1], - sizeof(struct folder)); - memcpy(&fold[j+1], &ftmp, - sizeof(struct folder)); - } - } - } - - - if (!strcasecmp(viewpref, "folders")) { - do_folder_view(fold, max_folders, num_floors); - } - else if (!strcasecmp(viewpref, "hackish_view")) { - for (i=0; i\n"); - } - } - else if (!strcasecmp(viewpref, "iconbar")) { - do_iconbar_view(fold, max_folders, num_floors); - } - else { - do_rooms_view(fold, max_folders, num_floors); - } - - /* Don't free the folder list ... cache it for future use! */ - if (WC->cache_fold != NULL) { - free(WC->cache_fold); - } - WC->cache_fold = fold; - WC->cache_max_folders = max_folders; - WC->cache_num_floors = num_floors; - WC->cache_timestamp = time(NULL); - free(floor_mapping); -} - - /** * \brief Do either a known rooms list or a folders list, depending on the * user's preference @@ -3643,11 +2919,9 @@ void knrooms(void) { StrBuf *ListView = NULL; - output_headers(1, 1, 2, 0, 0, 0); - /** Determine whether the user is trying to change views */ if (havebstr("view")) { - ListView = NewStrBufPlain(bstr("view"), -1); + ListView = NewStrBufDup(SBSTR("view")); set_preference("roomlistview", ListView, 1); } /** Sanitize the input so its safe */ @@ -3656,62 +2930,15 @@ void knrooms(void) (strcasecmp(ChrPtr(ListView), "table") != 0))) { if (ListView == NULL) { - ListView = NewStrBufPlain("rooms", sizeof("rooms") - 1); + ListView = NewStrBufPlain(HKEY("rooms")); set_preference("roomlistview", ListView, 0); } else { - StrBufPrintf(ListView, "rooms"); + StrBufPlain(ListView, HKEY("rooms")); save_preferences(); } } - - /** title bar */ - wprintf("
\n"); - wprintf("
"); - wprintf("

"); - if (!strcasecmp(ChrPtr(ListView), "rooms")) { - wprintf(_("Room list")); - } - else if (!strcasecmp(ChrPtr(ListView), "folders")) { - wprintf(_("Folder list")); - } - else if (!strcasecmp(ChrPtr(ListView), "table")) { - wprintf(_("Room list")); - } - wprintf("

\n"); - - /** offer the ability to switch views */ - wprintf("
"); - wprintf("
    \n"); - wprintf("
  • "); - offer_start_page(NULL, &NoCtx); - wprintf("
  • "); - wprintf("
  • \n" - ""); - wprintf("
  • "); - wprintf("
\n"); - - wprintf("
\n"); - - /** Display the room list in the user's preferred format */ - list_all_rooms_by_floor(ChrPtr(ListView)); - wDumpContent(1); + url_do_template(); } @@ -3743,130 +2970,21 @@ void set_room_policy(void) { display_editroom(); } -HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP) { - /* todo: check context */ - const char *Err; - StrBuf *Buf; - StrBuf *Buf2; - HashList *floors; - HashList *floor; - floors = NewHash(1, NULL); - Buf = NewStrBuf(); - serv_puts("LFLR"); /* get floors */ - StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err); /* '100', we hope */ - if (GetServerStatus(Buf, NULL) == 1) - while(StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err), strcmp(ChrPtr(Buf), "000")) { - int a; - const char *floorNum = NULL; - floor = NewHash(1, NULL); - for(a=0; aContext); - void *value; - GetHash(floor, TKEY(0), &value); - val = (StrBuf *)value; - StrECMAEscAppend(TemplBuffer, val, 0); -} -HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP) -{ - serv_puts("LKRA"); - return GetRoomListHash(Target, TP); -} -HashList *GetRoomListHash(StrBuf *Target, WCTemplputParams *TP) -{ - /* TODO: Check context */ - HashList *rooms; - HashList *room; - StrBuf *buf; - StrBuf *buf2; - const char *Err; - buf = NewStrBuf(); - rooms = NewHash(1, NULL); - StrBufTCP_read_line(buf, &WC->serv_sock, 0, &Err); - if (GetServerStatus(Buf, NULL) == 1) - while(StrBufTCP_read_line(buf, &WC->serv_sock, 0, &Err), strcmp(ChrPtr(buf), "000")) { - int i; - const char *rmName = NULL; - room = NewHash(1, NULL); - for(i=0; i l2) return +1; - else return 0; -} -void tmplput_ROOM_Value(StrBuf *TemplBuffer, WCTemplputParams *TP) -{ - void *value; - StrBuf *val; - HashList *room = (HashList *)(TP->Context); - - GetHash(room, TKEY(0), &value); - val = (StrBuf *)value; - StrECMAEscAppend(TemplBuffer, val, 0); -} -void jsonRoomFlr(void) -{ - /* Send as our own (application/json) content type */ - hprintf("HTTP/1.1 200 OK\r\n"); - hprintf("Content-type: application/json; charset=utf-8\r\n"); - hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)); - hprintf("Connection: close\r\n"); - hprintf("Pragma: no-cache\r\nCache-Control: no-store\r\nExpires:-1\r\n"); - begin_burst(); - DoTemplate(HKEY("json_roomflr"),NULL,&NoCtx); - end_burst(); -} void tmplput_RoomName(StrBuf *Target, WCTemplputParams *TP) { StrBufAppendTemplate(Target, TP, WC->wc_roomname, 0); } -void _gotonext(void) { slrp_highest(); gotonext(); } -void dotskip(void) {smart_goto(sbstr("room"));} -void _display_private(void) { display_private("", 0); } + +void _display_private(void) { + display_private("", 0); +} + void dotgoto(void) { + if (!havebstr("room")) { + readloop(readnew); + return; + } if (WC->wc_view != VIEW_MAILBOX) { /* dotgoto acts like dotskip when we're in a mailbox view */ slrp_highest(); } @@ -3875,9 +2993,9 @@ void dotgoto(void) { void tmplput_roombanner(StrBuf *Target, WCTemplputParams *TP) { - wprintf("
\n"); + wc_printf("
\n"); embed_room_banner(NULL, navbar_default); - wprintf("
\n"); + wc_printf("
\n"); } @@ -4021,6 +3139,9 @@ int ConditionalRoomHas_QR_MAILBOX(StrBuf *Target, WCTemplputParams *TP) } + + + int ConditionalHaveRoomeditRights(StrBuf *Target, WCTemplputParams *TP) { wcsession *WCC = WC; @@ -4075,33 +3196,28 @@ InitModule_ROOMOPS NULL); RegisterPreference("emptyfloors", _("Show empty floors"), PRF_YESNO, NULL); - RegisterNamespace("ROOMNAME", 0, 1, tmplput_RoomName, 0); - - WebcitAddUrlHandler(HKEY("knrooms"), knrooms, 0); - WebcitAddUrlHandler(HKEY("gotonext"), _gotonext, NEED_URL); - WebcitAddUrlHandler(HKEY("skip"), gotonext, NEED_URL); - WebcitAddUrlHandler(HKEY("ungoto"), ungoto, NEED_URL); - WebcitAddUrlHandler(HKEY("dotgoto"), dotgoto, NEED_URL); - WebcitAddUrlHandler(HKEY("dotskip"), dotskip, NEED_URL); - WebcitAddUrlHandler(HKEY("display_private"), _display_private, 0); - WebcitAddUrlHandler(HKEY("goto_private"), goto_private, NEED_URL); - WebcitAddUrlHandler(HKEY("zapped_list"), zapped_list, 0); - WebcitAddUrlHandler(HKEY("display_zap"), display_zap, 0); - WebcitAddUrlHandler(HKEY("zap"), zap, 0); - WebcitAddUrlHandler(HKEY("display_entroom"), display_entroom, 0); - WebcitAddUrlHandler(HKEY("entroom"), entroom, 0); - WebcitAddUrlHandler(HKEY("display_whok"), display_whok, 0); - WebcitAddUrlHandler(HKEY("do_invt_kick"), do_invt_kick, 0); - WebcitAddUrlHandler(HKEY("display_editroom"), display_editroom, 0); - WebcitAddUrlHandler(HKEY("netedit"), netedit, 0); - WebcitAddUrlHandler(HKEY("editroom"), editroom, 0); - WebcitAddUrlHandler(HKEY("delete_room"), delete_room, 0); - WebcitAddUrlHandler(HKEY("set_room_policy"), set_room_policy, 0); - WebcitAddUrlHandler(HKEY("set_floordiv_expanded"), set_floordiv_expanded, NEED_URL|AJAX); - WebcitAddUrlHandler(HKEY("changeview"), change_view, 0); - WebcitAddUrlHandler(HKEY("toggle_self_service"), toggle_self_service, 0); - WebcitAddUrlHandler(HKEY("json_roomflr"), jsonRoomFlr, 0); - RegisterNamespace("ROOMBANNER", 0, 1, tmplput_roombanner, 0); + RegisterNamespace("ROOMNAME", 0, 1, tmplput_RoomName, NULL, CTX_NONE); + + WebcitAddUrlHandler(HKEY("knrooms"), "", 0, knrooms, 0); + WebcitAddUrlHandler(HKEY("dotgoto"), "", 0, dotgoto, NEED_URL); + WebcitAddUrlHandler(HKEY("dotskip"), "", 0, dotskip, NEED_URL); + WebcitAddUrlHandler(HKEY("display_private"), "", 0, _display_private, 0); + WebcitAddUrlHandler(HKEY("goto_private"), "", 0, goto_private, NEED_URL); + WebcitAddUrlHandler(HKEY("zapped_list"), "", 0, zapped_list, 0); + WebcitAddUrlHandler(HKEY("display_zap"), "", 0, display_zap, 0); + WebcitAddUrlHandler(HKEY("zap"), "", 0, zap, 0); + WebcitAddUrlHandler(HKEY("display_entroom"), "", 0, display_entroom, 0); + WebcitAddUrlHandler(HKEY("entroom"), "", 0, entroom, 0); + WebcitAddUrlHandler(HKEY("display_whok"), "", 0, display_whok, 0); + WebcitAddUrlHandler(HKEY("do_invt_kick"), "", 0, do_invt_kick, 0); + WebcitAddUrlHandler(HKEY("display_editroom"), "", 0, display_editroom, 0); + WebcitAddUrlHandler(HKEY("netedit"), "", 0, netedit, 0); + WebcitAddUrlHandler(HKEY("editroom"), "", 0, editroom, 0); + WebcitAddUrlHandler(HKEY("delete_room"), "", 0, delete_room, 0); + WebcitAddUrlHandler(HKEY("set_room_policy"), "", 0, set_room_policy, 0); + WebcitAddUrlHandler(HKEY("changeview"), "", 0, change_view, 0); + WebcitAddUrlHandler(HKEY("toggle_self_service"), "", 0, toggle_self_service, 0); + RegisterNamespace("ROOMBANNER", 0, 1, tmplput_roombanner, NULL, CTX_NONE); RegisterConditional(HKEY("COND:ROOM:TYPE_IS"), 0, ConditionalIsRoomtype, CTX_NONE); RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PERMANENT"), 0, ConditionalRoomHas_QR_PERMANENT, CTX_NONE); @@ -4123,14 +3239,12 @@ InitModule_ROOMOPS RegisterConditional(HKEY("COND:UNGOTO"), 0, ConditionalHaveUngoto, CTX_NONE); RegisterConditional(HKEY("COND:ROOM:EDITACCESS"), 0, ConditionalHaveRoomeditRights, CTX_NONE); - RegisterNamespace("ROOM:UNGOTO", 0, 0, tmplput_ungoto, 0); - RegisterIterator("FLOORS", 0, NULL, GetFloorListHash, NULL, DeleteHash, CTX_FLOORS, CTX_NONE, IT_NOFLAG); - RegisterNamespace("FLOOR:INFO", 1, 2, tmplput_FLOOR_Value, CTX_FLOORS); - RegisterIterator("LKRA", 0, NULL, GetRoomListHashLKRA, NULL, NULL, CTX_ROOMS, CTX_NONE, IT_NOFLAG); - RegisterNamespace("ROOM:INFO", 1, 2, tmplput_ROOM_Value, CTX_ROOMS); -} + RegisterNamespace("ROOM:UNGOTO", 0, 0, tmplput_ungoto, NULL, CTX_NONE); + RegisterIterator("FLOORS", 0, NULL, GetFloorListHash, NULL, NULL, CTX_FLOORS, CTX_NONE, IT_NOFLAG); +} + void SessionDestroyModule_ROOMOPS @@ -4141,5 +3255,6 @@ SessionDestroyModule_ROOMOPS } free_march_list(sess); + DeleteHash(&sess->Floors); } /*@}*/