File:  [LON-CAPA] / loncom / cgi / lonversions.pl
Revision 1.1: download - view: text, annotated - select for diffs
Mon Feb 18 20:44:58 2002 UTC (22 years, 2 months ago) by www
Branches: MAIN
CVS tags: HEAD
Version query

#!/usr/bin/perl
$|=1;
# The LearningOnline Network with CAPA
# Versions
# (Running loncron
# 09/06/01 Gerd Kortemeyer)
# 02/18/02 Gerd Kortemeyer
#
print "Content-type: text/html\n\n".
      "<html><body bgcolor=#FFFFFF><h1>Handler Versions</h1>".
      "Please be patient<p><pre>\n";
open (DFH,
"grep '\$Id' /home/httpd/perl/* /home/httpd/lib/perl/Apache/*.pm /home/httpd/html/res/adm/includes/* /home/httpd/html/res/adm/pages/*|");
while ($line=<DFH>) { 
   print "$line"; 
}
close(DFH);
print "</pre></body></html>";

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>