diff --git a/COPYRIGHT b/COPYRIGHT index 6fadee8b..b98e19db 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,10 +1,10 @@ -$Id: COPYRIGHT,v 1.4 1996-10-12 03:13:04 dfs Exp $ +$Id: COPYRIGHT,v 1.5 1997-01-16 04:14:18 dfs Exp $ THE REMIND COPYRIGHT 1. REMIND refers to the entire set of files and documentation in the REMIND package. -2. REMIND is Copyright 1992-1996 by David Skoll, +2. REMIND is Copyright 1992-1997 by David Skoll, except where noted in individual files. 3. DISTRIBUTION AND USE diff --git a/Makefile b/Makefile index 1d5a8eb3..31b0b9bc 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Makefile for REMIND -# $Id: Makefile,v 1.16 1996-12-18 00:20:43 dfs Exp $ +# $Id: Makefile,v 1.17 1997-01-16 04:14:18 dfs Exp $ #----------------------------------------------------------------------------- # THINGS FOR YOU TO EDIT START BELOW @@ -132,28 +132,23 @@ var.o: var.c $(STDHDRS) expr.h tgz: -rm -rf remind-$(VERSION) -mkdir remind-$(VERSION) - cd remind-$(VERSION); for i in $(MANIFEST) ;do ln -s ../$$i .; done; cd .. + cd remind-$(VERSION); for i in www $(MANIFEST) ;do ln -s ../$$i .; done; cd .. tar -c -h -v -f remind-3.0.16.tar remind-$(VERSION) gzip -v -9 remind-3.0.16.tar mv remind-3.0.16.tar.gz remind-3.0.16.tgz rm -rf remind-$(VERSION) shar: - shar -o./Shar -sdfs@doe.carleton.ca -a -c -n"Remind $(VERSION)" -m -l58 -o./Shar $(MANIFEST) + shar -o./Shar -sdfs@doe.carleton.ca -a -c -n"Remind $(VERSION)" -m -l58 -o./Shar www $(MANIFEST) backup: - tar cvzf ../rbackup.tgz $(MANIFEST) + tar cvzf ../rbackup.tgz www $(MANIFEST) zip: - zip ../rbackup.zip $(MANIFEST) - -todos: - rm -rf DOS - mkdir DOS - for i in $(MANIFEST) ; do todos < $$i > DOS/$$i; done + zip ../rbackup.zip www $(MANIFEST) transmit: - sz -a -e $(MANIFEST) + sz -a -e $(MANIFEST) www/* install: install-bin install-scripts install-man @@ -202,14 +197,3 @@ install-man: -chmod $(MANMODE) $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT) -chown $(OWNER) $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT) -chgrp $(GROUP) $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT) - -release: - -mkdir RELEASE - -rm -f RELEASE/* - mkpatch ../prev . patch.16 Shar "Remind-3.0/Patch-15/part" - mv Shar* RELEASE - rm -f patch.16* - for i in *.1; do nroff -man $$i | sed -e 's/_//g' > `basename $$i .1`.man; done - mv *.man RELEASE - for i in *.1; do groff -man -Tps $$i > `basename $$i .1`.ps; done - mv *.ps RELEASE diff --git a/README.UNIX b/README.UNIX index de56abeb..5786a377 100644 --- a/README.UNIX +++ b/README.UNIX @@ -1,4 +1,4 @@ -$Id: README.UNIX,v 1.2 1996-10-12 02:59:06 dfs Exp $ +$Id: README.UNIX,v 1.3 1997-01-16 04:14:18 dfs Exp $ REMIND version 3.0 for UNIX REMIND is a sophisticated alarm/calendar program. Details are given @@ -30,6 +30,9 @@ in the man page, "remind.1". 8 - Type 'make install' to install Remind, kall, rem and the man pages. +The subdirectory "www" contains scripts for making a nice calendar +web server. See the files README and Makefile in that directory. + Two shell scripts, "remind-all.csh" and "remind-all.sh" are provided. These allow automatic mailing of reminders to all users who create a $HOME/.reminders file. These two scripts are equivalent; one is a diff --git a/WHATSNEW.30 b/WHATSNEW.30 index 9270333d..d037e823 100644 --- a/WHATSNEW.30 +++ b/WHATSNEW.30 @@ -4,6 +4,9 @@ CHANGES TO REMIND + MINOR ENHANCEMENTS +- Bundled scripts for making a nice WWW calendar server. See the + "www" subdirectory in the release. + - Added support for the Romanian language, courtesy of Liviu Daia - Changed sunrise() and sunset() as follows: If the sun never rises, diff --git a/amiga.c b/amiga.c index cc03fab6..4b3932d2 100644 --- a/amiga.c +++ b/amiga.c @@ -7,10 +7,10 @@ /* This file is Copyright (C) 1995 by Martin Hohl */ /* */ /* This file is part of REMIND. */ -/* Remind is Copyright (C) 1992-1996 by David F. Skoll */ +/* Remind is Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: amiga.c,v 1.1 1996-03-31 04:01:53 dfs Exp $"; +static char const RCSID[] = "$Id: amiga.c,v 1.2 1997-01-16 04:14:19 dfs Exp $"; #include #include diff --git a/calendar.c b/calendar.c index 07fa0aa7..02fb9f58 100644 --- a/calendar.c +++ b/calendar.c @@ -5,11 +5,11 @@ /* The code for generating a calendar. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: calendar.c,v 1.2 1996-03-31 04:01:54 dfs Exp $"; +static char const RCSID[] = "$Id: calendar.c,v 1.3 1997-01-16 04:14:19 dfs Exp $"; #include "config.h" #include diff --git a/config.h b/config.h index 13dd4e31..ee361550 100644 --- a/config.h +++ b/config.h @@ -7,11 +7,11 @@ /* care of certain system dependencies. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: config.h,v 1.5 1996-10-12 02:49:32 dfs Exp $ */ +/* $Id: config.h,v 1.6 1997-01-16 04:14:20 dfs Exp $ */ /*---------------------------------------------------------------------*/ /* LAT_DEG, LAT_MIN and LAT_SEC: Latitude of your location */ diff --git a/danish.h b/danish.h index c0fbd30f..f8ac1bb2 100644 --- a/danish.h +++ b/danish.h @@ -6,12 +6,12 @@ /* */ /* This file is part of REMIND. */ /* */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* This file is Copyright (C) 1993 by Mogens Lynnerup. */ /* */ /***************************************************************/ -/* $Id: danish.h,v 1.1 1996-03-27 03:25:51 dfs Exp $ */ +/* $Id: danish.h,v 1.2 1997-01-16 04:14:20 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Danish" diff --git a/defs.rem b/defs.rem index a8b1ef85..709f1e35 100644 --- a/defs.rem +++ b/defs.rem @@ -17,12 +17,12 @@ # "#COLORS" for examples of ANSI color escape sequences. # # # # This file is part of REMIND. # -# Copyright (C) 1992-1996 by David F. Skoll # +# Copyright (C) 1992-1997 by David F. Skoll # # # ############################################################################# # -# $Id: defs.rem,v 1.2 1996-12-18 00:20:44 dfs Exp $ +# $Id: defs.rem,v 1.3 1997-01-16 04:14:20 dfs Exp $ # RUN OFF diff --git a/dorem.c b/dorem.c index f15e25c6..caed5f8a 100644 --- a/dorem.c +++ b/dorem.c @@ -7,11 +7,11 @@ /* commands. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: dorem.c,v 1.3 1996-04-28 02:01:54 dfs Exp $"; +static char const RCSID[] = "$Id: dorem.c,v 1.4 1997-01-16 04:14:21 dfs Exp $"; #include "config.h" #include diff --git a/dosubst.c b/dosubst.c index ee72b766..c3db6d13 100644 --- a/dosubst.c +++ b/dosubst.c @@ -6,11 +6,11 @@ /* reminders are triggered. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: dosubst.c,v 1.3 1996-10-12 02:49:32 dfs Exp $"; +static char const RCSID[] = "$Id: dosubst.c,v 1.4 1997-01-16 04:14:21 dfs Exp $"; #define L_IN_DOSUBST #include "config.h" diff --git a/dutch.h b/dutch.h index a5eaa84c..c4b98291 100644 --- a/dutch.h +++ b/dutch.h @@ -11,11 +11,11 @@ /* Further corrections by Erik-Jan Vens */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: dutch.h,v 1.1 1996-03-27 03:25:53 dfs Exp $ */ +/* $Id: dutch.h,v 1.2 1997-01-16 04:14:21 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Dutch" diff --git a/english.h b/english.h index c97d6f63..9b172512 100644 --- a/english.h +++ b/english.h @@ -5,11 +5,11 @@ /* Support for the English language. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: english.h,v 1.1 1996-03-27 03:25:53 dfs Exp $ */ +/* $Id: english.h,v 1.2 1997-01-16 04:14:21 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "English" diff --git a/err.h b/err.h index 44284a85..4ab89e3c 100644 --- a/err.h +++ b/err.h @@ -5,11 +5,11 @@ /* Error definitions. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: err.h,v 1.2 1996-04-28 02:01:55 dfs Exp $ */ +/* $Id: err.h,v 1.3 1997-01-16 04:14:22 dfs Exp $ */ /* Note that not all of the "errors" are really errors - some are just messages for information purposes. Constants beginning with M_ should diff --git a/expr.c b/expr.c index 25dc22d1..8217acf5 100644 --- a/expr.c +++ b/expr.c @@ -5,11 +5,11 @@ /* This file contains routines to parse and evaluate */ /* expressions. */ /* */ -/* Copyright 1992-1996 by David F. Skoll */ +/* Copyright 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: expr.c,v 1.4 1996-05-25 18:14:51 dfs Exp $"; +static char const RCSID[] = "$Id: expr.c,v 1.5 1997-01-16 04:14:22 dfs Exp $"; #include "config.h" #include diff --git a/expr.h b/expr.h index 204cb692..87ecbdc4 100644 --- a/expr.h +++ b/expr.h @@ -5,11 +5,11 @@ /* Contains a few definitions used by expression evaluator. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: expr.h,v 1.1 1996-03-27 03:25:54 dfs Exp $ */ +/* $Id: expr.h,v 1.2 1997-01-16 04:14:22 dfs Exp $ */ /* Define the types of values */ #define ERR_TYPE 0 diff --git a/files.c b/files.c index 88cc9e90..9b4966db 100644 --- a/files.c +++ b/files.c @@ -7,11 +7,11 @@ /* files. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: files.c,v 1.3 1996-05-25 19:10:12 dfs Exp $"; +static char const RCSID[] = "$Id: files.c,v 1.4 1997-01-16 04:14:22 dfs Exp $"; #include "config.h" #include diff --git a/finnish.h b/finnish.h index 4f9a3491..0c0b7c8e 100644 --- a/finnish.h +++ b/finnish.h @@ -11,11 +11,11 @@ /* */ /* This file is part of REMIND. */ /* This file is Copyright (C) 1993, 1994 by Mikko Silvonen. */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: finnish.h,v 1.3 1996-04-29 19:34:37 dfs Exp $ */ +/* $Id: finnish.h,v 1.4 1997-01-16 04:14:23 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Finnish" diff --git a/french.h b/french.h index 52523cfc..816f9638 100644 --- a/french.h +++ b/french.h @@ -8,13 +8,13 @@ /* */ /* This file is part of REMIND. */ /* */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* This file is Copyright (C) 1993 by Laurent Duperval and */ /* David F. Skoll. */ /* */ /***************************************************************/ -/* $Id: french.h,v 1.3 1996-04-29 19:34:37 dfs Exp $ */ +/* $Id: french.h,v 1.4 1997-01-16 04:14:23 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "French" diff --git a/funcs.c b/funcs.c index 0f6e5233..2c932301 100644 --- a/funcs.c +++ b/funcs.c @@ -6,11 +6,11 @@ /* expressions. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: funcs.c,v 1.5 1996-12-18 00:20:45 dfs Exp $"; +static char const RCSID[] = "$Id: funcs.c,v 1.6 1997-01-16 04:14:24 dfs Exp $"; #include "config.h" #include diff --git a/german.h b/german.h index 350504bc..1f21e341 100644 --- a/german.h +++ b/german.h @@ -9,11 +9,11 @@ /* I don't speak German. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: german.h,v 1.1 1996-03-27 03:25:56 dfs Exp $ */ +/* $Id: german.h,v 1.2 1997-01-16 04:14:24 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "German" diff --git a/globals.c b/globals.c index 33381016..8c898647 100644 --- a/globals.c +++ b/globals.c @@ -8,11 +8,11 @@ /* globals.h and err.h */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: globals.c,v 1.1 1996-03-27 03:25:57 dfs Exp $"; +static char const RCSID[] = "$Id: globals.c,v 1.2 1997-01-16 04:14:24 dfs Exp $"; #include "config.h" #include /* For defintion of FILE - sigh! */ diff --git a/globals.h b/globals.h index 33293f6e..837d8c62 100644 --- a/globals.h +++ b/globals.h @@ -7,11 +7,11 @@ /* MK_GLOBALS. Also contains useful macro definitions. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: globals.h,v 1.1 1996-03-27 03:25:57 dfs Exp $ */ +/* $Id: globals.h,v 1.2 1997-01-16 04:14:24 dfs Exp $ */ #ifdef MK_GLOBALS #undef EXTERN diff --git a/hbcal.c b/hbcal.c index 241f8b22..514bedab 100644 --- a/hbcal.c +++ b/hbcal.c @@ -5,14 +5,14 @@ /* Support for the Hebrew calendar */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /* Derived from code written by Amos Shapir in 1978; revised */ /* 1985. */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: hbcal.c,v 1.1 1996-03-27 03:25:58 dfs Exp $"; +static char const RCSID[] = "$Id: hbcal.c,v 1.2 1997-01-16 04:14:26 dfs Exp $"; #include /* For FILE used by protos.h - sigh. */ #include "config.h" diff --git a/init.c b/init.c index 5af31dcb..f1d6e7ae 100644 --- a/init.c +++ b/init.c @@ -7,11 +7,11 @@ /* in normal mode. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: init.c,v 1.3 1996-10-27 21:28:03 dfs Exp $"; +static char const RCSID[] = "$Id: init.c,v 1.4 1997-01-16 04:14:26 dfs Exp $"; #define L_IN_INIT 1 #include "config.h" diff --git a/italian.h b/italian.h index 13606952..1b689d83 100644 --- a/italian.h +++ b/italian.h @@ -7,11 +7,11 @@ /* This file is part of REMIND. */ /* It is Copyright (C) 1996 by Valerio Aimale */ /* */ -/* Remind is copyright (C) 1992-1996 by David F. Skoll */ +/* Remind is copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: italian.h,v 1.1 1996-10-12 02:49:33 dfs Exp $ */ +/* $Id: italian.h,v 1.2 1997-01-16 04:14:26 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Italian" diff --git a/lang.h b/lang.h index e5259ebd..d991dea3 100644 --- a/lang.h +++ b/lang.h @@ -5,11 +5,11 @@ /* Header file for language support for various languages. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: lang.h,v 1.5 1996-12-10 02:36:33 dfs Exp $ */ +/* $Id: lang.h,v 1.6 1997-01-16 04:14:26 dfs Exp $ */ /* I'm chauvinistic and name each language with its English name... */ diff --git a/main.c b/main.c index e78e6ec7..170b40e7 100644 --- a/main.c +++ b/main.c @@ -6,11 +6,11 @@ /* routines, etc. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: main.c,v 1.3 1996-04-28 02:01:59 dfs Exp $"; +static char const RCSID[] = "$Id: main.c,v 1.4 1997-01-16 04:14:27 dfs Exp $"; #include "config.h" #ifdef HAVE_STDLIB_H diff --git a/moon.c b/moon.c index 2ce77337..ceeab638 100644 --- a/moon.c +++ b/moon.c @@ -5,11 +5,11 @@ /* Calculations for figuring out moon phases. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: moon.c,v 1.1 1996-03-27 03:26:03 dfs Exp $"; +static char const RCSID[] = "$Id: moon.c,v 1.2 1997-01-16 04:14:27 dfs Exp $"; /* All of these routines were adapted from the program "moontool" by John Walker, February 1988. Here's the blurb from moontool: diff --git a/norwgian.h b/norwgian.h index ca0e215f..0d4124e4 100644 --- a/norwgian.h +++ b/norwgian.h @@ -6,11 +6,11 @@ /* */ /* This file is part of REMIND. */ /* This file is Copyright (C) 1993 by Trygve Randen. */ -/* Remind is Copyright (C) 1992-1996 by David F. Skoll */ +/* Remind is Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: norwgian.h,v 1.1 1996-03-27 03:26:03 dfs Exp $ */ +/* $Id: norwgian.h,v 1.2 1997-01-16 04:14:27 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Norwegian" diff --git a/omit.c b/omit.c index 32e97588..838c5d70 100644 --- a/omit.c +++ b/omit.c @@ -6,11 +6,11 @@ /* the data structures for OMITted dates. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: omit.c,v 1.2 1996-04-28 02:02:00 dfs Exp $"; +static char const RCSID[] = "$Id: omit.c,v 1.3 1997-01-16 04:14:28 dfs Exp $"; #include "config.h" #include diff --git a/os2func.c b/os2func.c index ba796bf3..9a408499 100644 --- a/os2func.c +++ b/os2func.c @@ -7,11 +7,11 @@ /* This file is part of REMIND. */ /* */ /* This file is Copyright (C) 1993 by Russ Herman. */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: os2func.c,v 1.1 1996-03-27 03:26:04 dfs Exp $"; +static char const RCSID[] = "$Id: os2func.c,v 1.2 1997-01-16 04:14:28 dfs Exp $"; #ifdef OS2_POPUP #define INCL_VIO diff --git a/polish.h b/polish.h index 97c83472..b0c11aae 100644 --- a/polish.h +++ b/polish.h @@ -9,11 +9,11 @@ /* Polish. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: polish.h,v 1.3 1996-04-29 19:34:38 dfs Exp $ */ +/* $Id: polish.h,v 1.4 1997-01-16 04:14:28 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Polish" @@ -400,7 +400,7 @@ PUBLIC void Usage(void) void Usage() #endif /* HAVE_PROTOS */ { - fprintf(ErrFp, "\nREMIND %s (%s version) Copyright 1992-1996 by David F. Skoll\n", VERSION, L_LANGNAME); + fprintf(ErrFp, "\nREMIND %s (%s version) Copyright 1992-1997 by David F. Skoll\n", VERSION, L_LANGNAME); #ifdef BETA fprintf(ErrFp, ">>>> BETA VERSION <<<<\n"); #endif diff --git a/portbr.h b/portbr.h index 3916a9ed..04c97ef1 100644 --- a/portbr.h +++ b/portbr.h @@ -8,13 +8,13 @@ /* */ /* This file is part of REMIND. */ /* */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* This file is Copyright (C) 1996 by Marco Paganini and */ /* David F. Skoll. */ /* */ /***************************************************************/ -/* $Id: portbr.h,v 1.1 1996-06-22 02:21:29 dfs Exp $ */ +/* $Id: portbr.h,v 1.2 1997-01-16 04:14:29 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Brazilian Portuguese" @@ -261,7 +261,7 @@ PUBLIC void Usage(void) void Usage() #endif /* HAVE_PROTOS */ { - fprintf(ErrFp, "\nREMIND %s (versao %s) (C) 1992-1996 by David F. Skoll\n", VERSION, L_LANGNAME); + fprintf(ErrFp, "\nREMIND %s (versao %s) (C) 1992-1997 by David F. Skoll\n", VERSION, L_LANGNAME); #ifdef BETA fprintf(ErrFp, ">>>> VERSAO BETA <<<<\n"); #endif diff --git a/protos.h b/protos.h index 391d2465..839561d1 100644 --- a/protos.h +++ b/protos.h @@ -5,11 +5,11 @@ /* Function Prototypes. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: protos.h,v 1.2 1996-03-31 04:01:57 dfs Exp $ */ +/* $Id: protos.h,v 1.3 1997-01-16 04:14:29 dfs Exp $ */ #ifdef HAVE_PROTOS #define ARGS(x) x diff --git a/queue.c b/queue.c index 7759307f..df742017 100644 --- a/queue.c +++ b/queue.c @@ -5,11 +5,11 @@ /* Queue up reminders for subsequent execution. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: queue.c,v 1.1 1996-03-27 03:26:05 dfs Exp $"; +static char const RCSID[] = "$Id: queue.c,v 1.2 1997-01-16 04:14:29 dfs Exp $"; #include "config.h" diff --git a/rem2ps.c b/rem2ps.c index da619ebf..7928f3a8 100644 --- a/rem2ps.c +++ b/rem2ps.c @@ -5,11 +5,11 @@ /* Print a PostScript calendar. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: rem2ps.c,v 1.5 1996-12-18 00:20:46 dfs Exp $"; +static char const RCSID[] = "$Id: rem2ps.c,v 1.6 1997-01-16 04:14:29 dfs Exp $"; #include "config.h" #include "lang.h" @@ -160,7 +160,7 @@ char argv[]; if (!strcmp(LineBuffer, PSBEGIN)) { if (!validfile) { if (Verbose) { - fprintf(stderr, "Rem2PS: Version %s Copyright 1992-1996 by David F. Skoll\n\n", VERSION); + fprintf(stderr, "Rem2PS: Version %s Copyright 1992-1997 by David F. Skoll\n\n", VERSION); fprintf(stderr, "Generating PostScript calendar\n"); } } diff --git a/rem2ps.h b/rem2ps.h index 87c6acb7..25eb2900 100644 --- a/rem2ps.h +++ b/rem2ps.h @@ -5,16 +5,17 @@ /* Define the PostScript prologue */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: rem2ps.h,v 1.1 1996-03-27 03:26:08 dfs Exp $ */ +/* $Id: rem2ps.h,v 1.2 1997-01-16 04:14:30 dfs Exp $ */ char *PSProlog1[] = { "% This file was produced by Remind and Rem2PS, written by", "% David F. Skoll.", + "% Remind and Rem2PS are Copyright 1992-1997 David F. Skoll.", "/ISOLatin1Encoding where { pop save true }{ false } ifelse", " /ISOLatin1Encoding [ StandardEncoding 0 45 getinterval aload pop /minus", " StandardEncoding 46 98 getinterval aload pop /dotlessi /grave /acute", diff --git a/remind-all.sh b/remind-all.sh index ef9ff612..5cea2349 100644 --- a/remind-all.sh +++ b/remind-all.sh @@ -3,9 +3,9 @@ # This file is part of REMIND # -# $Id: remind-all.sh,v 1.1 1996-03-27 03:26:08 dfs Exp $ +# $Id: remind-all.sh,v 1.2 1997-01-16 04:14:30 dfs Exp $ # -# REMIND is Copyright (C) 1992-1996 by David F. Skoll +# REMIND is Copyright (C) 1992-1997 by David F. Skoll # This file is Copyright (C) 1990 by Bill Aten # Thanks to Bill Aten for this script. diff --git a/romanian.h b/romanian.h index 7f5e0857..c220de39 100644 --- a/romanian.h +++ b/romanian.h @@ -8,12 +8,12 @@ /* */ /* This file is part of REMIND. */ /* */ -/* REMIND is Copyright (C) 1992-1996 by David F. Skoll */ +/* REMIND is Copyright (C) 1992-1997 by David F. Skoll */ /* This file is Copyright (C) 1996 by Liviu Daia */ /* */ /***************************************************************/ -/* $Id: romanian.h,v 1.1 1996-12-10 02:36:35 dfs Exp $ */ +/* $Id: romanian.h,v 1.2 1997-01-16 04:14:31 dfs Exp $ */ /* The very first define in a language support file must be L_LANGNAME: */ #define L_LANGNAME "Romanian" diff --git a/sort.c b/sort.c index 36f1053a..4e6dbae6 100644 --- a/sort.c +++ b/sort.c @@ -5,11 +5,11 @@ /* Routines for sorting reminders by trigger date */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: sort.c,v 1.1 1996-03-27 03:26:10 dfs Exp $"; +static char const RCSID[] = "$Id: sort.c,v 1.2 1997-01-16 04:14:31 dfs Exp $"; #include "config.h" diff --git a/test-rem b/test-rem index 5946a13e..e9a27a0b 100644 --- a/test-rem +++ b/test-rem @@ -2,14 +2,14 @@ # --------------------------------------------------------------------------- # TEST-REM # -# $Id: test-rem,v 1.1 1996-03-27 03:26:10 dfs Exp $ +# $Id: test-rem,v 1.2 1997-01-16 04:14:31 dfs Exp $ # # This file runs an acceptance test for Remind. To use it, type: # sh test-rem OR make test # in the build directory. # # This file is part of REMIND. -# Copyright (C) 1992-1996 by David F. Skoll +# Copyright (C) 1992-1997 by David F. Skoll # --------------------------------------------------------------------------- TEST_GETENV="foo bar baz" ; export TEST_GETENV diff --git a/test-rem.bat b/test-rem.bat index b69652af..39e100f3 100644 --- a/test-rem.bat +++ b/test-rem.bat @@ -2,14 +2,14 @@ rem --------------------------------------------------------------------------- rem TEST-REM rem -rem $Id: test-rem.bat,v 1.1 1996-03-27 03:26:10 dfs Exp $ +rem $Id: test-rem.bat,v 1.2 1997-01-16 04:14:31 dfs Exp $ rem rem This file runs an MSDOS acceptance test for Remind. To use it, type: rem test-rem rem in the build directory. rem rem This file is part of REMIND. -rem Copyright (C) 1992-1996 by David F. Skoll +rem Copyright (C) 1992-1997 by David F. Skoll rem --------------------------------------------------------------------------- del test.out > nul diff --git a/test-rem.cmd b/test-rem.cmd index 42ead6e2..b341fa1d 100644 --- a/test-rem.cmd +++ b/test-rem.cmd @@ -2,14 +2,14 @@ rem --------------------------------------------------------------------------- rem TEST-REM rem -rem $Id: test-rem.cmd,v 1.1 1996-03-27 03:26:11 dfs Exp $ +rem $Id: test-rem.cmd,v 1.2 1997-01-16 04:14:32 dfs Exp $ rem rem This file runs an OS/2 acceptance test for Remind. To use it, type: rem test-rem rem in the build directory. rem rem This file is part of REMIND. -rem Copyright (C) 1992-1996 by David F. Skoll +rem Copyright (C) 1992-1997 by David F. Skoll rem --------------------------------------------------------------------------- del /f test.out > nul diff --git a/tkremind b/tkremind index 63f9e76e..0003201e 100755 --- a/tkremind +++ b/tkremind @@ -7,11 +7,11 @@ # A cheesy graphical front/back end for Remind using Tcl/Tk # # This file is part of REMIND. -# Copyright (C) 1992-1996 by David F. Skoll +# Copyright (C) 1992-1997 by David F. Skoll # #-------------------------------------------------------------- -# $Id: tkremind,v 1.11 1996-10-12 02:49:36 dfs Exp $ +# $Id: tkremind,v 1.12 1997-01-16 04:14:32 dfs Exp $ # the next line restarts using wish \ exec wish "$0" "$@" diff --git a/token.c b/token.c index 6bbb2a7f..30f10cfc 100644 --- a/token.c +++ b/token.c @@ -6,11 +6,11 @@ /* classifying the tokens parsed. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: token.c,v 1.2 1996-04-28 02:02:10 dfs Exp $"; +static char const RCSID[] = "$Id: token.c,v 1.3 1997-01-16 04:14:32 dfs Exp $"; #include "config.h" #include diff --git a/trigger.c b/trigger.c index d379854b..8870acfd 100644 --- a/trigger.c +++ b/trigger.c @@ -5,11 +5,11 @@ /* Routines for figuring out the trigger date of a reminder */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: trigger.c,v 1.2 1996-05-25 19:10:13 dfs Exp $"; +static char const RCSID[] = "$Id: trigger.c,v 1.3 1997-01-16 04:14:33 dfs Exp $"; #include "config.h" #include diff --git a/tstlang.rem b/tstlang.rem index 839c59cb..04846be2 100644 --- a/tstlang.rem +++ b/tstlang.rem @@ -3,7 +3,7 @@ # # TSTLANG.REM # -# $Id: tstlang.rem,v 1.1 1996-03-27 03:26:14 dfs Exp $ +# $Id: tstlang.rem,v 1.2 1997-01-16 04:14:33 dfs Exp $ # # Use this file to test new language headers you may want to create. # Usage: remind -rq tstlang.rem @@ -13,7 +13,7 @@ # Use the output to verify your translations. # # This file is part of REMIND. -# Copyright (C) 1992-1996 by David F. Skoll +# Copyright (C) 1992-1997 by David F. Skoll # # --------------------------------------------------------------------------- diff --git a/types.h b/types.h index a1a6c563..97cd9f0f 100644 --- a/types.h +++ b/types.h @@ -5,11 +5,11 @@ /* Type definitions all dumped here. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: types.h,v 1.2 1996-04-28 02:02:11 dfs Exp $ */ +/* $Id: types.h,v 1.3 1997-01-16 04:14:33 dfs Exp $ */ /* Values */ typedef struct { diff --git a/userfns.c b/userfns.c index c502b7f4..372285d7 100644 --- a/userfns.c +++ b/userfns.c @@ -6,11 +6,11 @@ /* functions. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: userfns.c,v 1.2 1996-04-28 02:02:11 dfs Exp $"; +static char const RCSID[] = "$Id: userfns.c,v 1.3 1997-01-16 04:14:33 dfs Exp $"; #include "config.h" #include diff --git a/utils.c b/utils.c index ae2ce0a6..4beeacd3 100644 --- a/utils.c +++ b/utils.c @@ -5,11 +5,11 @@ /* Useful utility functions. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: utils.c,v 1.2 1996-03-31 04:02:00 dfs Exp $"; +static char const RCSID[] = "$Id: utils.c,v 1.3 1997-01-16 04:14:34 dfs Exp $"; #include "config.h" #include diff --git a/var.c b/var.c index f722b4c4..f58f3a3b 100644 --- a/var.c +++ b/var.c @@ -6,11 +6,11 @@ /* user- and system-defined variables. */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -static char const RCSID[] = "$Id: var.c,v 1.3 1996-04-28 02:02:12 dfs Exp $"; +static char const RCSID[] = "$Id: var.c,v 1.4 1997-01-16 04:14:34 dfs Exp $"; #include "config.h" #include diff --git a/version.h b/version.h index 2e9a3392..6f38e396 100644 --- a/version.h +++ b/version.h @@ -5,9 +5,9 @@ /* What version of remind do we have? */ /* */ /* This file is part of REMIND. */ -/* Copyright (C) 1992-1996 by David F. Skoll */ +/* Copyright (C) 1992-1997 by David F. Skoll */ /* */ /***************************************************************/ -/* $Id: version.h,v 1.4 1996-12-18 00:20:51 dfs Exp $ */ +/* $Id: version.h,v 1.5 1997-01-16 04:14:34 dfs Exp $ */ #define VERSION "03.00.16"