From fcfef7b8661e713f219e0fa5c37d6eceea9adfb7 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 14 Oct 2009 15:26:21 +0000 Subject: [PATCH] * Changed 'guess-name room' to 'hidden room' in the text client (this was done a long time ago in webcit) --- citadel/messages/roomaccess | 6 +++--- citadel/rooms.c | 16 ++++++++++------ 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/citadel/messages/roomaccess b/citadel/messages/roomaccess index 6e62d6b0a..4dabb9605 100644 --- a/citadel/messages/roomaccess +++ b/citadel/messages/roomaccess @@ -1,14 +1,14 @@ Most rooms are public. Anyone on the system may get into a public room. Private rooms may take several forms: - Guess-name: to gain access to this type of room, a user need only know + Hidden: to gain access to this type of room, a user need only know the room's name. No hints are given by the system. - Passworded: same as guess-name but the user must also know a password + Passworded: same as hidden but the user must also know a password to get access. Invitation-only: users may only gain access to this type of room if -an aide gives it to them. +an Aide gives it to them. Personal: this type of room acts as a user-specific "mailbox." diff --git a/citadel/rooms.c b/citadel/rooms.c index 0bffe898a..5fbc76c7f 100644 --- a/citadel/rooms.c +++ b/citadel/rooms.c @@ -534,7 +534,7 @@ void editthisroom(CtdlIPC *ipc) attr->QRflags = set_room_attr(ipc, attr->QRflags, "Private room", QR_PRIVATE); if (attr->QRflags & QR_PRIVATE) { attr->QRflags = set_room_attr(ipc, attr->QRflags, - "Accessible by guessing room name", + "Hidden room (accessible to anyone who knows the room name)", QR_GUESSNAME); } @@ -1071,10 +1071,14 @@ void entroom(CtdlIPC *ipc) IFNEXPERT formout(ipc, "roomaccess"); do { - scr_printf("Help\n<1>Public room\n<2>Guess-name room\n" - "<3>Passworded room\n<4>Invitation-only room\n" - "<5>Personal room\n" - "Enter room type: "); + scr_printf("Help\n" + "<1>Public room (shown to all users by default)\n" + "<2>Hidden room (accessible to anyone who knows the room name)\n" + "<3>Passworded room (hidden, plus requires a password to enter)\n" + "<4>Invitation-only room (requires access to be granted by an Aide)\n" + "<5>Personal room (accessible to you only)\n" + "Enter room type: " + ); do { b = inkey(); } while (((b < '1') || (b > '5')) && (b != '?')); @@ -1099,7 +1103,7 @@ void entroom(CtdlIPC *ipc) if (b == 1) scr_printf(" public room."); if (b == 2) - scr_printf(" guess-name room."); + scr_printf(" hidden room."); if (b == 3) scr_printf(" passworded room, password: %s", new_room_pass); if (b == 4) -- 2.30.2