Diff for /loncom/interface/lonfeedback.pm between versions 1.370.2.5.2.4 and 1.381

version 1.370.2.5.2.4, 2022/11/16 14:46:16 version 1.381, 2019/08/07 16:08:04
Line 118  sub list_discussion { Line 118  sub list_discussion {
             $outputtarget = 'export';              $outputtarget = 'export';
         }          }
     }      }
     my ($nofooter,$nodisclink,$nofdbklink);  
     if (not &discussion_visible($status)) {      if (not &discussion_visible($status)) {
         if ($mode ne 'board') {          if ($mode ne 'board') {
             ($nofooter,$nodisclink,$nofdbklink) = &check_menucoll();              &Apache::lonenc::check_encrypt(\$ressymb); 
             if ($nofooter || $nofdbklink) {              return '<br /><div class="LC_feedback_link">'.&send_message_link($ressymb)."</div>";
                 return '<br />';  
             } else {  
                 &Apache::lonenc::check_encrypt(\$ressymb);  
                 return '<br /><div class="LC_feedback_link">'.&send_message_link($ressymb)."</div>";  
             }  
         }          }
     }      }
     if ($group ne '' && $mode eq 'board') {      if ($group ne '' && $mode eq 'board') {
Line 136  sub list_discussion { Line 130  sub list_discussion {
         }          }
     }      }
   
     unless ($outputtarget eq 'export') {      my ($blocked,$blocktext) = 
         ($nofooter,$nodisclink,$nofdbklink) = &check_menucoll();          &Apache::loncommon::blocking_status('boards');
     }      if ($blocked) {
           $blocktext = '<br /><div class="LC_feedback_link"><span class="LC_feedback_link">'.$blocktext."</span>";
     unless ($nofooter) {          &Apache::lonenc::check_encrypt(\$ressymb);
         my ($blocked,$blocktext) =           if ($mode ne 'board') {
             &Apache::loncommon::blocking_status('boards');              $blocktext.=&send_message_link($ressymb).'</div>';
         if ($blocked) {          }else{
             my $footer = '<br /><div class="LC_feedback_link">';              $blocktext.="</div>";
             unless ($nodisclink) {  
                 $footer .= '<span class="LC_feedback_link">'.$blocktext.'</span>';  
             }  
             &Apache::lonenc::check_encrypt(\$ressymb);  
             if ($mode ne 'board') {  
                 unless ($nofdbklink) {  
                     $footer.=&send_message_link($ressymb);  
                 }  
             }  
             $footer.='</div>';  
             return $footer;  
         }          }
           return $blocktext; 
     }      }
   
     my @bgcols = ("LC_disc_old_item","LC_disc_new_item");      my @bgcols = ("LC_disc_old_item","LC_disc_new_item");
Line 790  END Line 774  END
                           &mt('This discussion is closed.').'</span>';                            &mt('This discussion is closed.').'</span>';
         }          }
     } elsif ($outputtarget ne 'tex') {      } elsif ($outputtarget ne 'tex') {
         unless ($nofooter) {          $discussion.='<div class="LC_feedback_link">';
             $discussion.='<div class="LC_feedback_link">';          if (&discussion_open($status) &&
             unless ($nodisclink) {              &Apache::lonnet::allowed('pch',
                 if (&discussion_open($status) &&             $env{'request.course.id'}.
                     &Apache::lonnet::allowed('pch',          ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
                    $env{'request.course.id'}.              $discussion.= &send_feedback_link($ressymb);
                 ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {              if ($env{'request.role.adv'}) {
                     $discussion.= &send_feedback_link($ressymb);                  my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);
                     if ($env{'request.role.adv'}) {                  my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);
                         my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);                  if (defined($close) && $close ne '' && $close < time) {
                         my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);                      if ($canvote eq 'notended') {
                         if (defined($close) && $close ne '' && $close < time) {                          $discussion .= '&nbsp;'.&mt('(Posting and voting closed for [_1] roles)',
                             if ($canvote eq 'notended') {                                                      &Apache::lonnet::plaintext('st',$crstype));
                                 $discussion .= '&nbsp;'.&mt('(Posting and voting closed for [_1] roles)',                      } else {
                                                             &Apache::lonnet::plaintext('st',$crstype));                          $discussion .= '&nbsp;'.&mt('(Closed for [_1] roles)',
                             } else {                                                      &Apache::lonnet::plaintext('st',$crstype));
                                 $discussion .= '&nbsp;'.&mt('(Closed for [_1] roles)',  
                                                             &Apache::lonnet::plaintext('st',$crstype));  
                             }  
                         }  
                     }                      }
         } else {  
                     $discussion.= '<span class="LC_feedback_link">'.&mt('This discussion is closed.').'</span>';  
                 }                  }
             }              }
             unless ($nofdbklink) {   } else {
         $discussion.= &send_message_link($ressymb);              $discussion.= '<span class="LC_feedback_link">'.&mt('This discussion is closed.').'</span>';
             }  
             $discussion.='</div>';  
         }          }
    $discussion.= &send_message_link($ressymb).'</div>';
     }      }
     return $discussion;      return $discussion;
 }  }
   
 sub check_menucoll {  
     my ($nofooter,$nodisclink,$nofdbklink);  
     my ($menucoll,$deeplinkmenu,$menuref) = &Apache::loncommon::menucoll_in_effect();  
     if ($menucoll) {  
         if (ref($menuref) eq 'HASH') {  
             if ($menuref->{'foot'} eq 'n') {  
                 $nofooter = 1;  
             } else {  
                 unless ($menuref->{'disc'}) {  
                     $nodisclink = 1;  
                 }  
                 unless ($menuref->{'fdbk'}) {  
                     $nofdbklink = 1;  
                 }  
             }  
         }  
     }  
     return ($nofooter,$nodisclink,$nofdbklink);  
 }  
   
 sub can_see_hidden {  sub can_see_hidden {
     my ($mode,$ressymb,$feedurl,$group,$cdom,$cnum,$crs) = @_;      my ($mode,$ressymb,$feedurl,$group,$cdom,$cnum,$crs) = @_;
     my $seehidden;      my $seehidden;
Line 1003  sub postingform_display { Line 960  sub postingform_display {
             }              }
         }          }
     }      }
       my $postanon;
       if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
          ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
           $postanon = '<input type="submit" name="anondiscuss" value="'.$lt{'poan'}.'" />';
       }
     $postingform .= (<<ENDDISCUSS);      $postingform .= (<<ENDDISCUSS);
 <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data"> <input type="submit" name="discuss" value="$lt{'podi'}" />  <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data"> <input type="submit" name="discuss" value="$lt{'podi'}" />
 <input type="submit" name="anondiscuss" value="$lt{'poan'}" /> <input type="hidden" name="symb" value="$ressymb" />  $postanon<input type="hidden" name="symb" value="$ressymb" />
 <input type="hidden" name="sendit" value="true" />  <input type="hidden" name="sendit" value="true" />
 <input type="hidden" name="timestamp" value="$now" />  <input type="hidden" name="timestamp" value="$now" />
 <a name="newpost"></a>  <a name="newpost"></a>
Line 1307  sub build_posting_display { Line 1269  sub build_posting_display {
                                 @{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}} = ("$idx");                                  @{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}} = ("$idx");
                             }                              }
 # Set up for sorting by last name, then first name  # Set up for sorting by last name, then first name
                             my %names = &Apache::loncommon::getnames($contrib{$idx.':sendername'},                              my %names = &Apache::lonnet::get('environment',
                                                                      $contrib{$idx.':senderdomain'});                                   ['firstname','lastname'],$contrib{$idx.':senderdomain'},
                                     ,$contrib{$idx.':sendername'});
                             my $lastname = $names{'lastname'};                              my $lastname = $names{'lastname'};
                             my $firstname = $names{'firstname'};                              my $firstname = $names{'firstname'};
                             if ($lastname eq '') {                              if ($lastname eq '') {
Line 1688  sub get_post_contents { Line 1651  sub get_post_contents {
                                         $$contrib{$idx.':sendername'},                                          $$contrib{$idx.':sendername'},
                                         $$contrib{$idx.':senderdomain'});                                          $$contrib{$idx.':senderdomain'});
     $$screenname=$$contrib{$idx.':screenname'};      $$screenname=$$contrib{$idx.':screenname'};
     $$showaboutme = &Apache::loncommon::aboutme_on($$contrib{$idx.':sendername'},      $$showaboutme = &Apache::lonnet::usertools_access($$contrib{$idx.':sendername'},
                                                    $$contrib{$idx.':senderdomain'});                                                        $$contrib{$idx.':senderdomain'},
                                                         'aboutme');
     my $sender = $$plainname;      my $sender = $$plainname;
     if ($$showaboutme) {      if ($$showaboutme) {
         $sender = &Apache::loncommon::aboutmewrapper(          $sender = &Apache::loncommon::aboutmewrapper(
Line 2097  END Line 2061  END
         $r->print(<<END);          $r->print(<<END);
 <p>  <p>
 $lt{'atta'} $attachmaxtext: <input type="file" name="attachment" class="LC_flUpload" />  $lt{'atta'} $attachmaxtext: <input type="file" name="attachment" class="LC_flUpload" />
 <input type="hidden" id="LC_free_space" value="131072" />  <input type="hidden" id="free_space" value="131072" />
 </p>  </p>
 END  END
     }      }
Line 2108  END Line 2072  END
         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');          $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
     }      }
     $r->print(<<END);      $r->print(<<END);
 <input type="hidden" name="sendit" value="1" />  <input type="hidden" name="sendit" value="1" /><br /><br />
 <input type="button" value="$send" onclick='gosubmit();' />  <input type="button" value="$send" onclick='gosubmit();' />
 </form>  </form>
 END  END
Line 2744  sub get_post_attachments { Line 2708  sub get_post_attachments {
         $$attachments{'0'}{'filename'} = $attachmenturls;          $$attachments{'0'}{'filename'} = $attachmenturls;
         $$attachments{'0'}{'0'} = 'n';          $$attachments{'0'}{'0'} = 'n';
     }      }
   
     return;      return;
 }  }
   
 sub fail_redirect {  sub fail_redirect {
   my ($r,$feedurl,$delay) = @_;    my ($r,$feedurl) = @_;
   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };    if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
   my %lt = &Apache::lonlocal::texthash(    my %lt = &Apache::lonlocal::texthash(
                  'sorr' => 'Sorry, no recipients ...',                   'sorr' => 'Sorry, no recipients ...',
   );    );
   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');    my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
   my %parms=('only_body'   => 1);    $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,
   if ($delay !~ /^\d+(|\.\d+)$/) {     {'redirect'  => [2,$feedurl],
       $delay = 2;      'only_body' => 1,}));
   }  
   if ($env{'form.modal'}) {  
       my $onload = 'document.forms.reldt.submit()';  
       if ($delay) {  
           my $js_delay = int(1000 * $delay);  
           $onload = "setTimeout(function(){  
                      document.forms.reldt.submit();  
                      },$js_delay);";  
       }  
       $parms{'add_entries'}={'onload' => $onload};  
   } else {  
       $parms{'redirect'}=[$delay,$feedurl];  
   }  
   $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,\%parms));  
   my $windowname = 'loncapaclient';  
   $r->print(<<ENDFAILREDIR);    $r->print(<<ENDFAILREDIR);
 <img align="right" src="$logo" />  <img align="right" src="$logo" />
 <p class="LC_warning">$lt{'sorr'}</p>  <p class="LC_warning">$lt{'sorr'}</p>
 <form name="reldt" action="$feedurl" target="$windowname">  
 </form>  
 ENDFAILREDIR  ENDFAILREDIR
   $r->print(&Apache::loncommon::end_page());    $r->print(&Apache::loncommon::end_page());
 }  }
   
 sub redirect_back {  sub redirect_back {
   my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,    my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,$rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge) = @_;
       $rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge,$delay) = @_;  
   my $sorttag = '';    my $sorttag = '';
   my $roletag = '';    my $roletag = '';
   my $statustag = '';    my $statustag = '';
Line 2882  sub redirect_back { Line 2829  sub redirect_back {
   &Apache::lonenc::check_encrypt(\$feedurl);    &Apache::lonenc::check_encrypt(\$feedurl);
   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');    my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
   my %parms=('only_body'   => 1);    my %parms=('only_body'   => 1);
   if ($delay !~ /^\d+(|\.\d+)$/) {  
       $delay = 0;  
   }  
   if ($env{'form.modal'}) {    if ($env{'form.modal'}) {
       my $onload = 'document.forms.reldt.submit()';        $parms{'add_entries'}={'onLoad' => 'document.forms.reldt.submit()'};
       if ($delay) {  
           my $js_delay = int(1000 * $delay);  
           $onload = "setTimeout(function(){  
                         document.forms.reldt.submit();  
                      },$js_delay);";  
       }  
       $parms{'add_entries'}={'onload' => $onload};  
   } else {    } else {
       $parms{'redirect'}=[$delay,$feedurl];        $parms{'redirect'}=[0,$feedurl];
   }    }
   my $start_page=    my $start_page=
       &Apache::loncommon::start_page('Feedback sent',undef,\%parms);        &Apache::loncommon::start_page('Feedback sent',undef,\%parms);
   my $end_page = &Apache::loncommon::end_page();    my $end_page = &Apache::loncommon::end_page();
     my $windowname = 'loncapaclient';
     if ($env{'request.lti.login'}) {
        $windowname .= 'lti';
     }
   $r->print(<<ENDREDIR);    $r->print(<<ENDREDIR);
 $start_page  $start_page
 <img align="right" src="$logo" />  <img align="right" src="$logo" />
Line 2908  $typestyle Line 2849  $typestyle
 $blog  $blog
 $toolarge  $toolarge
 <font color="red">$status</font>  <font color="red">$status</font>
 <form name="reldt" action="$feedurl" target="loncapaclient">  <form name="reldt" action="$feedurl" target="$windowname">
 $prevtag  $prevtag
 $sorttag  $sorttag
 $statustag  $statustag
Line 2923  ENDREDIR Line 2864  ENDREDIR
 }  }
   
 sub no_redirect_back {  sub no_redirect_back {
   my ($r,$feedurl,$delay) = @_;    my ($r,$feedurl) = @_;
   my $nofeed=&mt('Sorry, no feedback possible on this resource ...');    my $nofeed=&mt('Sorry, no feedback possible on this resource ...');
   my $form_for_modal;   
   my %parms=('only_body'   => 1,    my %onload;
              'bgcolor'     => '#FFFFFF',);  
   if ($delay !~ /^\d+(|\.\d+)$/) {    my %body_options = ('only_body'   => 1,
       $delay = 0;        'bgcolor'     => '#FFFFFF',
   }        'add_entries' => \%onload,);
   if ($env{'form.modal'}) {  
       if (($feedurl !~ m{^/adm/feedback}) && ($feedurl ne '')) {    if ($feedurl !~ m{^/adm/feedback}) { 
           my $onload = 'document.forms.reldt.submit()';        $body_options{'redirect'} = [2,$feedurl];
           if ($delay) {  
               my $js_delay = int(1000 * $delay);  
               $onload = "setTimeout(function(){  
                          document.forms.reldt.submit();  
                          },$js_delay);";  
           }  
           $parms{'add_entries'}={'onload' => $onload};  
           my $windowname = 'loncapaclient';   
           $form_for_modal = <<ENDFORM;  
 <form name="reldt" action="$feedurl" target="$windowname">  
 </form>  
 ENDFORM  
       }  
   } else {  
       if (($feedurl !~ m{^/adm/feedback}) && ($feedurl ne '')) {  
           $parms{'redirect'}=[$delay,$feedurl];  
       }  
   }    }
   my $start_page=    my $start_page=
       &Apache::loncommon::start_page('Feedback not sent',undef,        &Apache::loncommon::start_page('Feedback not sent',undef,
      \%parms);       \%body_options);
         
   my $end_page = &Apache::loncommon::end_page();    my $end_page = &Apache::loncommon::end_page();
   
     &Apache::lonenc::check_encrypt(\$feedurl);
   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');    my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
   $r->print (<<ENDNOREDIRTWO);    $r->print (<<ENDNOREDIRTWO);
 $start_page  $start_page
 <img align="right" src="$logo" />  <img align="right" src="$logo" />
 <b>$nofeed</b>  <b>$nofeed</b>
 <br />  <br />
 $form_for_modal  
 $end_page  $end_page
 ENDNOREDIRTWO  ENDNOREDIRTWO
 }  }
   
 sub screen_header {  sub screen_header {
     my ($feedurl,$symb,$group) = @_;      my ($feedurl,$symb,$group) = @_;
     my %default = &Apache::lonlocal::texthash (      my $crscontent = &mt('Question/Comment/Feedback about course content');
                     question => 'Question about resource content',      my $crspolicy = &mt('Question/Comment/Feedback about course policy');
                     comment => 'Question/Comment/Feedback about course content',  
                     policy => 'Question/Comment/Feedback about course policy',  
                   );  
     my $contribdisc = &mt('Contribution to course discussion of resource');      my $contribdisc = &mt('Contribution to course discussion of resource');
     my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');      my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');
     my $namevis = &mt('name only visible to course faculty');      my $namevis = &mt('name only visible to course faculty');
Line 2983  sub screen_header { Line 2904  sub screen_header {
     if ($env{'request.course.id'}) {      if ($env{'request.course.id'}) {
         $crstype = &Apache::loncommon::course_type();          $crstype = &Apache::loncommon::course_type();
         if ($crstype eq 'Community') {          if ($crstype eq 'Community') {
             $default{'comment'} = &mt('Question/Comment/Feedback about community content');              $crscontent = &mt('Question/Comment/Feedback about community content');
             $default{'policy'} = &mt('Question/Comment/Feedback about community policy');              $crspolicy = &mt('Question/Comment/Feedback about community policy');
             $contribdisc = &mt('Contribution to community discussion of resource');              $contribdisc = &mt('Contribution to community discussion of resource');
             $anoncontrib = &mt('Anonymous contribution to community discussion of resource');              $anoncontrib = &mt('Anonymous contribution to community discussion of resource');
             $namevis = &mt('name only visible to community facilitators');              $namevis = &mt('name only visible to community facilitators');
Line 2992  sub screen_header { Line 2913  sub screen_header {
     }      }
     my $msgoptions='';      my $msgoptions='';
     my $discussoptions='';      my $discussoptions='';
     my $checkradio = '';  
     my $blockblog;  
     my (%fdbkoptions,%discoptions);  
     unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {      unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
         if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {   if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
             $fdbkoptions{'author'} = 1;      $msgoptions= 
         }   '<label><input type="radio" name="discuss" value="author" /> '.
         if (&feedback_available(1)) {   &mt('Feedback to resource author').'</label><br />';
             $fdbkoptions{'question'} = 1;   }
         }          my %optionhash=();
         if (&feedback_available(0,1)) {          foreach my $type ('question','comment','policy') {
             $fdbkoptions{'course'} = 1;      $optionhash{$type}=$env{'course.'.$env{'request.course.id'}.'.'.$type.'.email.text'};
         }   }
         if (&feedback_available(0,0,1)) {   if (&feedback_available(1)) {
             $fdbkoptions{'policy'} = 1;      $msgoptions.=
         }   '<label><input type="radio" name="discuss" value="question" /> '.
    ($optionhash{'question'}?$optionhash{'question'}:&mt('Question about resource content')).'</label><br />';
    }
    if (&feedback_available(0,1)) {
       $msgoptions.=
    '<label><input type="radio" name="discuss" value="course" /> '.
    ($optionhash{'comment'}?$optionhash{'comment'}:$crscontent).
    '</label><br />';
    }
    if (&feedback_available(0,0,1)) {
       $msgoptions.=
    '<label><input type="radio" name="discuss" value="policy" /> '.
    ($optionhash{'policy'}?$optionhash{'policy'}:$crspolicy).
    '</label><br />';
    }
     }      }
     if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {      if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {
         my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');          my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');
         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};          my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};          my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
         my $realsymb = &get_realsymb($symb);          my $realsymb = &get_realsymb($symb);
         if (!$blocked && &discussion_open(undef,$realsymb) &&          if (!$blocked && &discussion_open(undef,$realsymb) && 
             (&Apache::lonnet::allowed('pch',      (&Apache::lonnet::allowed('pch',
                                       $env{'request.course.id'}.        $env{'request.course.id'}.
                                       ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) ||         ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) || 
             (($group ne '') && ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$}) && (&check_group_priv($group,'pgd') eq 'ok')))) {              (($group ne '') && ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$}) && (&check_group_priv($group,'pgd') eq 'ok')))) {
             $discoptions{'nonanon'} = 1;  
             $discoptions{'anon'} = 1;  
             $blockblog = &Apache::loncommon::blocking_status('blogs');  
         }  
     }  
     my $total = scalar(keys(%fdbkoptions)) + scalar(keys(%discoptions));  
     return if (!$total);  
     if ($total == 1) {  
         $checkradio = ' checked="checked"';  
     }  
     if (keys(%fdbkoptions)) {  
         if ($fdbkoptions{'author'}) {  
             $msgoptions =  
                 '<label><input type="radio" name="discuss" value="author"'.$checkradio.' /> '.  
                 &mt('Feedback to resource author').'</label><br />';  
         }  
         foreach my $item ('question','comment','policy') {  
             my $type = $item;  
             if ($item eq 'comment') {  
                 $type = 'course';  
             }  
             my $optionhash=$env{'course.'.$env{'request.course.id'}.'.'.$item.'.email.text'};  
             if ($fdbkoptions{$type}) {  
                 $msgoptions .=  
                     '<label><input type="radio" name="discuss" value="'.$type.'"'.$checkradio.' />'.  
                     ($optionhash?$optionhash:$default{$item}).'</label><br />';  
             }  
         }  
     }  
     if (keys(%discoptions)) {  
         if ($discoptions{'nonanon'}) {  
             $discussoptions='<label><input type="radio" name="discuss" value="nonanon" checked="checked" /> '.              $discussoptions='<label><input type="radio" name="discuss" value="nonanon" checked="checked" /> '.
                             $contribdisc.                              $contribdisc.
                             '</label>';                              '</label>'; 
         }              if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
         if ($discoptions{'anon'}) {                 ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
             $discussoptions .= '<br /><label><input type="radio" name="discuss" value="anon"'.$checkradio.' /> '.          $discussoptions .= '<br /><label><input type="radio" name="discuss" value="anon" /> '.
                                $anoncontrib.                     $anoncontrib.
                                ' <i>('.$namevis.')</i></label> '.                     ' <i>('.$namevis.')</i></label> '.
                                '<a href="/adm/preferences?action=changescreenname">'.&mt('Change Screenname').'</a>';                     '<a href="/adm/preferences?action=changescreenname">'.&mt('Change Screenname').'</a>';
         }              }
         if (!$blockblog) {              my $blockblog = &Apache::loncommon::blocking_status('blogs');
             $discussoptions.= &add_blog_checkbox($crstype);              if (!$blockblog) {
                   $discussoptions.= &add_blog_checkbox($crstype);
               }
         }          }
     }      }
     if ($msgoptions) {      if ($msgoptions) {
Line 3149  sub feedback_available { Line 3052  sub feedback_available {
 }  }
   
 sub send_msg {  sub send_msg {
     my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,$clientip,%to)=@_;      my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,%to)=@_;
     my $status='';      my $status='';
     my $sendsomething=0;      my $sendsomething=0;
     my $delay;  
     my $senthide;  
     my %setters;  
     my ($startblock,$endblock,$triggerblock,$by_ip,$blockdom) =  
         &Apache::loncommon::blockcheck(\%setters,'com',$clientip);  
     if ($by_ip) {  
         $senthide = 1;  
     }  
     my $restitle = &get_resource_title($symb,$feedurl);      my $restitle = &get_resource_title($symb,$feedurl);
     if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }      if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }
     unless ($title=~/\w/) { $title=&mt('Feedback'); }      unless ($title=~/\w/) { $title=&mt('Feedback'); }
Line 3173  sub send_msg { Line 3068  sub send_msg {
     } else {      } else {
  unless (&Apache::lonmsg::user_normal_msg($user,$domain,   unless (&Apache::lonmsg::user_normal_msg($user,$domain,
  $title.' ['.$restitle.']',$email,$citations,$feedurl,   $title.' ['.$restitle.']',$email,$citations,$feedurl,
  $attachmenturl,undef,undef,$symb,$restitle,undef,   $attachmenturl,undef,undef,$symb,$restitle)=~/ok/) {
                                                          undef,undef,undef,$senthide)=~/ok/) {  
     $status.='<br />'.&mt('Error sending message to').' '.$key.'<br />';      $status.='<br />'.&mt('Error sending message to').' '.$key.'<br />';
  } else {   } else {
     $sendsomething++;      $sendsomething++;
Line 3182  sub send_msg { Line 3076  sub send_msg {
     }      }
  }   }
     }      }
     if ($sendsomething && $senthide) {  
         if ($by_ip) {  
             my $showdom = &Apache::lonnet::domain($blockdom);  
             if ($showdom eq '') {  
                 $showdom = $blockdom;  
             }  
             $delay = 4;  
             $status.='<br />'.&mt("Message content of feedback you send to instructor(s) from your current IP address: [_1] will be unavailable in your 'Sent' folder.",$clientip).  
                      '<ul><li>'.  
                      &mt('This does not affect delivery of feedback to your instructor(s).').  
                      '</li><li>'.  
                      &mt('Note: some types of communication functionality are blocked for certain IP address(es).').  
                      '</li><li>'.  
                      &mt('This restriction was set by an administrator in the [_1] LON-CAPA domain.',  
                          $showdom).  
                      '</li></ul><br />';  
         }  
     }  
   
 # Records of number of feedback messages are kept under the "symb" called "_feedback"  # Records of number of feedback messages are kept under the "symb" called "_feedback"
 # There are two entries within the framework of a course:  # There are two entries within the framework of a course:
Line 3217  sub send_msg { Line 3093  sub send_msg {
     }      }
         }          }
     }      }
     return ($status,$sendsomething,$delay);      return ($status,$sendsomething);
 }  }
   
 # Routine to get the complete feedback records  # Routine to get the complete feedback records
Line 3307  sub adddiscuss { Line 3183  sub adddiscuss {
     if (($symb) && ($email)) {      if (($symb) && ($email)) {
         my $now = time;          my $now = time;
         if ($env{'form.editdisc'}) {          if ($env{'form.editdisc'}) {
             $contrib{'ip'}=&Apache::lonnet::get_requestor_ip();              $contrib{'ip'}=$ENV{'REMOTE_ADDR'};
             $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};              $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};
             $contrib{'timestamp'} = $now;              $contrib{'timestamp'} = $now;
             $contrib{'history'} = '';              $contrib{'history'} = '';
Line 3641  sub modify_attachments { Line 3517  sub modify_attachments {
    document.modattachments.action = document.modattachments.origpage.value;     document.modattachments.action = document.modattachments.origpage.value;
    document.modattachments.submit();     document.modattachments.submit();
  }   }
 </script>  </script> 
 <script type="text/javascript" src="/res/adm/includes/file_upload.js"></script>  <script type="text/javascript" src="/res/adm/includes/file_upload.js"></script>
 END  END
   
Line 3685  END Line 3561  END
     $r->print(&Apache::lonhtmlcommon::row_closure());      $r->print(&Apache::lonhtmlcommon::row_closure());
     $r->print(&Apache::lonhtmlcommon::row_title($lt{'adda'}));      $r->print(&Apache::lonhtmlcommon::row_title($lt{'adda'}));
     $r->print('<input type="file" name="addnewattach" class="LC_flUpload" />'      $r->print('<input type="file" name="addnewattach" class="LC_flUpload" />'
         .'<input type="hidden" id="LC_free_space" value="131072" />'          .'<input type="hidden" id="free_space" value="131072" />'
         .'<input type="button" name="upload" value="Upload" '          .'<input type="button" name="upload" value="Upload" '
         .'onclick="this.form.submit()" />  '.$attachmaxtext);          .'onclick="this.form.submit()" />  '.$attachmaxtext);
     if(($idx)||(ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)){      if(($idx)||(ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)){
Line 4028  sub handler { Line 3904  sub handler {
           my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];            my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
           my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);            my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
           my $feedurl=&Apache::lonnet::clutter($url);            my $feedurl=&Apache::lonnet::clutter($url);
           &redirect_back($r,$feedurl,&mt('Editing not permitted').'<br />',            &redirect_back($r,$feedurl,&mt('Editing not permitted').'<br />',                     '0','0','','',$env{'form.previous'},undef,undef,undef,
                          '0','0','','',$env{'form.previous'},undef,undef,undef,                      undef,undef,undef,$group);
                          undef,undef,undef,$group);  
           return OK;            return OK;
       }        }
   }     } 
Line 4173  sub handler { Line 4048  sub handler {
   'only_body'   => 1,    'only_body'   => 1,
   'add_entries' => \%onload});    'add_entries' => \%onload});
       my $end_page = &Apache::loncommon::end_page();        my $end_page = &Apache::loncommon::end_page();
         my $windowname = 'loncapaclient';
         if ($env{'request.lti.login'}) {
             $windowname .= 'lti';
         }
       $r->print (<<ENDREDIR);        $r->print (<<ENDREDIR);
 $start_page  $start_page
 <img align="right" src="$logo" />  <img align="right" src="$logo" />
 $textline  $textline
 <form name="reldt" action="$feedurl" target="loncapaclient">  <form name="reldt" action="$feedurl" target="$windowname">
 </form>  </form>
 <br />  <br />
 $end_page  $end_page
Line 4237  ENDREDIR Line 4116  ENDREDIR
       unless (($seehidden) || (&editing_allowed($env{'form.hide'},$group))) {        unless (($seehidden) || (&editing_allowed($env{'form.hide'},$group))) {
           &redirect_back($r,$feedurl,&mt('Hiding not permitted').'<br />',            &redirect_back($r,$feedurl,&mt('Hiding not permitted').'<br />',
                          '0','0','','',$env{'form.previous'},'','','','',                           '0','0','','',$env{'form.previous'},'','','','',
                          undef,undef,$group);                           undef,undef,$group,);
           return OK;            return OK;
       }        }
   
Line 4669  ENDREDIR Line 4548  ENDREDIR
   $r->internal_redirect('/adm/ambiguous');    $r->internal_redirect('/adm/ambiguous');
   return OK;    return OK;
       }        }
       if ($feedurl eq '') {  
           &Apache::loncommon::content_type($r,'text/html');  
           $r->send_http_header;  
           &no_redirect_back($r);  
           return OK;  
       }  
 # Go ahead with feedback, no ambiguous reference  # Go ahead with feedback, no ambiguous reference
       unless (        unless (
   (    (
Line 4685  ENDREDIR Line 4558  ENDREDIR
   ||    ||
   ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))    ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
           ||            ||
           (($env{'request.course.id'}) && ($feedurl =~ /ext\.tool$/))            (($env{'request.course.id'} && ($feedurl =~ /ext\.tool$/)))
   ) {    ) {
   &Apache::loncommon::content_type($r,'text/html');    &Apache::loncommon::content_type($r,'text/html');
   $r->send_http_header;    $r->send_http_header;
 # Unable to give feedback  # Unable to give feedback
           &Apache::lonenc::check_encrypt(\$feedurl);            &Apache::lonenc::check_encrypt(\$feedurl);
   &no_redirect_back($r,$feedurl,2);    &no_redirect_back($r,$feedurl);
   return OK;    return OK;
       }        }
 # --------------------------------------------------- Print login screen header  # --------------------------------------------------- Print login screen header
Line 4711  ENDREDIR Line 4584  ENDREDIR
   if ($options) {    if ($options) {
       &mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});        &mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});
   } else {    } else {
       &fail_redirect($r,$feedurl,2);        &fail_redirect($r,$feedurl);
   }    }
   return OK;    return OK;
       }        }
Line 4777  ENDREDIR Line 4650  ENDREDIR
       my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);        my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);
   
 # Actually send mail  # Actually send mail
       my $clientip = &Apache::lonnet::get_requestor_ip($r);        my ($status,$numsent)=&send_msg(&clear_out_html($env{'form.subject'}),
       my ($status,$numsent,$delay)=&send_msg(&clear_out_html($env{'form.subject'}),        $feedurl,$email,$citations,
              $feedurl,$email,$citations,        $attachmenturl,$usersymb,%to);
              $attachmenturl,$usersymb,$clientip,%to);  
   
 # Discussion? Store that.  # Discussion? Store that.
       my $numpost=0;        my $numpost=0;
Line 4788  ENDREDIR Line 4660  ENDREDIR
      && $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)       && $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)
    || $env{'form.anondiscuss'} ne '') {     || $env{'form.anondiscuss'} ne '') {
   my $subject = &clear_out_html($env{'form.subject'});    my $subject = &clear_out_html($env{'form.subject'});
   my $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );            my $anonmode;
             if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
                ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
         $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
             }
   $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,    $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
   $subject,$group);    $subject,$group);
   $numpost++;    $numpost++;
Line 4811  ENDREDIR Line 4687  ENDREDIR
       }        }
       
 # Receipt screen and redirect back to where came from  # Receipt screen and redirect back to where came from
       &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},        &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},undef,undef,undef,undef,undef,undef,$group,$toolarge);
                      undef,undef,undef,undef,undef,undef,$group,$toolarge,$delay);  
   }    }
   return OK;    return OK;
 }  }

Removed from v.1.370.2.5.2.4  
changed lines
  Added in v.1.381


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