diff -Naur wfdb-10.2.7/Makefile wfdb-10.2.8/Makefile --- wfdb-10.2.7/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/Makefile Mon Oct 14 03:57:50 2002 @@ -39,17 +39,17 @@ # create source archives, type `make tarballs'; or to make a binary archive, # type `make bin-tarball'. Making archives requires PGP, gzip, and GNU tar). # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -61,9 +61,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 @@ -299,6 +299,7 @@ # documentation), and check that the MANIFEST (list of files in the package) # is correct. tarballs: clean + cd lib; $(SETPERMISSIONS) *.h cd ..; tar --create --file $(PACKAGE).tar.gz --verbose --gzip \ '--exclude=$(PACKAGE)/*CVS' $(PACKAGE) | sed s+${PACKAGE}/++ | \ tee $(PACKAGE)-MANIFEST diff -Naur wfdb-10.2.7/Makefile.tpl wfdb-10.2.8/Makefile.tpl --- wfdb-10.2.7/Makefile.tpl Thu Aug 8 12:54:30 2002 +++ wfdb-10.2.8/Makefile.tpl Mon Oct 14 03:57:09 2002 @@ -110,6 +110,7 @@ # documentation), and check that the MANIFEST (list of files in the package) # is correct. tarballs: clean + cd lib; $(SETPERMISSIONS) *.h cd ..; tar --create --file $(PACKAGE).tar.gz --verbose --gzip \ '--exclude=$(PACKAGE)/*CVS' $(PACKAGE) | sed s+${PACKAGE}/++ | \ tee $(PACKAGE)-MANIFEST diff -Naur wfdb-10.2.7/NEWS wfdb-10.2.8/NEWS --- wfdb-10.2.7/NEWS Thu Aug 1 01:55:05 2002 +++ wfdb-10.2.8/NEWS Fri Oct 11 15:33:51 2002 @@ -1,3 +1,7 @@ +10.2.8: + Fixed a bug in WAVE that occasionally caused a crash when starting + up; also repaired a broken link in WAVE's on-line help. + 10.2.7: Added a workaround to wfdb_fclose() (in lib/wfdbio.c) so that closing stdin after using freopen doesn't trigger a core dump. diff -Naur wfdb-10.2.7/app/Makefile wfdb-10.2.8/app/Makefile --- wfdb-10.2.7/app/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/app/Makefile Mon Oct 14 03:57:50 2002 @@ -33,17 +33,17 @@ # type `make listing'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -55,9 +55,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/app/sumann.c wfdb-10.2.8/app/sumann.c --- wfdb-10.2.7/app/sumann.c Wed Nov 8 10:48:14 2000 +++ wfdb-10.2.8/app/sumann.c Thu Oct 3 15:09:29 2002 @@ -1,9 +1,9 @@ /* file: sumann.c G. Moody 5 February 1982 - Last revised: 8 November 2000 + Last revised: 3 October 2002 ------------------------------------------------------------------------------- sumann: Tabulates annotations -Copyright (C) 2000 George B. Moody +Copyright (C) 2002 George B. Moody This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -68,8 +68,8 @@ static WFDB_Anninfo ai; WFDB_Annotation annot; int i, rhythm = 0, noise = 2, qflag = 0; - static long tab[64], rtab[MAXR], ntab[6]; - static long rtime[MAXR], ntime[6], r0, n0, from_time, to_time; + static long tab[64], rtab[MAXR+1], ntab[6]; + static long rtime[MAXR+1], ntime[6], r0, n0, from_time, to_time; char *record = NULL, *prog_name(); void help(); diff -Naur wfdb-10.2.7/app/xform.c wfdb-10.2.8/app/xform.c --- wfdb-10.2.7/app/xform.c Mon May 20 20:39:37 2002 +++ wfdb-10.2.8/app/xform.c Fri Sep 13 10:21:48 2002 @@ -1,5 +1,5 @@ /* file: xform.c G. Moody 8 December 1983 - Last revised: 20 May 2002 + Last revised: 13 September 2002 ------------------------------------------------------------------------------- xform: Sampling frequency, amplitude, and format conversion for WFDB records @@ -201,6 +201,14 @@ /* Check that an input record was specified. */ if (irec == NULL) { help(); + exit(1); + } + + /* Check that nrec and orec differ if both were specified. */ + if (nrec && orec && (strcmp(nrec, orec) == 0)) { + (void)fprintf(stderr, + "%s: arguments of -n (or -N) and -o cannot be identical\n", + pname); exit(1); } diff -Naur wfdb-10.2.7/checkpkg/Makefile wfdb-10.2.8/checkpkg/Makefile --- wfdb-10.2.7/checkpkg/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/checkpkg/Makefile Mon Oct 14 03:57:50 2002 @@ -31,17 +31,17 @@ # directory). To print a set of source listings, type `make listing'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -53,9 +53,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/conf/version.def wfdb-10.2.8/conf/version.def --- wfdb-10.2.7/conf/version.def Thu Aug 8 12:33:44 2002 +++ wfdb-10.2.8/conf/version.def Mon Sep 16 10:37:30 2002 @@ -1,15 +1,15 @@ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. diff -Naur wfdb-10.2.7/convert/Makefile wfdb-10.2.8/convert/Makefile --- wfdb-10.2.7/convert/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/convert/Makefile Mon Oct 14 03:57:50 2002 @@ -33,17 +33,17 @@ # type `make listing'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -55,9 +55,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/data/Makefile wfdb-10.2.8/data/Makefile --- wfdb-10.2.7/data/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/data/Makefile Mon Oct 14 03:57:50 2002 @@ -33,17 +33,17 @@ # listing'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -55,9 +55,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/doc/Makefile wfdb-10.2.8/doc/Makefile --- wfdb-10.2.7/doc/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/doc/Makefile Mon Oct 14 03:57:50 2002 @@ -134,17 +134,17 @@ # `make ug'. To print the WFDB Programmer's Guide, type `make pg'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -156,9 +156,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/doc/wag-src/Makefile wfdb-10.2.8/doc/wag-src/Makefile --- wfdb-10.2.7/doc/wag-src/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/doc/wag-src/Makefile Mon Oct 14 03:57:50 2002 @@ -59,17 +59,17 @@ # PostScript 'make wag.ps' (requires troff, tbl, latex, and dvips) # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -81,9 +81,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/doc/wag-src/appguide.int wfdb-10.2.8/doc/wag-src/appguide.int --- wfdb-10.2.7/doc/wag-src/appguide.int Tue Aug 6 15:31:50 2002 +++ wfdb-10.2.8/doc/wag-src/appguide.int Thu Aug 8 14:10:24 2002 @@ -1,5 +1,5 @@ \" file: appguide.int G. Moody July 1989 -\" Last revised: 31 July 2002 +\" Last revised: 8 August 2002 \" Table of contents and introduction to the WFDB Applications Guide. \" \" To print this document using GNU groff, use: @@ -299,6 +299,47 @@ small space for environment variables that is not secure against buffer overruns, and has idiosyncratic filename globbing behavior. +.LP +\fBWhat does the message "init: can't open header for ..." mean?\fR + +.PP +This message can be produced by any application linked to the WFDB +library, including \fBrdsamp\fR(1) and \fBrdann\fR(1). In order to +read data files, these applications need to find a header (\fB.hea\fR) +file for the input record you specify. The message indicates that the header +file was not found in any of the expected places, or that it was +unreadable. There are three common reasons why this can happen: + +.IP 1. +The \fIrecord\fR name supplied to the application is not correct. Record +names are \fBnot\fR file names (if this doesn't sound familiar yet, go back +and read the introduction again). If you wish to read, for example, a signal +file named \fBslp60.dat\fR using \fBrdsamp\fR, you must specify the name of +the record to which this file belongs (\fBslp60\fR) after the \fB-r\fR option, +and not the name of the file itself. Whatever follows "init: can't open header +for ..." is what the application thinks is the name of the record you wish to +read. Also, be aware that case matters in record names, even under operating +systems that ignore case in file names. Thus "\fBSLP60\fR" is not a valid +record name; "\fBslp60\fR" is. + +.IP 2. +The header file is missing. If you download signal (\fB.dat\fR) or +annotation (\fB.atr\fR, \fB.qrs\fR, etc.) files, be sure to download +the corresponding \fB.hea\fR files from the same locations. + +.IP 3. +The list of locations to be searched does not include the location of +the header file. WFDB applications find their input files by searching +a list of locations specified by the WFDB path (the environment variable +\fBWFDB\fR, or a default list of locations if WFDB has not been set). The +WFDB path normally includes the current directory, but this may not be +true if the WFDB path has been modified; the current directory must +appear explicitly (either as a "." or as an empty component in the path) +in order to be included in the list of locations to be searched. For +further information, see "The Database Path and Other Environment Variables" +in the \fIWFDB Programmer's Guide\fR. + +.bp .LP \fBHow can I save the output of ... in a file?\fR .br diff -Naur wfdb-10.2.7/doc/wag-src/faq.ht0 wfdb-10.2.8/doc/wag-src/faq.ht0 --- wfdb-10.2.7/doc/wag-src/faq.ht0 Thu Aug 1 14:16:52 2002 +++ wfdb-10.2.8/doc/wag-src/faq.ht0 Thu Aug 8 14:16:29 2002 @@ -38,6 +38,47 @@ variables that is not secure against buffer overruns, and has idiosyncratic filename globbing behavior. +

What does the message "init: can't open header for ..." mean?

+ +

This message can be produced by any application linked to the WFDB +library, including rdsamp(1) and rdann(1). In order to read data files, +these applications need to find a header (.hea) file for the +input record you specify. The message indicates that the header file +was not found in any of the expected places, or that it was +unreadable. There are three common reasons why this can happen: + +

+

How can I save the output of ... in a file?
How can one program read another's output?

diff -Naur wfdb-10.2.7/doc/wag-src/fixag.sed wfdb-10.2.8/doc/wag-src/fixag.sed --- wfdb-10.2.7/doc/wag-src/fixag.sed Wed Aug 7 12:08:32 2002 +++ wfdb-10.2.8/doc/wag-src/fixag.sed Mon Sep 9 10:43:13 2002 @@ -42,7 +42,7 @@ s+BGCOLOR="[^"]*"+BGCOLOR="#FFFFFF"+ s+(http://www.physionet.org/physiobank/database)+(http://www.physionet.org/physiobank/database)+ s+(http://www.aami.org/)+(http://www.aami.org/)+ -s+http://www.gnuplot.info/+http://www.gnuplot.info/+ +s+"http://www.gnuplot.info/"+"http://www.gnuplot.info/" target="other"+ s+http://www.mstarlabs.com/+http://www.mstarlabs.com/+ s+(http://www.hsr.nl/bobkemp/edf/edf.htm)+(http://www.hsr.nl/bobkemp/edf/edf.htm)+ s+Evaluating ECG Analyzers+Evaluating ECG Analyzers+ diff -Naur wfdb-10.2.7/doc/wpg/info/wpg wfdb-10.2.8/doc/wpg/info/wpg --- wfdb-10.2.7/doc/wpg/info/wpg Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg Thu Aug 8 14:17:37 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-1 wfdb-10.2.8/doc/wpg/info/wpg-1 --- wfdb-10.2.7/doc/wpg/info/wpg-1 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-1 Thu Aug 8 14:17:37 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-2 wfdb-10.2.8/doc/wpg/info/wpg-2 --- wfdb-10.2.7/doc/wpg/info/wpg-2 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-2 Thu Aug 8 14:17:37 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-3 wfdb-10.2.8/doc/wpg/info/wpg-3 --- wfdb-10.2.7/doc/wpg/info/wpg-3 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-3 Thu Aug 8 14:17:37 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-4 wfdb-10.2.8/doc/wpg/info/wpg-4 --- wfdb-10.2.7/doc/wpg/info/wpg-4 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-4 Thu Aug 8 14:17:37 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-5 wfdb-10.2.8/doc/wpg/info/wpg-5 --- wfdb-10.2.7/doc/wpg/info/wpg-5 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-5 Thu Aug 8 14:17:38 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-6 wfdb-10.2.8/doc/wpg/info/wpg-6 --- wfdb-10.2.7/doc/wpg/info/wpg-6 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-6 Thu Aug 8 14:17:38 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-7 wfdb-10.2.8/doc/wpg/info/wpg-7 --- wfdb-10.2.7/doc/wpg/info/wpg-7 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-7 Thu Aug 8 14:17:38 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg/info/wpg-8 wfdb-10.2.8/doc/wpg/info/wpg-8 --- wfdb-10.2.7/doc/wpg/info/wpg-8 Thu Aug 8 10:37:37 2002 +++ wfdb-10.2.8/doc/wpg/info/wpg-8 Thu Aug 8 14:17:38 2002 @@ -1,4 +1,4 @@ -This is wpg, produced by makeinfo version 4.1 from wpg.tex. +This is wpg, produced by makeinfo version 4.0 from wpg.tex. INFO-DIR-SECTION Libraries START-INFO-DIR-ENTRY diff -Naur wfdb-10.2.7/doc/wpg-src/Makefile wfdb-10.2.8/doc/wpg-src/Makefile --- wfdb-10.2.7/doc/wpg-src/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/doc/wpg-src/Makefile Mon Oct 14 03:57:50 2002 @@ -65,17 +65,17 @@ # wpg.info' again. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -87,9 +87,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/doc/wug-src/Makefile wfdb-10.2.8/doc/wug-src/Makefile --- wfdb-10.2.7/doc/wug-src/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/doc/wug-src/Makefile Mon Oct 14 03:57:50 2002 @@ -55,17 +55,17 @@ # PostScript 'make wug.ps' (requires latex and dvips) # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -77,9 +77,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/doc/wug-src/wave/misc/wave.inf wfdb-10.2.8/doc/wug-src/wave/misc/wave.inf --- wfdb-10.2.7/doc/wug-src/wave/misc/wave.inf Thu Aug 8 12:25:32 2002 +++ wfdb-10.2.8/doc/wug-src/wave/misc/wave.inf Mon Sep 16 10:21:14 2002 @@ -1,5 +1,5 @@ # file: wave.info G. Moody 21 August 1990 -# Last revised: 8 August 2002 WAVE 6.5 +# Last revised: 16 September 2002 WAVE 6.5 # XView spot help file for `wave' # # ----------------------------------------------------------------------------- @@ -71,7 +71,7 @@ than once. # -:file.load.calibration_file:url_view /usr/local/help/html/wag/wfdbcal-5.htm +:file.load.calibration_file:url_view /usr/local/help/html/wag/wfdbca-5.htm Specifies the name of the WFDB calibration file (a text file containing information on the relative scales of many types of signals). diff -Naur wfdb-10.2.7/examples/Makefile wfdb-10.2.8/examples/Makefile --- wfdb-10.2.7/examples/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/examples/Makefile Mon Oct 14 03:57:50 2002 @@ -34,17 +34,17 @@ # `make clean' to remove them. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -56,9 +56,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/lib/Makefile wfdb-10.2.8/lib/Makefile --- wfdb-10.2.7/lib/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/lib/Makefile Mon Oct 14 03:57:50 2002 @@ -33,17 +33,17 @@ # type `make slib'. # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. diff -Naur wfdb-10.2.7/lib/wfdb.h wfdb-10.2.8/lib/wfdb.h --- wfdb-10.2.7/lib/wfdb.h Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/lib/wfdb.h Mon Oct 14 03:57:50 2002 @@ -1,5 +1,5 @@ /* file: wfdb.h G. Moody 13 June 1983 - Last revised: 12 July 2002 wfdblib 10.2.7 + Last revised: 11 October 2002 wfdblib 10.2.8 WFDB library type, constant, structure, and function interface definitions _______________________________________________________________________________ @@ -33,7 +33,7 @@ /* WFDB library version. */ #define WFDB_MAJOR 10 #define WFDB_MINOR 2 -#define WFDB_RELEASE 7 +#define WFDB_RELEASE 8 #define WFDB_NETFILES 1 /* if 1, library includes code for HTTP, FTP clients */ /* Determine what type of compiler is being used. */ diff -Naur wfdb-10.2.7/psd/Makefile wfdb-10.2.8/psd/Makefile --- wfdb-10.2.7/psd/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/psd/Makefile Mon Oct 14 03:57:50 2002 @@ -32,17 +32,17 @@ # directory). # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -54,9 +54,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/wave/Makefile wfdb-10.2.8/wave/Makefile --- wfdb-10.2.7/wave/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/wave/Makefile Mon Oct 14 03:57:50 2002 @@ -45,17 +45,17 @@ # just type `make' (from within this directory). # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -67,9 +67,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000 diff -Naur wfdb-10.2.7/wave/wave.info wfdb-10.2.8/wave/wave.info --- wfdb-10.2.7/wave/wave.info Thu Aug 8 12:23:16 2002 +++ wfdb-10.2.8/wave/wave.info Mon Sep 16 10:13:43 2002 @@ -1,5 +1,5 @@ # file: wave.info G. Moody 21 August 1990 -# Last revised: 8 August 2002 WAVE 6.5 +# Last revised: 16 September 2002 WAVE 6.5 # XView spot help file for `wave' # # ----------------------------------------------------------------------------- @@ -71,7 +71,7 @@ than once. # -:file.load.calibration_file:url_view /usr/local/help/html/wag/wfdbcal-5.htm +:file.load.calibration_file:url_view /usr/local/help/html/wag/wfdbca-5.htm Specifies the name of the WFDB calibration file (a text file containing information on the relative scales of many types of signals). diff -Naur wfdb-10.2.7/wave/xvwave.c wfdb-10.2.8/wave/xvwave.c --- wfdb-10.2.7/wave/xvwave.c Sun Oct 14 14:34:38 2001 +++ wfdb-10.2.8/wave/xvwave.c Fri Oct 11 15:21:43 2002 @@ -1,10 +1,10 @@ /* file: xvwave.c G. Moody 27 April 1990 - Last revised: 14 October 2001 + Last revised: 11 October 2002 XView support functions for WAVE ------------------------------------------------------------------------------- WAVE: Waveform analyzer, viewer, and editor -Copyright (C) 2001 George B. Moody +Copyright (C) 2002 George B. Moody This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -113,8 +113,8 @@ /* Recalibrate based on selected scales, clear the display list cache. */ if (*record) { set_baselines(); - dismiss_mode(); /* read and set user-selected scales, if any */ alloc_sigdata(2); + dismiss_mode(); /* read and set user-selected scales, if any */ vscale[0] = 0.; /* force clear_cache() -- see calibrate() */ calibrate(); diff -Naur wfdb-10.2.7/waverc/Makefile wfdb-10.2.8/waverc/Makefile --- wfdb-10.2.7/waverc/Makefile Thu Aug 8 13:01:55 2002 +++ wfdb-10.2.8/waverc/Makefile Mon Oct 14 03:57:50 2002 @@ -25,17 +25,17 @@ # please visit PhysioNet (http://www.physionet.org/). # _____________________________________________________________________________ # file: version.def G. Moody 24 May 2000 -# Last revised: 8 August 2002 +# Last revised: 16 September 2002 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 2 -RELEASE = 7 +RELEASE = 8 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official # releases. It should be reset to 1 whenever the VERSION is changed. -RPMRELEASE = 2 +RPMRELEASE = 1 # VDEFS is the set of C compiler options needed to set version number variables # while compiling the WFDB Software Package. @@ -47,9 +47,9 @@ # Definitions generated by 'configure' -PACKAGE = wfdb-10.2.7 -LONGDATE = 8 August 2002 -SHORTDATE = AUGUST 2002 +PACKAGE = wfdb-10.2.8 +LONGDATE = 14 October 2002 +SHORTDATE = OCTOBER 2002 # _____________________________________________________________________________ # file: linux.def G. Moody 31 May 2000