File:  [LON-CAPA] / loncom / cgi / takeonline.pl
Revision 1.4: download - view: text, annotated - select for diffs
Thu Dec 25 01:56:03 2008 UTC (15 years, 4 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_99_1, version_2_7_99_0, version_2_12_X, version_2_11_X, version_2_11_4_uiuc, version_2_11_4_msu, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3, version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, version_2_11_1, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, GCI_1, BZ5971-printing-apage, BZ5434-fox, BZ4492-merge, BZ4492-feature_horizontal_radioresponse, BZ4492-feature_Support_horizontal_radioresponse, BZ4492-Support_horizontal_radioresponse
- Changes resulting from movement of subroutines from loncgi.pm
  to lonauthcgi.pm.

    1: #!/usr/bin/perl
    2: $|=1;
    3: # Take machine online
    4: #
    5: # $Id: takeonline.pl,v 1.4 2008/12/25 01:56:03 raeburn Exp $
    6: #
    7: # Copyright Michigan State University Board of Trustees
    8: #
    9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   10: #
   11: # LON-CAPA is free software; you can redistribute it and/or modify
   12: # it under the terms of the GNU General Public License as published by
   13: # the Free Software Foundation; either version 2 of the License, or
   14: # (at your option) any later version.
   15: #
   16: # LON-CAPA is distributed in the hope that it will be useful,
   17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19: # GNU General Public License for more details.
   20: #
   21: # You should have received a copy of the GNU General Public License
   22: # along with LON-CAPA; if not, write to the Free Software
   23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   24: #
   25: # /home/httpd/html/adm/gpl.txt
   26: #
   27: # http://www.lon-capa.org/
   28: #
   29: 
   30: use strict;
   31: use lib '/home/httpd/lib/perl/';
   32: use Apache::lonlocal;
   33: use LONCAPA::loncgi;
   34: use LONCAPA::lonauthcgi;
   35: 
   36: print "Content-type: text/html\n\n";
   37: 
   38: &main();
   39: 
   40: sub main {
   41:     if (!&LONCAPA::lonauthcgi::check_ipbased_access('takeonline')) {
   42:         if (!&LONCAPA::loncgi::check_cookie_and_load_env()) {
   43:             &Apache::lonlocal::get_language_handle();
   44:             print &LONCAPA::loncgi::missing_cookie_msg();
   45:             return;
   46:         }
   47: 
   48:         if (!&LONCAPA::lonauthcgi::can_view('takeonline')) {
   49:             &Apache::lonlocal::get_language_handle();
   50:             print &LONCAPA::lonauthcgi::unauthorized_msg('takeonline');
   51:             return;
   52:         }
   53:     }
   54: 
   55:     &Apache::lonlocal::get_language_handle();
   56: 
   57:     print '<html><body bgcolor="#FFFFFF"><h1>'.&Apache::lonlocal::mt('Take Online').'</h1>';
   58:     system('cp /home/httpd/html/origindex.html /home/httpd/html/index.html');
   59:     system('rm /home/httpd/html/lon-status/reroute.txt');
   60:     print '</body></html>';
   61: }

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