Diff for /rat/lonsequence.pm between versions 1.6 and 1.9

version 1.6, 2002/04/02 21:05:50 version 1.9, 2002/05/23 10:58:05
Line 42  use strict; Line 42  use strict;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::Constants qw(:common :http REDIRECT);  use Apache::Constants qw(:common :http REDIRECT);
 use GDBM_File;  use GDBM_File;
   use Apache::lonratedt;
   use Apache::lonratsrv;
   
 # ----------------------------------------------------------- Could not resolve  # ----------------------------------------------------------- Could not resolve
   
Line 56  sub getlost { Line 57  sub getlost {
  '</body></html>');   '</body></html>');
 }  }
   
   
   # ----------------------------------------- Attempt to read from resource space
   
   sub attemptread {
       my $fn=shift;
       &Apache::lonnet::repcopy($fn);
       if (-e $fn) {
    return &Apache::lonratedt::attemptread($fn);
       } else {
           return ();
       }
   }
   
   # ---------------------------------------------------------------- View Handler
   
   sub viewmap {
       my ($r,$url)=@_;
       $r->print('<html>');
       if ($ENV{'form.forceselect'}) { $r->print(<<ENDSCRIPT);
   <script>
   
   function select_group() {
       window.location="/adm/groupsort?catalogmode=groupimport&mode=rat&acts="+document.forms.fileattr.acts.value;
   }
   
   function queue(val) {
       if (eval("document.forms."+val+".filelink.checked")) {
    var l=val.length;
    var v=val.substring(4,l);
    document.forms.fileattr.acts.value+='1a'+v+'b';
       }
       else {
    var l=val.length;
    var v=val.substring(4,l);
    document.forms.fileattr.acts.value+='0a'+v+'b';
       }
   }
   
   </script>
   ENDSCRIPT
       }
       $r->print('<body bgcolor="#FFFFFF">');
       if ($ENV{'form.forceselect'}) { $r->print(<<ENDSELECT);
   <form name=fileattr><input type=hidden name=acts value=''>
   <input type="button" name="close" value='CLOSE' onClick="self.close()">
   <input type="button" name="groupimport" value='GROUP IMPORT'
   onClick="javascript:select_group()">
   </form>   
   ENDSELECT
       }
       my $idx=0;
       foreach (&attemptread(&Apache::lonnet::filelocation('',$url))) {
    if (defined($_)) {
               $idx++;
               if ($ENV{'form.forceselect'}) { 
    $r->print('<form name="form'.$idx.'">');
               }
       my ($title,$url)=split(/\:/,$_);
               $title=~s/\&colon\;/\:/g;
               $url=~s/\&colon\;/\:/g;
               unless ($title) { $title=(split(/\//,$url))[-1] };
               unless ($title) { $title='<i>Empty</i>'; }
               if ($url) {
    if ($ENV{'form.forceselect'}) {
       $r->print(<<ENDCHECKBOX);
   <input type='checkbox' name='filelink' 
   value='$url' onClick='javascript:queue("form$idx")' >
   <input type='hidden' name='title' value='$title'>
   ENDCHECKBOX
                   }
    $r->print('<a href="'.&Apache::lonratsrv::qtescape($url).'">');
               }
               $r->print(&Apache::lonratsrv::qtescape($title));
               if ($url) { $r->print('</a>'); }
               if ($ENV{'form.forceselect'}) {
    $r->print('</form>');
               } else {
    $r->print('<br>');
               }
           }
       }
       $r->print('</body></html>');
   }
   
 # ================================================================ Main Handler  # ================================================================ Main Handler
   
 sub handler {  sub handler {
Line 66  sub handler { Line 151  sub handler {
       $r->send_http_header;        $r->send_http_header;
       return OK;        return OK;
    }     }
    
      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                                             ['forceselect']);
   
    my %hash;     my %hash;
    my %bighash;     my %bighash;
    my $requrl=$r->uri;     my $requrl=$r->uri;
   
 # ------------------------------------------------------------ Tie symb db file  # ------------------------------------------------------------ Tie symb db file
   if ($ENV{'request.course.fn'}) {    my $disurl='';
     my $dismapid='';
   
     if (($ENV{'request.course.fn'}) && (!$ENV{'form.forceselect'})) {
        my $last;         my $last;
        if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',         if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
                     &GDBM_READER,0640)) {                      &GDBM_READER,0640)) {
Line 96  sub handler { Line 187  sub handler {
                $disid=$bighash{'map_start_'.$requrl};                 $disid=$bighash{'map_start_'.$requrl};
                $whatend='Beginning';                 $whatend='Beginning';
            }              } 
            my $disurl='';  
            my $dismapid='';  
            if ($disid) {             if ($disid) {
        $disurl=$bighash{'src_'.$disid};         $disurl=$bighash{'src_'.$disid};
                $dismapid=(split(/\./,$disid))[1];                 $dismapid=(split(/\./,$disid))[1];
Line 114  sub handler { Line 203  sub handler {
            }             }
 # --------------------------------------- Untie hash, make sure to come by here  # --------------------------------------- Untie hash, make sure to come by here
            untie(%bighash);             untie(%bighash);
            if ($disurl) {  
 # -------------------------------------------------- Has first or last resource  
                &Apache::lonnet::symblist($requrl,{$disurl => $dismapid,  
                    'last_known' => &Apache::lonnet::declutter($disurl)});   
        $r->content_type('text/html');  
                $r->header_out(Location => 'http://'.$ENV{'HTTP_HOST'}.$disurl);  
                return REDIRECT;  
            } else {  
 # ---------- Does not have first or last resource, try to find out where we are  
                unless ($symb) {  
    $r->internal_redirect('/adm/ambiguous');  
                }  
                $r->content_type('text/html');  
                $r->send_http_header;  
                $r->print(<<ENDSYMB);  
 <html><body bgcolor="#FFFFFF">  
 <h2>$whatend of</h2>  
 <h1>$sequencetitle</h1>  
 </body></html>  
 ENDSYMB  
                return OK  
            }  
        } else {  
           &getlost($r,'Could not access course structure.');  
           return OK;  
        }         }
    } else {  
       $ENV{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";  
       return HTTP_NOT_ACCEPTABLE;   
    }     }
   
    return OK;  # now either disurl is set (going to first page), or we need another display
   
      if ($disurl) {
   # -------------------------------------------------- Has first or last resource
         &Apache::lonnet::symblist($requrl,$disurl => $dismapid,
                      'last_known' => &Apache::lonnet::declutter($disurl)); 
         $r->content_type('text/html');
         $r->header_out(Location => 'http://'.$ENV{'HTTP_HOST'}.$disurl);
         return REDIRECT;
      } else {
          $r->content_type('text/html');
          $r->send_http_header;
          &viewmap($r,$requrl);
          return OK;
      }
 }  }
   
 1;  1;

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


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