Diff for /loncom/build/install_web_site_cronjob between versions 1.6 and 1.8

version 1.6, 2003/02/03 18:03:52 version 1.8, 2004/07/06 15:44:07
Line 92  http://mail.lon-capa.org/. Line 92  http://mail.lon-capa.org/.
 END  END
 close(OUT);  close(OUT);
   
   #'
 # Roll the directory together into the unstable tarball.  # Roll the directory together into the unstable tarball.
 `cd /home/loninst/auto; ln -s loncapa loncapa-unstable; tar cvvf loncapa-unstable.tar loncapa-unstable/* ;gzip -9 -f loncapa-unstable.tar`;  `cd /home/loninst/auto; ln -s loncapa loncapa-unstable; tar cvvf loncapa-unstable.tar loncapa-unstable/* ;gzip -9 -f loncapa-unstable.tar`;
   
Line 130  $text =~ s/LATESTDATE/$releasedate/g; Line 131  $text =~ s/LATESTDATE/$releasedate/g;
 open(OUT,">/home/loninst/public_html/docs/downloads/index.html");  open(OUT,">/home/loninst/public_html/docs/downloads/index.html");
 print(OUT $text);  print(OUT $text);
 close(OUT);  close(OUT);
   
   #'
   # ---------------------------------------- Determine the latest testing version
   my $filename=`cd /home/loninst/public_html/versions; find . -type f -name LATEST-TESTING-IS-* -maxdepth 1`;
   chomp($filename);
   $filename =~ /LATEST-TESTING-IS-(.*)/;
   my $version = $1;
   open(IN,"</home/loninst/public_html/versions/$filename");
   my $releasedate = <IN>;
   close(IN);
   # -------------- Updating the download page with the date of the last build
   open(IN,"</home/loninst/public_html/docs/downloads/index.html");
   my @lines = <IN>;
   close(IN);
   my $text = join('',@lines);
   if ($version) {
       $text =~ s/LATESTTESTINGVERSION/$version/g;
       $text =~ s/LATESTTESTINGDATE/$releasedate/g;
       $text =~ s/TESTINGRELEASE_START//g;
       $text =~ s/TESTINGRELEASE_END//g;
   } else {
       $text =~ s/TESTINGRELEASE_START.*TESTINGRELEASE_END//g;
   }
   open(OUT,">/home/loninst/public_html/docs/downloads/index.html");
   print(OUT $text);
   close(OUT);

Removed from v.1.6  
changed lines
  Added in v.1.8


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