Annotation of loncom/interface/lonremote.pm, revision 1.24

1.1       www         1: # The LearningOnline Network
                      2: # User Authentication Module
                      3: #
1.24    ! raeburn     4: # $Id: lonremote.pm,v 1.23 2008/01/20 01:12:56 www Exp $
1.1       www         5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.11      www        28: ###
1.1       www        29: 
                     30: package Apache::lonremote;
                     31: 
                     32: use strict;
                     33: use Apache::Constants qw(:common);
                     34: use Apache::loncommon();
1.18      albertel   35: use Apache::lonnet;
1.1       www        36: use Apache::lonmenu();
1.11      www        37: use Apache::lonlocal;
1.1       www        38: 
                     39: sub launchremote {
1.2       www        40:     my ($r,$lowerurl)=@_;
1.3       www        41:     &Apache::lonnet::put('environment',{'remote' => 'on'});
1.24    ! raeburn    42:     &Apache::lonnet::appenv({'environment.remote' => 'on'});
1.1       www        43: # -------------------------------------------------------- Menu script and info
1.18      albertel   44:     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});
1.4       www        45:     my $startupremote=&Apache::lonmenu::startupremote($lowerurl);
1.19      albertel   46:     my $start_page = &Apache::loncommon::start_page('Remote Control',
                     47: 						    $startupremote);
                     48:     my $end_page   = &Apache::loncommon::end_page();
1.14      albertel   49:     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);
1.4       www        50:     my $setflags=&Apache::lonmenu::setflags();
                     51:     my $maincall=&Apache::lonmenu::maincall();
1.11      www        52:     my $message=&mt("Launching of the Remote Control menu will fail if pop-up window filters are active. To use the Remote Control, disable the filter for this site.");
1.2       www        53:     $r->print(<<ENDLAUNCH);
1.19      albertel   54: $start_page
1.4       www        55: $setflags
                     56: $windowinfo
1.14      albertel   57: $message
                     58: $remoteinfo
1.5       www        59: $maincall
1.19      albertel   60: $end_page
1.2       www        61: ENDLAUNCH
                     62: }
                     63: 
                     64: sub collapseremote {
                     65:     my ($r,$lowerurl)=@_;
                     66: # -------------------------------------------------------- Menu script and info
1.21      albertel   67:     my $start_page = &Apache::loncommon::start_page('Collapse Remote Control',
                     68: 						    undef,
                     69: 						    {'no_inline_link' => 1,});
1.20      albertel   70:     my $end_page  =  &Apache::loncommon::end_page();
1.4       www        71:     my $windowinfo=&Apache::lonmenu::close();
1.12      albertel   72: #    my $switch='<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$lowerurl.'">';
1.23      www        73:     my $message='<p>'.&mt("The external menu (Remote Control) has been disabled, and you will be working with the smaller inline menu. You may have either closed the Remote Control window, or it was blocked by a pop-up window filter in your browser. To use the Remote Control, disable the filter for this site, and re-launch the Remote Control from the inline menu.").'</p>'; 
1.22      raeburn    74:     my $continue = &mt('Continue');
1.2       www        75:     $r->print(<<ENDCOLLAPSE);
1.19      albertel   76: $start_page
1.4       www        77: $windowinfo
1.12      albertel   78: <p>
                     79: $message
                     80: </p>
1.22      raeburn    81: <a href="$lowerurl">$continue</a>
1.19      albertel   82: $end_page
1.2       www        83: ENDCOLLAPSE
                     84:    &Apache::lonnet::put('environment',{'remote' => 'off'});
1.24    ! raeburn    85:    &Apache::lonnet::appenv({'environment.remote' => 'off'});
1.1       www        86: }
                     87: 
                     88: sub handler {
                     89:     my $r = shift;
1.5       www        90:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                     91:                                             ['action','url']);
1.18      albertel   92:     unless ($env{'form.action'}) {
                     93: 	if ($env{'environment.remote'} ne 'off') {
                     94: 	    $env{'form.action'}='collapse';
1.2       www        95:         } else {
1.18      albertel   96: 	    $env{'form.action'}='launch';
1.2       www        97:         }
                     98:     }
1.5       www        99: 
1.18      albertel  100:     my $lowerurl=$env{'form.url'};
1.6       www       101:     unless ($lowerurl) { $lowerurl='/adm/menu'; }
1.9       albertel  102: 
1.10      www       103:     &Apache::loncommon::content_type($r,'text/html');
1.9       albertel  104:     $r->send_http_header;
                    105:     return OK if $r->header_only;
1.5       www       106: 
1.18      albertel  107:     if ($env{'form.action'} eq 'launch') {
1.4       www       108: 	&launchremote($r,$lowerurl);
1.2       www       109:     } else {
1.4       www       110:         &collapseremote($r,$lowerurl);
1.2       www       111:     }
1.1       www       112:     return OK;
                    113: }
                    114: 
                    115: 1;
                    116: __END__
                    117: 
                    118: 

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