Diff for /rat/lonwrapper.pm between versions 1.12 and 1.28.2.1

version 1.12, 2003/04/15 03:53:03 version 1.28.2.1, 2008/12/21 04:49:58
Line 25 Line 25
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
 # (Edit Handler for RAT Maps  
 # (TeX Content Handler  
 #  
 # 05/29/00,05/30 Gerd Kortemeyer)  
 # 7/1,6/30 Gerd Kortemeyer)  
 #  
 # 7/5 Gerd Kortemeyer  
   
 package Apache::lonwrapper;  package Apache::lonwrapper;
   
 use strict;  use strict;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::lonnet();  use Apache::lonnet;
 use Apache::lonxml();  use Apache::lonxml();
 use Apache::lonmenu;  use Apache::lonenc();
   use Apache::lonmenu();
   
 # ================================================================ Main Handler  # ================================================================ Main Handler
   
 sub handler {  sub simple_menu {
   my $r=shift;  
   $r->content_type('text/html');  
   $r->send_http_header;  
   
   return OK if $r->header_only;  
   
   &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},  
                                           ['wrapperdisplay']);  
   my $orgurl=$r->uri;  
   my $url=$orgurl;  
   $url=~s/^\/adm\/wrapper//;  
   $url=~s/^\/ext\//http\:\/\//;  
   if ($ENV{'form.wrapperdisplay'} eq 'menu') {  
 #  #
 # Producing the menu buttons  # Producing the menu buttons
 #  #
       $r->print('<html><body bgcolor="#FFFFFF">'.      return &Apache::loncommon::start_page('Menu',undef,
                 &Apache::lonmenu::menubuttons(1,'web',1).'</body></html>');    {'only_body' => 1,
   } else {     'bgcolor'   => '#FFFFFF',}).
 #   &Apache::lonmenu::menubuttons(1,'web',1).
 # Actual URL   &Apache::loncommon::end_page();
 #  }
       if ($url=~/^\/uploaded\//) {  
   $url=&Apache::lonnet::tokenwrapper($url);  
       }  sub wrapper {
       $url.=(($url=~/\?/)?'&':'?').$ENV{'QUERY_STRING'}; #reappend the query arguments      my ($topurl,$bottomurl) = @_;
       my $events='onLoad="'.&Apache::lonmenu::loadevents.  
   '" onUnload="'.&Apache::lonmenu::unloadevents.'"';  
       my $script=&Apache::lonmenu::registerurl(1,undef);  
   
       if ($ENV{'browser.interface'} eq 'textual') {      if ($env{'browser.interface'} eq 'textual') {
 #  #
 # ssi-based rendering for text-based interface  # ssi-based rendering for text-based interface
 #  #
   $r->print('<html><head>'.   return 
                 &Apache::lonmenu::registerurl(1).      &Apache::loncommon::start_page('Menu',undef,
                 '</head><body bgcolor="#FFFFFF">'.    {'bgcolor'        => '#FFFFFF',
                 &Apache::lonmenu::menubuttons(1).     'force_register' => 1,
                 &Apache::lonnet::ssi_body($url).'</body></html>');         }).
       } elsif ($ENV{'environment.remote'} eq 'off') {      &Apache::lonnet::ssi_body($bottomurl).
 #      &Apache::loncommon::end_page();
 # This is inline remote      }
 #   
   $r->print(<<ENDDOCUMENTINL);  
 <html>      my %layout = ('border' => 0);
 <head>      if ($env{'environment.remote'} eq 'off') {
 $script          if ($env{'environment.icons'} eq 'iconsonly') {
 </head>             $layout{'rows'} = "100,*";
 <frameset rows="180,*" border=0 $events>          } else {
 <frame src="$orgurl?wrapperdisplay=menu">     $layout{'rows'} = "200,*";
 <frame src="$url">          }
 </frameset>      } else {
 </html>   $layout{'rows'} = "1,*";
 ENDDOCUMENTINL   $topurl = "/adm/rat/empty.html";
       } else {      }
   
       my $start_page = 
    &Apache::loncommon::start_page(undef,undef,
          {'force_register' => 1,
    'frameset'       => 1,
    'add_entries'    => \%layout, });
   
       my $end_page = 
    &Apache::loncommon::end_page({'frameset' => 1});
       
       foreach my $url ($topurl,$bottomurl) {
    if ($url !~ /^https?\:/) {
       $url = &Apache::lonenc::check_encrypt($url);
    }
       }
 #  #
 # frame-based rendering for graphical interface  # frame-based rendering for graphical interface
 #  #
   $r->print(<<ENDDOCUMENT);      my $result =<<ENDDOCUMENT;
 <html>  $start_page
 <head>  test
 $script  <frame src="$topurl" />
 </head>  <frame src="$bottomurl" />
 <frameset rows="1,*" border=0 $events>  $end_page
 <frame src="/adm/rat/empty.html">  
 <frame src="$url">  
 </frameset>  
 </html>  
 ENDDOCUMENT  ENDDOCUMENT
       }  
   }      return $result;
   return OK;  
 }  }
   
   sub handler {
       my $r=shift;
       &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
   
       return OK if $r->header_only;
   
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
       ['wrapperdisplay']);
       if ($env{'form.wrapperdisplay'} eq 'menu') {
    $r->print(&simple_menu());
    return OK;
       }
   
       my $orgurl=$r->uri;
       my $url=$orgurl;
       $orgurl.=(($orgurl=~/\?/)?'&':'?').$ENV{'QUERY_STRING'};
       $orgurl.=(($orgurl=~/\?/)?'&':'?').'wrapperdisplay=menu';
       $url=~s/^\/adm\/wrapper//;
       my $is_ext = $url =~ m|^/ext/|;
       $url=~s{^/ext/}{http://};
       $url=~s|http://https://|https://|;
       $url=~s|&colon;|:|g;
   #
   # Actual URL
   #
       if ($url=~/\.(problem|exam|quiz|assess|survey|form|library)$/) {
   #
   # This is uploaded homework
   #
    $env{'request.state'}='uploaded';
    &Apache::lonhomework::renderpage($r,$url);
       } else {
   #
   # This is not homework
   #
    if ($is_ext) {
       $ENV{'QUERY_STRING'}=~s/(^|\&)symb=[^\&]*/$1/;
    }
    $url.=(($url=~/\?/)?'&':'?').$ENV{'QUERY_STRING'}; 
    # reappend the query arguments
    $r->print(&wrapper($orgurl,$url));
       } # not just the menu
       return OK;
   } # handler
   
 1;  1;
 __END__  __END__
   

Removed from v.1.12  
changed lines
  Added in v.1.28.2.1


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