Diff for /loncom/homework/lonhomework.pm between versions 1.35 and 1.36

version 1.35, 2001/01/24 14:26:28 version 1.36, 2001/02/07 00:29:30
Line 51  sub send_header { Line 51  sub send_header {
 #  $request->print('<form name='.$ENV{'form.request.prefix'}.'lonhomework method="POST" action="'.$request->uri.'">');  #  $request->print('<form name='.$ENV{'form.request.prefix'}.'lonhomework method="POST" action="'.$request->uri.'">');
 }  }
   
   sub createmenu {
     my ($which,$request)=@_;
     if ($which eq 'grade') {
       $request->print('<script language="JavaScript"> 
             hwkmenu=window.open("/res/adm/pages/homeworkmenu.html","LONCAPAhomeworkmenu",
                    "height=350,width=150,menubar=no");
             </script>');
     }
   }
   
 sub send_footer {  sub send_footer {
   my ($request)= @_;    my ($request)= @_;
 #  $request->print('</form>');  #  $request->print('</form>');
   $request->print(&Apache::lontexconvert::footer());    $request->print(&Apache::lontexconvert::footer());
 }  }
   
 #@Apache::lonhomework::date_status=();  $Apache::lonxml::browse='';
 #@Apache::lonhomework::date_msg=();  
 sub check_date {  sub check_date {
   my ($id) = @_;    my ($id) = @_;
   my $date ='';    my $date ='';
Line 106  sub check_date { Line 115  sub check_date {
     if ($tries >= $maxtries) { $status = 'CANNOT_ANSWER'; }       if ($tries >= $maxtries) { $status = 'CANNOT_ANSWER'; } 
   }    }
   &Apache::lonxml::debug("sending back :$status:$datemsg:");    &Apache::lonxml::debug("sending back :$status:$datemsg:");
     if (($Apache::lonhomework::browse eq 'F') && ($status eq 'CLOSED')) {
       &Apache::lonxml::debug("should be allowed to browse a resource when closed");
       $status='CAN_ANSWER';
       $datemsg='is closed but you are allowed to view it';
     }
   if ($ENV{'request.state'} eq "construct") {    if ($ENV{'request.state'} eq "construct") {
     &Apache::lonxml::debug("in construction ignoring dates");      &Apache::lonxml::debug("in construction ignoring dates");
     $status='CAN_ANSWER';      $status='CAN_ANSWER';
Line 129  sub handler { Line 143  sub handler {
   $request->send_http_header;    $request->send_http_header;
   return OK if $request->header_only;    return OK if $request->header_only;
   
     #setup permissions
     $Apache::lonhomework::browse= &Apache::lonnet::allowed('bre');
     $Apache::lonhomework::viewgrades=&Apache::lonnet::allowed('vgr');
     &Apache::lonxml::debug("Permissions:$Apache::lonhomework::browse:$Apache::lonhomework::viewgrades:");
   
   #check if we know where we are    #check if we know where we are
   if ($ENV{'request.course.fn'} && !&Apache::lonnet::symbread()) {     if ($ENV{'request.course.fn'} && !&Apache::lonnet::symbread()) { 
     $request->internal_redirect('/adm/ambiguous'); return;       # if we are browsing we might not be able to know where we are
       if ($Apache::lonhomework::browse ne 'F') {
         #should know where we are, so ask
         $request->internal_redirect('/adm/ambiguous'); return; 
       }
   }    }
   
   &Apache::lonhomework::send_header($request);    &Apache::lonhomework::send_header($request);
       
   #check if allowed to see  
     
   foreach my $target (@targets) {    foreach my $target (@targets) {
     my $file=&Apache::lonnet::filelocation("",$request->uri);      my $file=&Apache::lonnet::filelocation("",$request->uri);
     my $problem=&Apache::lonnet::getfile($file);      my $problem=&Apache::lonnet::getfile($file);
Line 154  sub handler { Line 175  sub handler {
     #ignore error conditions      #ignore error conditions
     my ($temp)=keys %Apache::lonhomework::history ;      my ($temp)=keys %Apache::lonhomework::history ;
     if ($temp =~ m/^error:.*/) { %Apache::lonhomework::history=(); }       if ($temp =~ m/^error:.*/) { %Apache::lonhomework::history=(); } 
     if ($target eq 'web' && &Apache::lonnet::symbread() eq '') {      if ($target eq 'web') {
       $request->print("Vieiwing this problem as not a student, submissions will be ignored.");        if (&Apache::lonnet::symbread() eq '') {
    if ($ENV{'request.state'} eq "construct") {
     $request->print("In construction space, submissions ignored<br>");
    } else {
     $request->print("Browsing or <a href=\"/adm/ambiguous\">ambiguous</a> reference, submissions ignored<br>");
    }
         }
         if ($Apache::lonhomework::viewgrades eq 'F') {&createmenu('grade',$request); }
     }      }
     if ($target eq 'grade') {      if ($target eq 'grade') {
       my $resultkey;        my $resultkey;

Removed from v.1.35  
changed lines
  Added in v.1.36


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