From 7836de1a004d9353cadb71885e360715884d1601 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 4 Feb 2005 17:22:18 +0000 Subject: [PATCH] * Cleaned up the rcs/cvs Id tags and leading comments at the top of some files --- webcit/ChangeLog | 4 +++- webcit/auth.c | 5 ++--- webcit/calendar_tools.c | 2 +- webcit/calendar_view.c | 2 +- webcit/context_loop.c | 3 +-- webcit/cookie_conversion.c | 7 +++++++ webcit/crypto.c | 7 +++++-- webcit/floors.c | 2 ++ webcit/graphics.c | 5 +++++ webcit/iconbar.c | 6 +++++- webcit/inetconf.c | 3 +-- webcit/listsub.c | 7 +++++++ webcit/locate_host.c | 7 +++---- webcit/mainmenu.c | 10 ++++++---- webcit/netconf.c | 3 +-- webcit/preferences.c | 3 +-- webcit/roomops.c | 7 +++++-- webcit/serv_func.c | 3 +-- webcit/siteconfig.c | 2 ++ webcit/snprintf.c | 3 ++- webcit/summary.c | 6 +++++- webcit/sysmsgs.c | 12 +++++------- webcit/tcp_sockets.c | 5 ++--- webcit/tools.c | 4 +++- webcit/useredit.c | 2 ++ webcit/userlist.c | 12 ++++++++---- webcit/vcard.c | 4 ++-- webcit/vcard_edit.c | 3 +-- webcit/webcit.c | 5 ++--- webcit/webserver.c | 3 +-- webcit/who.c | 6 +++++- 31 files changed, 97 insertions(+), 56 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 9cbaf5e3e..b9a6acec8 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 528.40 2005/02/04 17:22:18 ajc +* Cleaned up the rcs/cvs Id tags and leading comments at the top of some files + Revision 528.39 2005/02/04 03:43:31 ajc * fixed the tasks view in the summary screen @@ -2306,4 +2309,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/auth.c b/webcit/auth.c index 3987ba394..af2f22e0c 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -1,9 +1,8 @@ /* - * auth.c + * $Id$ * - * This file contains code which relates to authentication of users to Citadel. + * Handles authentication of users to a Citadel server. * - * $Id$ */ diff --git a/webcit/calendar_tools.c b/webcit/calendar_tools.c index 713a7feb0..b36497a98 100644 --- a/webcit/calendar_tools.c +++ b/webcit/calendar_tools.c @@ -1,7 +1,7 @@ /* * $Id$ * - * + * Miscellaneous functions which handle calendar components. */ #include diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index abe4b34a8..834a4d3b5 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -1,7 +1,7 @@ /* * $Id$ * - * + * Handles the HTML display of calendar items. */ #include diff --git a/webcit/context_loop.c b/webcit/context_loop.c index f4bd27372..995393b07 100644 --- a/webcit/context_loop.c +++ b/webcit/context_loop.c @@ -1,12 +1,11 @@ /* - * context_loop.c + * $Id$ * * This is the other half of the webserver. It handles the task of hooking * up HTTP requests with the sessions they belong to, using HTTP cookies to * keep track of things. If the HTTP request doesn't belong to any currently * active session, a new session is started. * - * $Id$ */ #include diff --git a/webcit/cookie_conversion.c b/webcit/cookie_conversion.c index 6a4d9f230..644dbfc32 100644 --- a/webcit/cookie_conversion.c +++ b/webcit/cookie_conversion.c @@ -1,3 +1,10 @@ +/* + * $Id$ + * + * Utility functions which convert the HTTP cookie format we use to and + * from user/password/room strings. + * + */ #include #include diff --git a/webcit/crypto.c b/webcit/crypto.c index 07c4d405e..27e6893d0 100644 --- a/webcit/crypto.c +++ b/webcit/crypto.c @@ -1,8 +1,11 @@ -/* $Id$ */ +/* + * $Id$ + * + * Provides HTTPS, when the OpenSSL library is available. + */ #ifdef HAVE_OPENSSL - #include #include #include diff --git a/webcit/floors.c b/webcit/floors.c index f2ec182fa..075942447 100644 --- a/webcit/floors.c +++ b/webcit/floors.c @@ -1,4 +1,6 @@ /* + * $Id$ + * * Administrative screens for floor maintenance * */ diff --git a/webcit/graphics.c b/webcit/graphics.c index 964a05926..3f09ef837 100644 --- a/webcit/graphics.c +++ b/webcit/graphics.c @@ -1,3 +1,8 @@ +/* + * $Id$ + * + * Handles HTTP upload of graphics files into the system. + */ #include #include diff --git a/webcit/iconbar.c b/webcit/iconbar.c index 5cad259de..36d3b57b0 100644 --- a/webcit/iconbar.c +++ b/webcit/iconbar.c @@ -1,4 +1,8 @@ -/* $Id$ */ +/* + * $Id$ + * + * Displays and customizes the iconbar. + */ #include #include diff --git a/webcit/inetconf.c b/webcit/inetconf.c index 2becce66a..49ca952c0 100644 --- a/webcit/inetconf.c +++ b/webcit/inetconf.c @@ -1,9 +1,8 @@ /* - * inetconf.c + * $Id$ * * Functions which handle Internet domain configuration etc. * - * $Id$ */ #include diff --git a/webcit/listsub.c b/webcit/listsub.c index 961e253a6..919408fab 100644 --- a/webcit/listsub.c +++ b/webcit/listsub.c @@ -1,3 +1,10 @@ +/* + * $Id$ + * + * Web forms for handling mailing list subscribe/unsubscribe requests. + * + */ + #include #include #include diff --git a/webcit/locate_host.c b/webcit/locate_host.c index 4bec272f6..923a68165 100644 --- a/webcit/locate_host.c +++ b/webcit/locate_host.c @@ -1,5 +1,7 @@ /* - * locate the originating host + * $Id$ + * + * Examine a socket and determine the name/address of the originating host. */ @@ -24,9 +26,6 @@ #include #include "webcit.h" - - - void locate_host(char *tbuf, int client_socket) { struct sockaddr_in cs; diff --git a/webcit/mainmenu.c b/webcit/mainmenu.c index 00407c911..e5cdbf0e5 100644 --- a/webcit/mainmenu.c +++ b/webcit/mainmenu.c @@ -1,7 +1,9 @@ -/* $Id$ */ - - - +/* + * $Id$ + * + * Displays the "advanced" (main) menu. + * + */ #include #include diff --git a/webcit/netconf.c b/webcit/netconf.c index 6d037ce4f..0c16ebc59 100644 --- a/webcit/netconf.c +++ b/webcit/netconf.c @@ -1,9 +1,8 @@ /* - * netconf.c + * $Id$ * * Functions which handle network and sharing configuration. * - * $Id$ */ #include diff --git a/webcit/preferences.c b/webcit/preferences.c index 9ae4de5f9..86c8cde9e 100644 --- a/webcit/preferences.c +++ b/webcit/preferences.c @@ -1,9 +1,8 @@ /* - * preferences.c + * $Id$ * * Manage user preferences with a little help from the Citadel server. * - * $Id$ */ #include diff --git a/webcit/roomops.c b/webcit/roomops.c index 207bbca1e..7054e8259 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -1,5 +1,8 @@ -/* $Id$ */ - +/* + * $Id$ + * + * Lots of different room-related operations. + */ #include #include diff --git a/webcit/serv_func.c b/webcit/serv_func.c index 055deb540..cf102418f 100644 --- a/webcit/serv_func.c +++ b/webcit/serv_func.c @@ -1,9 +1,8 @@ /* - * serv_func.c + * $Id$ * * Handles various types of data transfer operations with the Citadel service. * - * $Id$ */ #include diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 3c8b000bf..c477ceaf0 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -1,4 +1,6 @@ /* + * $Id$ + * * Administrative screen for site-wide configuration * */ diff --git a/webcit/snprintf.c b/webcit/snprintf.c index 7db792c20..950851f06 100644 --- a/webcit/snprintf.c +++ b/webcit/snprintf.c @@ -1,8 +1,9 @@ /* + * $Id$ + * * modified from Sten Gunterberg's BUGTRAQ post of 22 Jul 1997 * --nathan bryant * - * $Id$ */ /* diff --git a/webcit/summary.c b/webcit/summary.c index f98fda44e..f6e884aef 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -1,4 +1,8 @@ -/* $Id$ */ +/* + * $Id$ + * + * Displays the "Summary Page" + */ #include #include diff --git a/webcit/sysmsgs.c b/webcit/sysmsgs.c index 00b3ff1fa..b03249ee4 100644 --- a/webcit/sysmsgs.c +++ b/webcit/sysmsgs.c @@ -1,4 +1,8 @@ - +/* + * $Id$ + * + * Editing of various text files on the Citadel server. + */ #include #include @@ -22,12 +26,6 @@ #include "webcit.h" - - - - - - /* * display the form for editing something (room info, bio, etc) */ diff --git a/webcit/tcp_sockets.c b/webcit/tcp_sockets.c index 16d3dd6fe..6752c5957 100644 --- a/webcit/tcp_sockets.c +++ b/webcit/tcp_sockets.c @@ -1,9 +1,8 @@ /* - * tcp_sockets.c + * $Id$ * - * TCP socket module for WebCit + * TCP client socket module for WebCit * - * $Id$ */ /* diff --git a/webcit/tools.c b/webcit/tools.c index 7ec1b8319..83c4d45e0 100644 --- a/webcit/tools.c +++ b/webcit/tools.c @@ -1,5 +1,7 @@ /* - * tools.c -- Miscellaneous routines + * $Id$ + * + * Miscellaneous routines */ #include diff --git a/webcit/useredit.c b/webcit/useredit.c index 040282c55..78fa28ba6 100644 --- a/webcit/useredit.c +++ b/webcit/useredit.c @@ -1,4 +1,6 @@ /* + * $Id$ + * * Administrative screen to add/change/delete user accounts * */ diff --git a/webcit/userlist.c b/webcit/userlist.c index f291247eb..217c58bb7 100644 --- a/webcit/userlist.c +++ b/webcit/userlist.c @@ -1,3 +1,10 @@ +/* + * $Id$ + * + * Display a list of all accounts on a Citadel system. + * + */ + #include #include #include @@ -19,9 +26,6 @@ #include #include "webcit.h" - - - struct namelist { struct namelist *next; char name[32]; @@ -66,7 +70,7 @@ void userlist(void) wprintf("
"); wprintf(""); wprintf(""); - wprintf("\n"); + wprintf("\n"); while (serv_gets(buf), strcmp(buf, "000")) { extract(fl, buf, 0); diff --git a/webcit/vcard.c b/webcit/vcard.c index f11d253b7..59f99f7fe 100644 --- a/webcit/vcard.c +++ b/webcit/vcard.c @@ -1,9 +1,9 @@ /* * $Id$ * - * vCard implementation for Citadel/UX + * vCard data type implementation for Citadel/UX * - * Copyright (C) 1999 by Art Cancro + * Copyright (C) 1999-2004 by Art Cancro * This code is freely redistributable under the terms of the GNU General * Public License. All other rights reserved. */ diff --git a/webcit/vcard_edit.c b/webcit/vcard_edit.c index ee51e4b75..9397082a8 100644 --- a/webcit/vcard_edit.c +++ b/webcit/vcard_edit.c @@ -1,9 +1,8 @@ /* - * vcard_edit.c + * $Id$ * * Handles editing of vCard objects. * - * $Id$ */ #include diff --git a/webcit/webcit.c b/webcit/webcit.c index af6eedce4..790c3e181 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -1,11 +1,10 @@ /* - * webcit.c + * $Id$ * - * This is the actual program called by the webserver. It maintains a + * This is the main transaction loop of the web service. It maintains a * persistent session to the Citadel server, handling HTTP WebCit requests as * they arrive and presenting a user interface. * - * $Id$ */ #include diff --git a/webcit/webserver.c b/webcit/webserver.c index 05f079288..faa836d30 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -1,11 +1,10 @@ /* - * webserver.c + * $Id$ * * This contains a simple multithreaded TCP server manager. It sits around * waiting on the specified port for incoming HTTP connections. When a * connection is established, it calls context_loop() from context_loop.c. * - * $Id$ */ #include diff --git a/webcit/who.c b/webcit/who.c index aa04c8f60..eed1403f2 100644 --- a/webcit/who.c +++ b/webcit/who.c @@ -1,4 +1,8 @@ -/* $Id$ */ +/* + * $Id$ + * + * Display a list of all users currently logged on to the Citadel server. + */ #include #include -- 2.30.2
User NameNumberAccess LevelLast CallTotal CallsTotal Posts
Last LoginTotal LoginsTotal Posts