X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Froomops.c;h=2ea692862e01c572c76ffe6b0be416b7db1d8f83;hb=64f430bd72e548b3b57a8d801ec16e9f904281bd;hp=ae101adb80031b246c2858a4c9c304323dee44c1;hpb=0d239d8372269d6567378f5c87f471d986ad3662;p=citadel.git diff --git a/webcit/roomops.c b/webcit/roomops.c index ae101adb8..2ea692862 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -113,11 +113,14 @@ void dotskip(void) { } void dotgoto(void) { + wcsession *WCC = WC; if (!havebstr("room")) { readloop(readnew, eUseDefault); return; } - if (WC->CurRoom.view != VIEW_MAILBOX) { /* dotgoto acts like dotskip when we're in a mailbox view */ + if ((WCC->CurRoom.view != VIEW_MAILBOX) && + (WCC->CurRoom.view != WCC->CurRoom.view)) { + /* dotgoto acts like dotskip when we're in a mailbox view */ slrp_highest(); } smart_goto(sbstr("room")); @@ -716,20 +719,38 @@ void editroom(void) const StrBuf *er_password; const StrBuf *er_dirname; const StrBuf *er_roomaide; + const StrBuf *templ; int succ1, succ2; + templ = sbstr("template"); if (!havebstr("ok_button")) { + putlbstr("success", 0); AppendImportantMessage(_("Cancelled. Changes were not saved."), -1); - output_headers(1, 1, 1, 0, 0, 0); - do_template("room_edit"); - wDumpContent(1); + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; } if (GetCurrentRoomFlags (&WCC->CurRoom, 1) == 0) { - output_headers(1, 1, 1, 0, 0, 0); - do_template("room_edit"); - wDumpContent(1); + putlbstr("success", 0); + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; } @@ -852,11 +873,22 @@ void editroom(void) succ2 = SaveRoomAide (&WCC->CurRoom); if (succ1 + succ2 == 0) { + putlbstr("success", 1); AppendImportantMessage (_("Your changes have been saved."), -1); } - output_headers(1, 1, 1, 0, 0, 0); - do_template("room_edit"); - wDumpContent(1); + else { + putlbstr("success", 0); + } + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; } @@ -940,14 +972,24 @@ void entroom(void) const StrBuf *er_name; const StrBuf *er_type; const StrBuf *er_password; + const StrBuf *template; int er_floor; int er_num_type; int er_view; wcsession *WCC = WC; - if (!havebstr("ok_button")) { + template = sbstr("template"); + if ((WCC == NULL) || !havebstr("ok_button")) { + putlbstr("success", 0); AppendImportantMessage(_("Cancelled. No new room was created."), -1); - display_main_menu(); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else { + display_main_menu(); + } return; } er_name = sbstr("er_name"); @@ -977,8 +1019,16 @@ void entroom(void) Line = NewStrBuf(); StrBuf_ServGetln(Line); if (GetServerStatusMsg(Line, NULL, 1, 2) != 2) { + putlbstr("success", 0); FreeStrBuf(&Line); - display_main_menu(); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else { + display_main_menu(); + } return; } /** TODO: Room created, now update the left hand icon bar for this user */ @@ -989,7 +1039,13 @@ void entroom(void) FreeStrBuf(&Line); /* TODO: should we care about errors? */ WCC->CurRoom.view = er_view; - if ( (WCC != NULL) && ( (WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) ) { + putlbstr("success", 1); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else if ( (WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) { output_headers(1, 1, 1, 0, 0, 0); do_template("room_edit"); wDumpContent(1);