|
From: Sam S. <sa...@us...> - 2002-03-08 23:40:21
|
Move the changelog out of counter.pl and into a ChangeLog file. And the person who owns the Copyright on counter.pl could do with putting a licence on it. Sam --- old/ChangeLog Thu Jan 1 00:00:00 1970 +++ new/ChangeLog Fri Mar 8 23:38:41 2002 @@ -0,0 +1,46 @@ +# +# $Log: counter.pl,v $ +# Revision 1.11 2002/02/26 20:57:01 gellyfish +# * Added DOCUMENT_URI to NMSTest::TestRun +# * Added a default test for textcounter.pl +# * Made it easier to test textcounter +# +# Revision 1.10 2002/02/26 08:59:28 gellyfish +# * Fixed imagecounter to something +# * fixed typo in textcounter/README +# * suppressed emission of headers in fatalsToBrowser if already done. +# +# Revision 1.9 2002/02/11 09:16:35 gellyfish +# * provided method to turn off emission of headers +# * Fixed the locking race +# * Turned off uploads and POST +# +# Revision 1.8 2002/01/27 14:13:33 davorg +# Removed Matt's docs. +# Removed unnecessary reference to lock file. +# +# Revision 1.7 2001/12/01 19:45:22 gellyfish +# * Tested everything with 5.004.04 +# * Replaced the CGI::Carp with local variant +# +# Revision 1.6 2001/11/26 13:40:05 nickjc +# Added \Q \E around variables in regexps where metacharacters in the +# variables shouldn't be interpreted by the regex engine. +# +# Revision 1.5 2001/11/25 11:39:40 gellyfish +# * add missing use vars qw($DEBUGGING) from most of the files +# * sundry other compilation failures +# +# Revision 1.4 2001/11/13 20:35:14 gellyfish +# Added the CGI::Carp workaround +# +# Revision 1.3 2001/11/13 09:19:24 gellyfish +# Added CGI::Carp +# +# Revision 1.2 2001/11/11 17:55:27 davorg +# Small amount of post-import tidying :) +# +# Revision 1.1.1.1 2001/11/11 16:48:59 davorg +# Initial import +# + diff -uN old/counter.pl new/counter.pl --- old/counter.pl Tue Feb 26 20:57:01 2002 +++ new/counter.pl Fri Mar 8 23:36:10 2002 @@ -2,50 +2,7 @@ # # $Id: counter.pl,v 1.11 2002/02/26 20:57:01 gellyfish Exp $ # -# $Log: counter.pl,v $ -# Revision 1.11 2002/02/26 20:57:01 gellyfish -# * Added DOCUMENT_URI to NMSTest::TestRun -# * Added a default test for textcounter.pl -# * Made it easier to test textcounter -# -# Revision 1.10 2002/02/26 08:59:28 gellyfish -# * Fixed imagecounter to something -# * fixed typo in textcounter/README -# * suppressed emission of headers in fatalsToBrowser if already done. -# -# Revision 1.9 2002/02/11 09:16:35 gellyfish -# * provided method to turn off emission of headers -# * Fixed the locking race -# * Turned off uploads and POST -# -# Revision 1.8 2002/01/27 14:13:33 davorg -# Removed Matt's docs. -# Removed unnecessary reference to lock file. -# -# Revision 1.7 2001/12/01 19:45:22 gellyfish -# * Tested everything with 5.004.04 -# * Replaced the CGI::Carp with local variant -# -# Revision 1.6 2001/11/26 13:40:05 nickjc -# Added \Q \E around variables in regexps where metacharacters in the -# variables shouldn't be interpreted by the regex engine. -# -# Revision 1.5 2001/11/25 11:39:40 gellyfish -# * add missing use vars qw($DEBUGGING) from most of the files -# * sundry other compilation failures -# -# Revision 1.4 2001/11/13 20:35:14 gellyfish -# Added the CGI::Carp workaround -# -# Revision 1.3 2001/11/13 09:19:24 gellyfish -# Added CGI::Carp -# -# Revision 1.2 2001/11/11 17:55:27 davorg -# Small amount of post-import tidying :) -# -# Revision 1.1.1.1 2001/11/11 16:48:59 davorg -# Initial import -# +# For Changes, see the ChangeLog file. use strict; use CGI qw(header); |