From: Art Cancro Date: Fri, 2 Nov 2007 14:54:36 +0000 (+0000) Subject: * Updated internal version number of citadel and webcit to 7.23 X-Git-Tag: v7.86~2864 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=06f8d2d511f169a41440c11223102436b5e6023c;p=citadel.git * Updated internal version number of citadel and webcit to 7.23 * Implement RSS feed reader config screen in webcit --- diff --git a/citadel/citadel.h b/citadel/citadel.h index c20ee8042..1bda089c6 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -47,7 +47,7 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 722 /* This version */ +#define REV_LEVEL 723 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 722 /* Oldest compatible export files */ diff --git a/citadel/citadel.nsi b/citadel/citadel.nsi index 82b9d4638..b1696e22e 100644 --- a/citadel/citadel.nsi +++ b/citadel/citadel.nsi @@ -4,7 +4,7 @@ !include "${NSISDIR}\Contrib\Modern UI\System.nsh" !define MUI_PRODUCT "Citadel" -!define MUI_VERSION "7.21" +!define MUI_VERSION "7.23" !define MUI_WELCOMEPAGE !define MUI_LICENSEPAGE !define MUI_COMPONENTSPAGE diff --git a/citadel/configure.ac b/citadel/configure.ac index 9d307d67c..694f74b17 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ AC_PREREQ(2.52) -AC_INIT([Citadel], [7.22], [http://www.citadel.org/]) +AC_INIT([Citadel], [7.23], [http://www.citadel.org/]) AC_REVISION([$Revision: 5108 $]) AC_CONFIG_SRCDIR([citserver.c]) AC_PREFIX_DEFAULT(/usr/local/citadel) diff --git a/webcit/README.txt b/webcit/README.txt index f83693deb..094a7df43 100644 --- a/webcit/README.txt +++ b/webcit/README.txt @@ -1,9 +1,11 @@ WEBCIT for the Citadel System - version 7.11 + version 7.23 Copyright (C) 1996-2007 by the authors. Portions written by: + Art Cancro - Wilifried Goesgens + Wilfried Goesgens + Dave West Nathan Bryant Nick Grossman Andru Luvisi diff --git a/webcit/configure.ac b/webcit/configure.ac index 06e7247c7..4cbbc701b 100644 --- a/webcit/configure.ac +++ b/webcit/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ -AC_INIT([WebCit], [7.22], [http://www.citadel.org/]) +AC_INIT([WebCit], [7.23], [http://www.citadel.org/]) AC_SUBST(PROG_SUBDIRS) AC_DEFINE(PROG_SUBDIRS, [], [Program dirs]) diff --git a/webcit/roomops.c b/webcit/roomops.c index e5148d091..891243959 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -1778,7 +1778,7 @@ void display_editroom(void) wprintf(_("Password")); wprintf(""); wprintf(_("Keep messages on server?")); - wprintf(""); + wprintf(" "); serv_puts("GNET"); serv_getln(buf, sizeof buf); @@ -1835,6 +1835,55 @@ void display_editroom(void) wprintf(""); wprintf("\n"); + wprintf("
\n"); + + wprintf(""); + wprintf(_("Fetch the following RSS feeds and store them in this room:")); + wprintf("

\n"); + + wprintf(""); + + serv_puts("GNET"); + serv_getln(buf, sizeof buf); + if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { + extract_token(cmd, buf, 0, '|', sizeof cmd); + if (!strcasecmp(cmd, "rssclient")) { + safestrncpy(recp, &buf[10], sizeof recp); + wprintf(""); + + wprintf(""); + + wprintf(""); + + wprintf(""); + } + } + + wprintf("\n" + "" + "" + "\n"); + wprintf("\n", WC->nonce); + wprintf(""); + wprintf(""); + wprintf("
"); + wprintf(_("Feed URL")); + wprintf(""); + wprintf("
"); + extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); + escputs(pop3_host); + wprintf(""); + wprintf(" "); + wprintf(_("(remove)")); + wprintf("
"); + wprintf("\n"); + wprintf(""); + wprintf("", _("Add")); + wprintf("
\n"); + wprintf(""); } diff --git a/webcit/webcit.h b/webcit/webcit.h index 5f4c3ccdc..b10ed8ddc 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -117,8 +117,8 @@ extern locale_t wc_locales[]; #define PORT_NUM 2000 /* port number to listen on */ #define DEVELOPER_ID 0 #define CLIENT_ID 4 -#define CLIENT_VERSION 722 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 710 /* min required Citadel ver. */ +#define CLIENT_VERSION 723 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 723 /* min required Citadel ver. */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define LB (1) /* Internal escape chars */