Diff for /rat/lonambiguous.pm between versions 1.19 and 1.20

version 1.19, 2006/03/19 23:09:07 version 1.20, 2006/08/18 20:24:53
Line 95  sub handler { Line 95  sub handler {
            $resurl => [$resurl,$resid]);             $resurl => [$resurl,$resid]);
                  untie(%bighash);                   untie(%bighash);
                  $r->header_out(Location =>                    $r->header_out(Location => 
                                 'http://'.$ENV{'HTTP_HOST'}.$resurl);   &Apache::loncommon::absolute_url().$resurl);
                  return REDIRECT;                   return REDIRECT;
              }               }
   }    }
Line 134  sub handler { Line 134  sub handler {
 # ----------------------------------- Okay, this should have appeared on a page  # ----------------------------------- Okay, this should have appeared on a page
    &Apache::loncommon::content_type($r,'text/html');     &Apache::loncommon::content_type($r,'text/html');
            $r->header_out(Location =>              $r->header_out(Location => 
   'http://'.$ENV{'HTTP_HOST'}.    &Apache::loncommon::absolute_url().
   &Apache::lonnet::clutter($page));    &Apache::lonnet::clutter($page));
            return REDIRECT;             return REDIRECT;
        } else {         } else {
Line 146  sub handler { Line 146  sub handler {
 # ------------------------------------Encrypted requests go straight to navmaps  # ------------------------------------Encrypted requests go straight to navmaps
    if ($env{'request.enc'}) {     if ($env{'request.enc'}) {
        &Apache::loncommon::content_type($r,'text/html');         &Apache::loncommon::content_type($r,'text/html');
        $r->header_out(Location => 'http://'.$ENV{'HTTP_HOST'}.'/adm/navmaps');         $r->header_out(Location => 
         &Apache::loncommon::absolute_url().'/adm/navmaps');
        return REDIRECT;         return REDIRECT;
    }     }
 # ------------------------------------------------ Would be standalone resource  # ------------------------------------------------ Would be standalone resource
Line 178  sub handler { Line 179  sub handler {
  my $mapurl=$bighash{'map_id_'.(split(/\./,$id))[0]};   my $mapurl=$bighash{'map_id_'.(split(/\./,$id))[0]};
  my $symb=&make_symb($id);   my $symb=&make_symb($id);
  &Apache::loncommon::content_type($r,'text/html');   &Apache::loncommon::content_type($r,'text/html');
  &Apache::lonnet::logthis('http://'.$ENV{'HTTP_HOST'}.$resurl.'?symb='.$symb);  
  $r->header_out(Location =>    $r->header_out(Location => 
    'http://'.$ENV{'HTTP_HOST'}.$resurl.'?symb='.$symb);         &Apache::loncommon::absolute_url().
          $resurl.'?symb='.$symb);
  return REDIRECT;   return REDIRECT;
     }      }
             if ($#possibilities>0) {              if ($#possibilities>0) {

Removed from v.1.19  
changed lines
  Added in v.1.20


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