File:  [LON-CAPA] / loncom / interface / lonfeedback.pm
Revision 1.377: download - view: text, annotated - select for diffs
Mon Dec 18 22:36:52 2017 UTC (6 years, 5 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Remove trailing white space.

    1: # The LearningOnline Network
    2: # Feedback
    3: #
    4: # $Id: lonfeedback.pm,v 1.377 2017/12/18 22:36:52 raeburn Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: ###
   29: 
   30: package Apache::lonfeedback;
   31: 
   32: use strict;
   33: use Apache::Constants qw(:common);
   34: use Apache::lonmsg();
   35: use Apache::loncommon();
   36: use Apache::lontexconvert();
   37: use Apache::lonlocal; # must not have ()
   38: use Apache::lonnet;
   39: use Apache::lonhtmlcommon();
   40: use Apache::lonnavmaps;
   41: use Apache::lonenc();
   42: use Apache::lonrss();
   43: use HTML::LCParser();
   44: #use HTML::Tidy::libXML;
   45: use Apache::lonspeller();
   46: use Apache::longroup;
   47: use Archive::Zip qw( :ERROR_CODES );
   48: use LONCAPA qw(:DEFAULT :match);
   49: 
   50: sub discussion_open {
   51:     my ($status,$symb)=@_;
   52: # Advanced roles can always discuss
   53:     if ($env{'request.role.adv'}) { return 1; }
   54: # Get discussion closing date
   55:     my $close=&Apache::lonnet::EXT('resource.0.discussend',$symb);
   56: # If it is defined and in the future, the instructor wants this discussion to be open
   57:     if (defined($close) && $close ne '' && $close > time) {
   58:         return 1;
   59:     }
   60: # It was not explicitly open, check if the problem is available.
   61: # If the problem is not available, close the discussion 
   62:     if (defined($status) &&
   63: 	!($status eq 'CAN_ANSWER' || $status eq 'CANNOT_ANSWER'
   64: 	  || $status eq 'OPEN')) {
   65: 	return 0;
   66:     }
   67: # The problem is available, but check if the instructor explictly closed discussion
   68:     if (defined($close) && $close ne '' && $close < time) {
   69: 	return 0;
   70:     }
   71:     return 1;
   72: }
   73: 
   74: sub discussion_visible {
   75:     my ($status)=@_;
   76:     if (not &discussion_open($status)) {
   77: 	my $hidden=&Apache::lonnet::EXT('resource.0.discusshide');
   78: 	if (lc($hidden) eq 'yes' or $hidden eq '' or !defined($hidden))  {
   79: 	    if (!$env{'request.role.adv'}) { return 0; }
   80: 	}
   81:     }
   82:     return 1;
   83: }
   84: 
   85: sub discussion_vote_available {
   86:     my ($status,$symb)=@_;
   87:     my $canvote=&Apache::lonnet::EXT('resource.0.discussvote',$symb);
   88:     if ((lc($canvote) eq 'yes') || 
   89:         ((lc($canvote) eq 'notended') && (&discussion_open($status,$symb)))) {
   90:         return 1;
   91:     }
   92: }
   93: 
   94: sub get_realsymb {
   95:     my ($symb) = @_;
   96:     my $realsymb = $symb;
   97:     if ($symb=~/^bulletin___/) {
   98:         my $filename=(&Apache::lonnet::decode_symb($symb))[2];
   99:         $filename=~s{^adm/wrapper/}{};
  100:         $realsymb=&Apache::lonnet::symbread($filename);
  101:     }
  102:     return $realsymb;
  103: }
  104: 
  105: sub list_discussion {
  106:     my ($mode,$status,$ressymb,$imsextras,$group)=@_;
  107:     unless ($ressymb) { $ressymb=&Apache::lonnet::symbread(); }
  108:     unless ($ressymb) { return ''; }
  109:     $ressymb=&wrap_symb($ressymb);
  110:     my $outputtarget=$env{'form.grade_target'};
  111:     if (defined($env{'form.export'})) {
  112: 	if($env{'form.export'}) {
  113:             $outputtarget = 'export';
  114:         }
  115:     }
  116:     if (defined($imsextras)) {
  117:         if ($$imsextras{'caller'} eq 'imsexport') {
  118:             $outputtarget = 'export';
  119:         }
  120:     }
  121:     if (not &discussion_visible($status)) {
  122:         if ($mode ne 'board') {
  123:             &Apache::lonenc::check_encrypt(\$ressymb); 
  124:             return '<br /><div class="LC_feedback_link">'.&send_message_link($ressymb)."</div>";
  125:         }
  126:     }
  127:     if ($group ne '' && $mode eq 'board') {
  128:         if (&check_group_priv($group,'vgb') ne 'ok') {
  129:             return '';
  130:         }
  131:     }
  132: 
  133:     my ($blocked,$blocktext) = 
  134:         &Apache::loncommon::blocking_status('boards');
  135:     if ($blocked) {
  136:         $blocktext = '<br /><div class="LC_feedback_link"><span class="LC_feedback_link">'.$blocktext."</span>";
  137:         &Apache::lonenc::check_encrypt(\$ressymb);
  138:         if ($mode ne 'board') {
  139:             $blocktext.=&send_message_link($ressymb).'</div>';
  140:         }else{
  141:             $blocktext.="</div>";
  142:         }
  143:         return $blocktext; 
  144:     }
  145: 
  146:     my @bgcols = ("LC_disc_old_item","LC_disc_new_item");
  147:     my $discussiononly=0;
  148:     if ($mode eq 'board') { $discussiononly=1; }
  149:     unless ($env{'request.course.id'}) { return ''; }
  150:     my $crs='/'.$env{'request.course.id'};
  151:     my $cid=$env{'request.course.id'};
  152:     if ($env{'request.course.sec'}) {
  153: 	$crs.='_'.$env{'request.course.sec'};
  154:     }
  155:     $crs=~s/\_/\//g;
  156:     my $encsymb=&Apache::lonenc::check_encrypt($ressymb);
  157:     my $viewgrades=(&Apache::lonnet::allowed('vgr',$crs)
  158: 		  && ($ressymb=~/$LONCAPA::assess_re/));
  159:     
  160:     my %usernamesort = ();
  161:     my %namesort =();
  162:     my %subjectsort = ();
  163: 
  164: # Get discussion display settings for this discussion
  165:     my $lastkey = $ressymb.'_lastread';
  166:     my $showkey = $ressymb.'_showonlyunread';
  167:     my $markkey = $ressymb.'_showonlyunmark',
  168:     my $visitkey = $ressymb.'_visit';
  169:     my $ondispkey = $ressymb.'_markondisp';
  170:     my $userpickkey = $ressymb.'_userpick';
  171:     my $toggkey = $ressymb.'_readtoggle';
  172:     my $readkey = $ressymb.'_read';
  173:     $ressymb=$encsymb;
  174:     my %dischash = &Apache::lonnet::get('nohist_'.$cid.'_discuss',[$lastkey,$showkey,$markkey,$visitkey,$ondispkey,$userpickkey,$toggkey,$readkey],$env{'user.domain'},$env{'user.name'});
  175:     my %discinfo = ();
  176:     my $showonlyunread = 0;
  177:     my $showunmark = 0; 
  178:     my $markondisp = 0;
  179:     my $prevread = 0;
  180:     my $previous = 0;
  181:     my $visit = 0;
  182:     my $newpostsflag = 0;
  183:     my @posters = split(/\&/,$dischash{$userpickkey});
  184: 
  185: # Retain identification of "NEW" posts identified in last display, if continuing 'previous' browsing of posts.
  186:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['previous','sortposts','rolefilter','statusfilter','sectionpick','grouppick','totposters']);
  187:     my $sortposts = $env{'form.sortposts'};
  188:     my $statusfilter = $env{'form.statusfilter'};
  189:     my @sectionpick = split(/,/,$env{'form.sectionpick'});
  190:     my @grouppick   = split(/,/,$env{'form.grouppick'});
  191:     my @rolefilter  = split(/,/,$env{'form.rolefilter'});
  192: 
  193:     my $totposters = $env{'form.totposters'};
  194:     $previous = $env{'form.previous'};
  195:     if ($previous > 0) {
  196:         $prevread = $previous;
  197:     } elsif (defined($dischash{$lastkey})) {
  198:         unless ($dischash{$lastkey} eq '') {
  199:             $prevread = $dischash{$lastkey};
  200:         }
  201:     }
  202: 
  203:     my $cdom = $env{'course.'.$cid.'.domain'};
  204:     my $cnum = $env{'course.'.$cid.'.num'};
  205:     my $crstype = &Apache::loncommon::course_type();
  206: 
  207: # Get information about students and non-students in course for filtering display of posts
  208:     my %roleshash = ();
  209:     my %roleinfo = ();
  210:     my ($classgroups,$studentgroups);
  211:     if ($env{'form.rolefilter'}) {
  212:         %roleshash = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
  213:         foreach my $rolekey (keys(%roleshash)) {
  214:             my ($role,$uname,$udom,$sec) = split(/:/,$rolekey);
  215:             if ($role =~ /^cr/) {
  216:                 $role = 'cr';
  217:             }
  218:             my ($end,$start) = split(/:/,$roleshash{$rolekey});
  219:             my $now = time;
  220:             my $status = 'Active';
  221:             if (($now < $start) || ($end > 0 && $now > $end)) {
  222:                 $status = 'Expired';
  223:             }
  224:             if ($uname && $udom) { 
  225:                 push(@{$roleinfo{$uname.':'.$udom}}, $role.':'.$sec.':'.$status);
  226:             }
  227:         }
  228:         my ($classlist,$keylist) =
  229:                          &Apache::loncoursedata::get_classlist($cdom,$cnum);
  230:         my $sec_index = &Apache::loncoursedata::CL_SECTION();
  231:         my $status_index = &Apache::loncoursedata::CL_STATUS();
  232:         while (my ($student,$data) = each %$classlist) {
  233:             my ($section,$status) = ($data->[$sec_index],
  234:                                  $data->[$status_index]);
  235:             push(@{$roleinfo{$student}}, 'st:'.$section.':'.$status);
  236:         }
  237: 	($classgroups,$studentgroups) = 
  238: 	    &Apache::loncoursedata::get_group_memberships($classlist,$keylist,
  239: 							  $cdom,$cnum);
  240:     }
  241: 
  242: # Get discussion display default settings for user
  243:     if ($env{'environment.discdisplay'} eq 'unread') {
  244:         $showonlyunread = 1;
  245:     }
  246:     if ($env{'environment.discmarkread'} eq 'ondisp') {
  247:         $markondisp = 1;
  248:     }
  249: 
  250: # Override user's default if user specified display setting for this discussion
  251:     if (defined($dischash{$ondispkey})) {
  252:         unless ($dischash{$ondispkey} eq '') {
  253:             $markondisp = $dischash{$ondispkey};
  254:         }
  255:     }
  256:     if ($markondisp) {
  257:         $discinfo{$lastkey} = time;
  258:     }
  259: 
  260:     if (defined($dischash{$showkey})) {
  261:         unless ($dischash{$showkey} eq '') {
  262:             $showonlyunread = $dischash{$showkey};
  263:         }
  264:     }
  265: 
  266:     if (defined($dischash{$markkey})) {
  267:         unless ($dischash{$markkey} eq '') {
  268:             $showunmark = $dischash{$markkey};
  269:         }
  270:     }
  271: 
  272:     if (defined($dischash{$visitkey})) {
  273:         unless ($dischash{$visitkey} eq '') {
  274:             $visit = $dischash{$visitkey};
  275:         }
  276:     }
  277:     $visit ++;
  278: 
  279:     my $seeid;
  280:     if (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  281:         $seeid = 1;
  282:     }
  283:     my $seehidden = &can_see_hidden($mode,$ressymb,undef,$group,$cdom,$cnum,$crs);
  284: 
  285: # Is voting on discussions available
  286:     my $realsymb = &get_realsymb($ressymb);
  287:     my $canvote = &discussion_vote_available($status,$realsymb);
  288: 
  289:     my @discussionitems=();
  290:     my %shown = ();
  291:     my @posteridentity=();
  292: 
  293:     my $current=0;
  294:     my $visible=0;
  295:     my @depth=();
  296:     my @replies = ();
  297:     my %alldiscussion=();
  298:     my %imsitems=();
  299:     my %imsfiles=();
  300:     my %notshown = ();
  301:     my %newitem = ();
  302:     my $maxdepth=0;
  303:     my %anonhash=();
  304:     my $anoncnt=0;
  305: 
  306:     my $now = time;
  307:     $discinfo{$visitkey} = $visit;
  308: 
  309:     &Apache::lonnet::put('nohist_'.$cid.'_discuss',\%discinfo,$env{'user.domain'},$env{'user.name'});
  310:     &build_posting_display(\%usernamesort,\%subjectsort,\%namesort,\%notshown,\%newitem,\%dischash,\%shown,\%alldiscussion,\%imsitems,\%imsfiles,\%roleinfo,\@discussionitems,\@replies,\@depth,\@posters,\$maxdepth,\$visible,\$newpostsflag,\$current,$status,$viewgrades,$seeid,$seehidden,$canvote,$prevread,$sortposts,$encsymb,$readkey,$showunmark,$showonlyunread,$totposters,\@rolefilter,\@sectionpick,\@grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,\%anonhash,$anoncnt,$group);
  311: 
  312:     my $discussion='';
  313:     my $manifestfile;
  314:     my $manifestok=0;
  315:     my $tempexport;
  316:     my $imsresources;
  317:     my $copyresult;
  318: 
  319:     my $function = &Apache::loncommon::get_users_function();
  320:     my %lt = &Apache::lonlocal::texthash(
  321:         'cuse' => 'My settings for this discussion',
  322:         'allposts' => 'All posts',
  323:         'unread' => 'New posts only',
  324:         'unmark' => 'Unread only',
  325:         'ondisp' => 'Once displayed',
  326:         'onmark' => 'Once marked not NEW',
  327:         'toggoff' => 'Off',
  328:         'toggon' => 'On',
  329:         'disa' => 'Posts to be displayed',
  330:         'npce' => 'Posts cease to be marked "NEW"',
  331:         'epcb' => 'Each post can be toggled read/unread', 
  332:         'chgt' => 'Change',
  333:         'disp' => 'Display',
  334:         'nolo' => 'Not new',
  335:         'togg' => 'Toggle read/unread',
  336:         'aner' => 'An error occurred opening the manifest file.',
  337:         'difo' => 'Discussion for',
  338:         'aerr' => 'An error occurred opening the export file for posting',
  339:         'discussions' => 'DISCUSSIONS'
  340:     );
  341:     my %js_lt = &Apache::lonlocal::texthash(
  342:         'aysu' => 'Are you sure you want to delete this post?',
  343:         'dpwn' => 'Deleted posts will no longer be visible to you and other students',
  344:         'bwco' => 'but will continue to be visible to your instructor',
  345:         'depo' => 'Deleted posts will no longer be visible to you or anyone else.',
  346:     );
  347:     &js_escape(\%js_lt);
  348: 
  349:     my $currdisp = $lt{'allposts'};
  350:     my $currmark = $lt{'onmark'};
  351:     my $currtogg = $lt{'toggoff'};
  352:     my $dispchange = $lt{'unread'};
  353:     my $markchange = $lt{'ondisp'};
  354:     my $toggchange = $lt{'toggon'};
  355:     my $chglink = '/adm/feedback?modifydisp='.$ressymb;
  356:     my $displinkA = 'onlyunread';
  357:     my $displinkB = 'onlyunmark';
  358:     my $marklink = 'markondisp';
  359:     my $togglink = 'toggon';
  360: 
  361:     if ($markondisp) {
  362:         $currmark = $lt{'ondisp'};
  363:         $markchange = $lt{'onmark'};
  364:         $marklink = 'markonread';
  365:     }
  366: 
  367:     if ($showonlyunread) {
  368:         $currdisp = $lt{'unread'};
  369:         $dispchange = $lt{'allposts'};
  370:         $displinkA = 'allposts';
  371:     }
  372: 
  373:     if ($showunmark) {
  374:         $currdisp = $lt{'unmark'};
  375:         $dispchange = $lt{'unmark'};
  376:         $displinkA='allposts';
  377:         $displinkB='onlyunread';
  378:         $showonlyunread = 0;
  379:     }
  380: 
  381:     if ($dischash{$toggkey}) {
  382:         $currtogg = $lt{'toggon'};
  383:         $toggchange = $lt{'toggoff'};
  384:         $togglink = 'toggoff';
  385:     } 
  386:    
  387:     $chglink .= '&amp;changes='.$displinkA.'_'.$displinkB.'_'.$marklink.'_'.$togglink;
  388: 
  389:     if ($newpostsflag) {
  390:         $chglink .= '&amp;previous='.$prevread;
  391:     }
  392:     $chglink.=&group_args($group);
  393: 
  394:     if ($visible) {
  395: # Print the discusssion
  396:         if ($outputtarget eq 'tex') {
  397:             $discussion.='<tex>{\tiny \vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}'.
  398:                          '\textbf{'.$lt{'discussions'}.'}\makebox[2 cm][b]{\hrulefill}\vskip 0 mm'.
  399:                          '\noindent\textbf{'.$lt{'disa'}.'}: \textit{'.$currdisp.'}\vskip 0 mm'.
  400:                          '\noindent\textbf{'.$lt{'npce'}.'}: \textit{'.$currmark.'}}</tex>';
  401:         } elsif ($outputtarget eq 'export') {
  402: # Create temporary directory if this is an export
  403:             my $now = time;
  404:             if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  405:                 $tempexport = $$imsextras{'tempexport'};
  406:                 if (!-e $tempexport) {
  407:                     mkdir($tempexport,0700);
  408:                 }
  409:                 $tempexport .= '/'.$$imsextras{'count'};
  410:                 if (!-e $tempexport) {
  411:                     mkdir($tempexport,0700);
  412:                 }
  413:             } else {
  414:                 $tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';
  415:                 if (!-e $tempexport) {
  416:                     mkdir($tempexport,0700);
  417:                 }
  418:                 $tempexport .= '/'.$now;
  419:                 if (!-e $tempexport) {
  420:                     mkdir($tempexport,0700);
  421:                 }
  422:                 $tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'};
  423:             }
  424:             if (!-e $tempexport) {
  425:                 mkdir($tempexport,0700);
  426:             }
  427: # open manifest file
  428:             my $manifest = '/imsmanifest.xml';
  429:             my $manifestfilename = $tempexport.$manifest;
  430:             if ($manifestfile = Apache::File->new('>'.$manifestfilename)) {
  431:                 $manifestok=1;
  432:                 print $manifestfile qq|<?xml version="1.0" encoding="UTF-8"?>
  433: <manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" 
  434: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  435: identifier="MANIFEST-$ressymb" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 
  436: imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">
  437:   <organizations default="$ressymb">
  438:     <organization identifier="$ressymb">
  439:       <title>$lt{'difo'} $ressymb</title>\n|;
  440:             } else {
  441:                 $discussion .= $lt{'aner'}.'<br />';
  442:             }
  443: 	} else {
  444:             my $colspan=$maxdepth+1;
  445:             $discussion.= &Apache::lonhtmlcommon::scripttag(qq|
  446:    function verifydelete (caller,symb,idx,newflag,previous,groupparm) {
  447:        var symbparm = symb+':::'+idx
  448:        var prevparm = ""
  449:        if (newflag == 1) {
  450:            prevparm = "&amp;previous="+previous
  451:        }
  452:        if (caller == 'studentdelete') {
  453:            if (confirm("$js_lt{'aysu'}\\n$js_lt{'dpwn'},\\n$js_lt{'bwco'}")) {
  454:                document.location.href = "/adm/feedback?hide="+symbparm+prevparm+groupparm
  455:            }
  456:        } else {
  457:            if (caller == 'seeiddelete') {
  458:                if (confirm("$js_lt{'aysu'}\\n$js_lt{'depo'}")) {
  459:                    document.location.href = "/adm/feedback?deldisc="+symbparm+prevparm+groupparm
  460:                }
  461:            }
  462:        }
  463:    }
  464:             |);
  465: 	    $discussion.='<form name="readchoices" method="post" action="/adm/feedback?chgreads='.$ressymb.'" >'.
  466:                          "\n".'<table width="100%" class="LC_discussion">';
  467:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  468:                                              $newpostsflag,$group,
  469:                                              $prevread,$markondisp,$seehidden);
  470:             my $escsymb=&escape($ressymb);
  471:             my $numhidden = keys(%notshown);
  472:             if ($numhidden > 0) {
  473:                 my $colspan = $maxdepth+1;
  474:                 $discussion.="\n".'<tr><td bgcolor="#CCCCCC" colspan="'.$colspan.'">';
  475:                 my $href = '/adm/feedback?allposts=1&amp;symb='.$escsymb;
  476:                 if ($newpostsflag) {
  477:                     $href .= '&amp;previous='.$prevread;
  478:                 }
  479: 		$href .= &group_args($group);
  480:                 if ($showunmark) {
  481:                     $discussion .= &mt('[_1]Show all posts[_2] to display [quant,_3,post] previously marked read',
  482:                                        '<a href="'.$href.'">','</a>',$numhidden);
  483:                 } else {
  484:                     $discussion .= &mt('[_1]Show all posts[_2] to display [quant,_3,post] previously viewed',
  485:                                        '<a href="'.$href.'">','</a>',$numhidden);
  486:                 }
  487:                 $discussion .= '<br/></td></tr>';
  488:             }
  489:         }
  490: 
  491: # Choose sort mechanism
  492:         my @showposts = ();
  493:         if ($sortposts eq 'descdate') {
  494:             @showposts = (sort { $b <=> $a } keys(%alldiscussion));
  495:         } elsif ($sortposts eq 'thread') {
  496:             @showposts = (sort { $a <=> $b } keys(%alldiscussion));
  497:         } elsif ($sortposts eq 'subject') {
  498:             foreach my $key (sort(keys(%subjectsort))) {
  499:                 push(@showposts, @{$subjectsort{$key}});
  500:             }
  501:         } elsif ($sortposts eq 'username') {
  502:             foreach my $domain (sort(keys(%usernamesort))) {
  503:                 foreach my $key (sort(keys(%{$usernamesort{$domain}}))) {
  504:                     push(@showposts, @{$usernamesort{$domain}{$key}});
  505:                 }
  506:             }
  507:         } elsif ($sortposts eq 'lastfirst') {
  508:             foreach my $last (sort(keys(%namesort))) {
  509:                  foreach my $key (sort(keys(%{$namesort{$last}}))) {
  510:                      push(@showposts, @{$namesort{$last}{$key}});
  511:                  }
  512:             }
  513:         } else {
  514:             @showposts =  (sort { $a <=> $b } keys(%alldiscussion));
  515:         }
  516:         my $currdepth = 0;
  517:         my $firstidx = $alldiscussion{$showposts[0]};
  518:         foreach my $post (@showposts) {
  519:             unless (($sortposts eq 'thread') || 
  520:                     (($sortposts eq '') && (!$env{'environment.unthreadeddiscussion'})) || 
  521:                     ($outputtarget eq 'export')) {
  522:                 $alldiscussion{$post} = $post;
  523:             }
  524:             unless ( ($notshown{$alldiscussion{$post}} eq '1') || ($shown{$alldiscussion{$post}} == 0) ) {
  525:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  526: 		    $discussion.="\n<tr>";
  527: 		}
  528: 	        my $thisdepth=$depth[$alldiscussion{$post}];
  529:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  530: 		    for (1..$thisdepth) {
  531: 			$discussion.='<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>';
  532: 		    }
  533: 		}
  534: 	        my $colspan=$maxdepth-$thisdepth+1;
  535:                 if ($outputtarget eq 'tex') {
  536: 		    #cleanup block
  537: 		    $discussionitems[$alldiscussion{$post}]=~s/<table([^>]*)>/<table TeXwidth="90 mm">/;
  538: 		    $discussionitems[$alldiscussion{$post}]=~s/<tr([^>]*)><td([^>]*)>/<tr><td TeXwidth="20 mm" align="left">/;
  539:                     my $threadinsert='';
  540:                     if ($thisdepth > 0) {
  541: 			$threadinsert='<br /><strong>Reply: '.$thisdepth.'</strong>';
  542: 		    }
  543: 		    $discussionitems[$alldiscussion{$post}]=~s/<\/td><td([^>]*)>/$threadinsert<\/td><td TeXwidth="65 mm" align="left">/;
  544:                     $discussionitems[$alldiscussion{$post}]=~s/(<b>|<\/b>|<\/a>|<a([^>]+)>)//g;
  545: 
  546: 		    $discussionitems[$alldiscussion{$post}]='<tex>\vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}</tex>'.$discussionitems[$alldiscussion{$post}];
  547: 		    $discussion.=$discussionitems[$alldiscussion{$post}];
  548: 		} elsif ($outputtarget eq 'export') {
  549:                     my $postfilename = $alldiscussion{$post}.'-'.$imsitems{$alldiscussion{$post}}{'timestamp'}.'.html';
  550:                     if ($manifestok) {
  551:                         if (($depth[$alldiscussion{$post}] <= $currdepth) && ($alldiscussion{$post} != $firstidx)) {
  552:                             print $manifestfile '  </item>'."\n";
  553:                         }
  554:                         $currdepth = $depth[$alldiscussion{$post}];
  555:                         print $manifestfile "\n". 
  556:       '<item identifier="ITEM-'.$ressymb.'-'.$alldiscussion{$post}.'" isvisible="'.
  557:         $imsitems{$alldiscussion{$post}}{'isvisible'}.'" identifieref="RES-'.$ressymb.'-'.$alldiscussion{$post}.'">'.
  558:         '<title>'.$imsitems{$alldiscussion{$post}}{'title'}.'</title></item>';
  559:                         $imsresources .= "\n".
  560:     '<resource identifier="RES-'.$ressymb.'-'.$alldiscussion{$post}.'" type="webcontent" href="'.$postfilename.'">'."\n".
  561:       '<file href="'.$postfilename.'">'."\n".
  562:       $imsfiles{$alldiscussion{$post}}{$imsitems{$alldiscussion{$post}}{'currversion'}}.'</file>'."\n".
  563:     '</resource>';
  564:                     }
  565:                     my $postingfile;
  566:                     my $postingfilename = $tempexport.'/'.$postfilename;
  567:                     if ($postingfile = Apache::File->new('>'.$postingfilename)) {
  568:                         print $postingfile '<html><head><title>'.&mt('Discussion Post').'</title></head><body>'.
  569:                                            $imsitems{$alldiscussion{$post}}{'title'}.' '.
  570:                                            $imsitems{$alldiscussion{$post}}{'sender'}.
  571:                                            $imsitems{$alldiscussion{$post}}{'timestamp'}.'<br /><br />'.
  572:                                            $imsitems{$alldiscussion{$post}}{'message'}.'<br />'.
  573:                                            $imsitems{$alldiscussion{$post}}{'attach'}.'</body></html>'."\n"; 
  574:                         close($postingfile);
  575:                     } else {
  576:                         $discussion .= $lt{'aerr'}.' '.$alldiscussion{$post}.'<br />';
  577:                     }
  578:                     $copyresult.=&replicate_attachments($imsitems{$alldiscussion{$post}}{'allattachments'},$tempexport);
  579:                 } else {
  580:                     $discussion.='<td class="'.$bgcols[$newitem{$alldiscussion{$post}}].
  581:                        '" colspan="'.$colspan.'">'. $discussionitems[$alldiscussion{$post}].
  582:                        '</td></tr>';
  583:                 }
  584: 	    }
  585:         }
  586: 	unless ($outputtarget eq 'tex' || $outputtarget eq 'export') {
  587:             my $colspan=$maxdepth+1;
  588:             $discussion .= <<END;
  589:             <tr>
  590:              <td colspan="$colspan">
  591:               <table width="100%">
  592:                <tr>
  593:                 <td class="LC_disc_action_left">
  594:                     <font size="-1"><b>$lt{'cuse'}</b>:&nbsp;
  595: END
  596:             if ($newpostsflag) {
  597:                 $discussion .= 
  598:                    '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;&nbsp;2.&nbsp;'.$lt{'nolo'}.'&nbsp;-&nbsp;<i>'.$currmark.'</i>';
  599:                 if ($dischash{$toggkey}) {
  600:                    $discussion .= '&nbsp;&nbsp;3.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  601:                 }
  602:             } else {
  603:                 if ($dischash{$toggkey}) {
  604:                    $discussion .= '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;2.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  605:                 } else {
  606:                     $discussion .=
  607:                          $lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>';
  608:                 }
  609:             }
  610:             $discussion .= <<END;
  611:                    &nbsp;&nbsp;<b><a href="$chglink">$lt{'chgt'}</a></b></font>
  612:                 </td>
  613: END
  614:             if ($sortposts) {
  615:                 my %sort_types = ();
  616:                 my %role_types = ();
  617:                 my %status_types = ();
  618:                 &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
  619: 
  620:                 $discussion .= '<td class="LC_disc_action_right"><font size="-1"><b>'.&mt('Sorted by').'</b>: '.$sort_types{$sortposts}.'<br />';
  621:                 if (defined($env{'form.totposters'})) {
  622:                     $discussion .= &mt('Posts by').':';
  623:                     if ($totposters > 0) {
  624:                         foreach my $poster (@posters) {
  625:                             $discussion .= ' '.$poster.',';
  626:                         }
  627:                         $discussion =~ s/,$//;
  628:                     } else {
  629:                         $discussion .= &mt('None selected');
  630:                     }
  631:                 } else {
  632:                     my $filterchoice ='';
  633:                     if (@sectionpick > 0) {
  634:                         $filterchoice = '<i>'.&mt('sections').'</i>-&nbsp;'.$env{'form.sectionpick'};
  635:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  636:                     }
  637:                     if (@grouppick > 0) {
  638:                         $filterchoice = '<i>'.&mt('groups').'</i>-&nbsp;'.$env{'form.grouppick'};
  639:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  640:                     }
  641:                     if (@rolefilter > 0) {
  642:                         $filterchoice .= '<i>'.&mt('roles').'</i>-';
  643:                         foreach my $role (@rolefilter) {
  644:                             $filterchoice .= '&nbsp;'.$role_types{$role}.',';
  645:                         }
  646:                         $filterchoice =~ s/,$//;
  647:                         $filterchoice .= '<br />'.('&nbsp;' x8);
  648:                     }
  649:                     if ($statusfilter) {
  650:                         $filterchoice .= '<i>'.&mt('status').'</i>-&nbsp;'.$status_types{$statusfilter};
  651:                     }
  652:                     if ($filterchoice) {
  653:                         $discussion .= '<b>'.&mt('Filters').'</b>:&nbsp;'.$filterchoice;
  654:                     }
  655:                 }
  656:                 $discussion .= '</font></td>';
  657: 
  658:             }
  659:             if ($dischash{$toggkey}) {
  660:                 my $storebutton = &mt('Save read/unread changes');
  661:                 $discussion.='<td align="right">'.
  662:               '<input type="hidden" name="discsymb" value="'.$ressymb.'" />'."\n".
  663:               '<input type="button" name="readoptions" value="'.$storebutton.'"'.
  664:               ' onclick="this.form.submit();" />'."\n".
  665:               '</td>';
  666:             }
  667:             $discussion .= (<<END);
  668:                </tr>
  669:               </table>
  670:              </td>
  671:             </tr>
  672: END
  673:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  674:                                              $newpostsflag,$group,
  675:                                              $prevread,$markondisp,$seehidden);
  676:             $discussion .= "</table></form>\n";
  677:         }
  678:         if ($outputtarget eq 'export') {
  679:             if ($manifestok) {
  680:                 while ($currdepth > 0) {
  681:                     print $manifestfile "    </item>\n";
  682:                     $currdepth --;
  683:                 }
  684:                 print $manifestfile qq|
  685:     </organization>
  686:   </organizations>
  687:   <resources>
  688:     $imsresources
  689:   </resources>
  690: </manifest>
  691:                 |;
  692:                 close($manifestfile);
  693:                 if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  694:                     $discussion = $copyresult;
  695:                 } else {
  696: 
  697: #Create zip file in prtspool
  698: 
  699:                     if (($env{'user.name'} =~ /^$match_username$/)
  700:                         && ($env{'user.domain'} =~ /^$match_domain$/)) {
  701:                         my $now = time();
  702:                         my $imszipfile = '/prtspool/'.
  703:                                       join('_',$env{'user.name'},$env{'user.domain'},$now).
  704:                                       '_'.rand(1000000000).'.zip';
  705:                         my $zip = Archive::Zip->new();
  706:                         $zip->addTree($tempexport);
  707:                         my $imszip = '/home/httpd/'.$imszipfile;
  708:                         if ($zip->writeToFileNamed($imszip) == AZ_OK) {
  709:                             $discussion .= &mt('Download the zip file from [_1]Discussion Posting Archive[_2]',
  710:                                            '<a href="'.$imszipfile.'">','</a>').'<br />';
  711:                         } else {
  712:                             $discussion .=  &mt('Failed to create zip file').'<br />';
  713:                         }
  714:                         if ($copyresult) {
  715:                             $discussion .= '<span class="LC_error">'.
  716:                                            &mt('The following errors occurred during export:').
  717:                                            '</span><br />'.$copyresult;
  718:                         }
  719:                     } else {
  720:                         $discussion .= '<p class="LC_error">'.
  721:                                        &mt('Unfortunately you will not be able to retrieve an archive of the discussion posts at this time, because there was a problem creating the zip file.').'</p>';
  722:                     }
  723:                 }
  724:             } else {
  725:                 $discussion .= '<p class="LC_error">'.
  726:                                &mt('Unfortunately you will not be able to retrieve an archive of the discussion posts at this time, because there was a problem creating a manifest file.').'</p>';
  727:             }
  728:             return $discussion;
  729:         }
  730:     }
  731:     if ($discussiononly) {
  732:         my $now = time;
  733:         my $attachnum = 0;
  734:         my $currnewattach = [];
  735:         my $currdelold = [];
  736:         my $comment = '';
  737:         my $subject = '';
  738:         if ($env{'form.origpage'}) {
  739:             &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['addnewattach','deloldattach','delnewattach','timestamp','idx','subject','comment']);
  740:             $subject = &unescape($env{'form.subject'});
  741:             $comment = &unescape($env{'form.comment'});
  742:             my @keepold = ();
  743:             &process_attachments($currnewattach,$currdelold,\@keepold);
  744:             if (@{$currnewattach} > 0) {
  745:                 $attachnum += @{$currnewattach};
  746:             }
  747:         }
  748: 	if ((&discussion_open($status)) && ($outputtarget ne 'tex')) {
  749:             if (($group ne '') && ($mode eq 'board')) {  
  750:                 if ((&check_group_priv($group,'pgd') eq 'ok') && 
  751:                    ($ressymb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$})) {
  752:                     $discussion .=
  753: 			&postingform_display($mode,$ressymb,$now,$subject,
  754: 					     $comment,$outputtarget,$attachnum,
  755: 					     $currnewattach,$currdelold,
  756: 					     $group,$crstype);
  757:                 }
  758:             } else {
  759:                 if (&Apache::lonnet::allowed('pch',$env{'request.course.id'}.
  760:                     ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  761: 
  762: 	            $discussion.= 
  763: 		        &postingform_display($mode,$ressymb,$now,$subject,
  764: 					     $comment,$outputtarget,$attachnum,
  765: 					     $currnewattach,$currdelold,'',$crstype);
  766:                 } else {
  767:                     $discussion.= '<span class="LC_feedback_link">'.
  768:                                   &mt('This discussion is closed.').'</span>';
  769:                 }
  770:             }
  771: 	}
  772:         if (!(&discussion_open($status)) && ($outputtarget ne 'tex')) {
  773:             $discussion.= '<span class="LC_feedback_link">'.
  774:                           &mt('This discussion is closed.').'</span>';
  775:         }
  776:     } elsif ($outputtarget ne 'tex') {
  777:         $discussion.='<div class="LC_feedback_link">';
  778:         if (&discussion_open($status) &&
  779:             &Apache::lonnet::allowed('pch',
  780:     	        $env{'request.course.id'}.
  781: 	        ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  782:             $discussion.= &send_feedback_link($ressymb);
  783:             if ($env{'request.role.adv'}) {
  784:                 my $close = &Apache::lonnet::EXT('resource.0.discussend',$ressymb);
  785:                 my $canvote = &Apache::lonnet::EXT('resource.0.discussvote',$ressymb);
  786:                 if (defined($close) && $close ne '' && $close < time) {
  787:                     if ($canvote eq 'notended') {
  788:                         $discussion .= '&nbsp;'.&mt('(Posting and voting closed for [_1] roles)',
  789:                                                     &Apache::lonnet::plaintext('st',$crstype));
  790:                     } else {
  791:                         $discussion .= '&nbsp;'.&mt('(Closed for [_1] roles)',
  792:                                                     &Apache::lonnet::plaintext('st',$crstype));
  793:                     }
  794:                 }
  795:             }
  796: 	} else {
  797:             $discussion.= '<span class="LC_feedback_link">'.&mt('This discussion is closed.').'</span>';
  798:         }
  799: 	$discussion.= &send_message_link($ressymb).'</div>';
  800:     }
  801:     return $discussion;
  802: }
  803: 
  804: sub can_see_hidden {
  805:     my ($mode,$ressymb,$feedurl,$group,$cdom,$cnum,$crs) = @_;
  806:     my $seehidden;
  807:     if ($env{'request.course.id'}) {
  808:         unless ($cdom ne '' && $cnum ne '') {
  809:             $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  810:             $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  811:         }
  812:         if ($crs eq '') {
  813:             $crs = '/'.$env{'request.course.id'};
  814:             if ($env{'request.course.sec'}) {
  815:                 $crs.='_'.$env{'request.course.sec'};
  816:             }
  817:             $crs=~s{_}{/}g;
  818:         }
  819:         if ($mode eq '') {
  820:             $mode='board';
  821:             if ($feedurl =~ /$LONCAPA::assess_re/) {
  822:                 $mode='problem';
  823:             }
  824:         }
  825:         if (($group ne '') && ($mode eq 'board') &&
  826:             ($ressymb =~ m{^bulletin___\d+\Q___adm/wrapper/adm/$cdom/$cnum/\E\d+/bulletinboard$})) {
  827:             if (&check_group_priv($group,'dgp') eq 'ok') {
  828:                 $seehidden = 1;
  829:             }
  830:         } else {
  831:             $seehidden=&Apache::lonnet::allowed('rin',$crs);
  832:         }
  833:     }
  834:     return $seehidden;
  835: }
  836: 
  837: sub discussion_link {
  838:    my ($ressymb,$linktext,$cmd,$item,$flag,$prev,$adds,$title)=@_;
  839:    my $link='/adm/feedback?inhibitmenu=yes&amp;modal=yes&amp;'.$cmd.'='.&escape($ressymb).':::'.$item;
  840:    if ($flag) { $link .= '&amp;previous='.$prev; }
  841:    if ($adds) { $link .= $adds; }
  842:    my $width=600;
  843:    my $height=600;
  844:    if (($cmd eq 'hide') || ($cmd eq 'unhide') || ($cmd eq 'like') || ($cmd eq 'unlike')) {
  845:        $width=300;
  846:        $height=200;
  847:    }
  848:    return &Apache::loncommon::modal_link($link,$linktext,$width,$height,undef,undef,$title);
  849: }
  850: 
  851: 
  852: sub send_feedback_link {
  853:     my ($ressymb) = @_;
  854:     return '<span class="LC_feedback_link">'.
  855:                  &discussion_link($ressymb,
  856:                     '<img alt="" class="LC_noBorder" src="'.
  857:                     &Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').
  858:                     '" /><span class="LC_menubuttons_inline_text">'.&mt('Post Discussion').'</span>',
  859:                     'replydisc').
  860:            '</span>';
  861: }
  862: 
  863: sub send_message_link {
  864:     my ($ressymb) = @_;
  865:     my $output = '<span class="LC_message_link">'.
  866:                  &discussion_link($ressymb,
  867:                     '<img alt="" class="LC_noBorder" src="'.
  868:                     &Apache::loncommon::lonhttpdurl('/res/adm/pages/feedback.png').
  869:                     '" /><span class="LC_menubuttons_inline_text">'.&mt('Send Feedback').'</span>',
  870:                     'sendmessageonly').
  871:                  '</span>';
  872:     return $output;
  873: }
  874: 
  875: sub action_links_bar {
  876:     my ($colspan,$ressymb,$visible,$newpostsflag,$group,$prevread,$markondisp,
  877:         $seehidden) = @_;
  878:     my $discussion = '<tr><td colspan="'.$colspan.'">'.
  879:                      '<table width="100%"><tr>'.
  880:                      '<td class="LC_disc_action_left">';
  881:     my $escsymb=&escape($ressymb);
  882:     if ($visible) {
  883:         $discussion .= '<a href="/adm/feedback?cmd=threadedon&amp;symb='.$escsymb;
  884:         if ($newpostsflag) {
  885:             $discussion .= '&amp;previous='.$prevread;
  886:         }
  887:         $discussion .= &group_args($group);
  888:         $discussion .='">'.&mt('Threaded View').'</a>&nbsp;&nbsp;'.
  889:                       '<a href="/adm/feedback?cmd=threadedoff&amp;symb='.$escsymb;
  890:         if ($newpostsflag) {
  891:             $discussion .= '&amp;previous='.$prevread;
  892:         }
  893:         $discussion .= &group_args($group);
  894:         $discussion .='">'.&mt('Chronological View').'</a>&nbsp;&nbsp;';
  895: 
  896:         my $otherviewurl='/adm/feedback?cmd=sortfilter&amp;symb='.$escsymb.'&amp;inhibitmenu=yes&amp;modal=yes';
  897:         if ($newpostsflag) {
  898:             $otherviewurl .= '&amp;previous='.$prevread;
  899:         }
  900:         $otherviewurl .= &group_args($group);
  901:         $discussion .= &Apache::loncommon::modal_link($otherviewurl,&mt('Other Views ...'),800,340);
  902:         $discussion .= '<br />';
  903:     }
  904:     $discussion .='<a href="/adm/feedback?export='.$escsymb;
  905:     if ($newpostsflag) {
  906:         $discussion .= '&amp;previous='.$prevread;
  907:     }
  908:     $discussion .= &group_args($group);
  909:     $discussion .= '">'.&mt('Export').'</a>';
  910:     if ($seehidden) {
  911:         $discussion .= '&nbsp;&nbsp;';
  912:         $discussion .='<a href="/adm/feedback?undeleteall='.$escsymb;
  913:         if ($newpostsflag) {
  914:             $discussion .= '&amp;previous='.$prevread;
  915:         }
  916:         $discussion .= &group_args($group);
  917:         $discussion .= '">'.&mt('Undelete all deleted entries').'</a>';
  918:     }
  919:     $discussion.='</td>';
  920:     if ($newpostsflag) {
  921:         if (!$markondisp) {
  922:             $discussion .='<td class="LC_disc_action_right"><a href="/adm/preferences?action=changediscussions';
  923:             $discussion .= &group_args($group);
  924:             $discussion .= '">'.
  925:                            &mt('My general preferences on what is marked as NEW').
  926:                            '</a><br /><a href="/adm/feedback?markread=1&amp;symb='.$escsymb;
  927:             $discussion .= &group_args($group);
  928:             $discussion .= '">'.&mt('Mark NEW posts no longer new').'</a></td>';
  929:         } else {
  930:             $discussion .= '<td>&nbsp;</td>';
  931:         }
  932:     } else {
  933:         $discussion .= '<td>&nbsp;</td>';
  934:     }
  935:     $discussion .= '</tr></table></td></tr>';
  936:     return $discussion;
  937: }
  938: 
  939: sub postingform_display {
  940:     my ($mode,$ressymb,$now,$subject,$comment,$outputtarget,$attachnum,
  941:         $currnewattach,$currdelold,$group,$crstype) = @_;
  942:     my $newattachmsg;
  943:     my %lt = &Apache::lonlocal::texthash(
  944:              'note' => 'Note: in anonymous discussion, your name is visible only to course faculty',
  945:              'title' => 'Title',
  946:              'podi' => 'Post Discussion',
  947:              'poan' => 'Post Anonymous Discussion',
  948:              'newa' => 'New attachments',
  949:     );
  950:     if ($crstype eq 'Community') {
  951:         $lt{'note'} = &mt('Note: in anonymous discussion, your name is visible only to community facilitators');
  952:     }
  953:     my ($postingform,$textareaclass);
  954:     if (&Apache::lonhtmlcommon::htmlareabrowser()) {
  955:         $postingform = &Apache::lonhtmlcommon::htmlareaselectactive();
  956:         $textareaclass = 'class="LC_richDefaultOff"';
  957:         if ($env{'request.course.id'}) {
  958:             unless (($env{'course.'.$env{'request.course.id'}.'.allow_limited_html_in_feedback'} =~ /^\s*yes\s*$/i) || ($env{'form.sendmessageonly'})) {
  959:                 undef($textareaclass);
  960:             }
  961:         }
  962:     }
  963:     my $postanon;
  964:     if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
  965:        ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  966:         $postanon = '<input type="submit" name="anondiscuss" value="'.$lt{'poan'}.'" />';
  967:     }
  968:     $postingform .= (<<ENDDISCUSS);
  969: <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data"> <input type="submit" name="discuss" value="$lt{'podi'}" />
  970: $postanon<input type="hidden" name="symb" value="$ressymb" />
  971: <input type="hidden" name="sendit" value="true" />
  972: <input type="hidden" name="timestamp" value="$now" />
  973: <a name="newpost"></a>
  974: <font size="1">$lt{'note'}</font><br />
  975: <b>$lt{'title'}:</b>&nbsp;<input type="text" name="subject" value="$subject" size="30" /><br />
  976: <textarea name="comment" cols="80" rows="14" id="comment" $textareaclass>$comment</textarea>
  977: ENDDISCUSS
  978:     if ($env{'form.origpage'}) {
  979:         $postingform .= '<input type="hidden" name="origpage" value="'.
  980:                         $env{'form.origpage'}.'" />'."\n";
  981:         foreach my $att (@{$currnewattach}) {
  982:             $postingform .= '<input type="hidden" name="currnewattach" '.
  983:                             'value="'.$att.'" />'."\n";
  984:         }
  985:     }
  986:     if (exists($env{'form.ref'})) {
  987:         $postingform .= '<input type="hidden" name="ref" value="'.
  988:                         $env{'form.ref'}.'" />';
  989:     }
  990:     if ($group ne '') {
  991:         $postingform .='<input type="hidden" name="group" value="'.$group.'" />';
  992:     }
  993:     my $blockblog = &Apache::loncommon::blocking_status('blogs');
  994:     if (!$blockblog) {
  995:         $postingform .= &add_blog_checkbox($crstype);
  996:     }
  997:     $postingform .= "</form>\n";
  998:     $postingform .= &generate_attachments_button('',$attachnum,$ressymb,
  999:                                                      $now,$currnewattach,
 1000:                                                      $currdelold,'',$mode,
 1001:                                                      $blockblog);
 1002:     if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
 1003:         $newattachmsg = '<br /><b>'.$lt{'newa'}.'</b><br />';
 1004:         if (@{$currnewattach} > 1) {
 1005:              $newattachmsg .= '<ol>';
 1006:              foreach my $item (@{$currnewattach}) {
 1007:                 $item =~ m#.*/([^/]+)$#;
 1008:                 $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
 1009:              }
 1010:              $newattachmsg .= '</ol>'."\n";
 1011:          } else {
 1012:              $$currnewattach[0] =~ m#.*/([^/]+)$#;
 1013:              $newattachmsg .= '<a href="'.$$currnewattach[0].'">'.$1.'</a><br />'."\n";
 1014:          }
 1015:     }
 1016:     $postingform .= $newattachmsg;
 1017:     $postingform .= &generate_preview_button();
 1018:     return $postingform;
 1019: }
 1020: 
 1021: sub build_posting_display {
 1022:     my ($usernamesort,$subjectsort,$namesort,$notshown,$newitem,$dischash,$shown,$alldiscussion,$imsitems,$imsfiles,$roleinfo,$discussionitems,$replies,$depth,$posters,$maxdepth,$visible,$newpostsflag,$current,$status,$viewgrades,$seeid,$seehidden,$canvote,$prevread,$sortposts,$ressymb,$readkey,$showunmark,$showonlyunread,$totposters,$rolefilter,$sectionpick,$grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,$anonhash,$anoncnt,$group) = @_;
 1023:     my @original=();
 1024:     my @index=();
 1025:     my $skip_group_check = 0;
 1026:     my $symb=&Apache::lonenc::check_decrypt($ressymb);
 1027:     my $escsymb=&escape($ressymb);
 1028: # These are the discussion contributions
 1029:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 1030: 			  $env{'course.'.$env{'request.course.id'}.'.domain'},
 1031: 			  $env{'course.'.$env{'request.course.id'}.'.num'});
 1032:     my (%likes,%userlikes,%userunlikes,@theselikes,$oneplus,$twoplus,$oneminus,$twominus);
 1033:     my $thisuser=$env{'user.name'}.':'.$env{'user.domain'};
 1034:     if ($seeid || $canvote) {
 1035: # And these are the likes/unlikes
 1036:         %likes=&Apache::lonnet::dump('disclikes',
 1037:                           $env{'course.'.$env{'request.course.id'}.'.domain'},
 1038:                           $env{'course.'.$env{'request.course.id'}.'.num'},
 1039:                           '^'.$symb.':');
 1040: # Array with likes to figure out averages, etc.
 1041:         @theselikes=();
 1042: # Hashes containing likes and unlikes for this user.
 1043:         %userlikes=();
 1044:         %userunlikes=();
 1045:     }
 1046: # Is the user allowed to see the real name behind anonymous postings?
 1047:     my $see_anonymous = 
 1048: 	&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
 1049: 
 1050:     if ((@{$grouppick} == 0) || (grep(/^all$/,@{$grouppick}))) {
 1051:         $skip_group_check = 1;
 1052:     }
 1053: # Deletions and hiddens are just lists. Split them up into a hash for quicker lookup
 1054:     my (%deletions,%hiddens);
 1055:     if ($contrib{'deleted'}) {
 1056:        my $deleted = $contrib{'deleted'};
 1057:        $deleted =~ s/^\.//;
 1058:        $deleted =~ s/\.$//;
 1059:        %deletions = map { $_ => 1 } (split(/\.\./,$deleted));
 1060:     }
 1061:     if ($contrib{'hidden'}) {
 1062:        my $hidden = $contrib{'hidden'};
 1063:        $hidden =~ s/^\.//;
 1064:        $hidden =~ s/\.$//;
 1065:        %hiddens = map { $_ => 1 } (split(/\.\./,$hidden));
 1066:     }
 1067: # Versions if store/restore are used to actually store the messages. 
 1068:     if ($contrib{'version'}) {
 1069:         my $oldest = $contrib{'1:timestamp'};
 1070:         if ($prevread eq '0') {
 1071:             $prevread = $oldest-1;
 1072:         }
 1073:         my ($skiptest,$rolematch,$roleregexp,$secregexp,$statusregexp);
 1074:         if ($sortposts) {
 1075:             ($skiptest,$roleregexp,$secregexp,$statusregexp) = 
 1076:                      &filter_regexp($rolefilter,$sectionpick,$statusfilter);
 1077:             $rolematch = $roleregexp.':'.$secregexp.':'.$statusregexp;
 1078:         }
 1079:         my %votestyle;
 1080:         if ($seeid || $canvote) {
 1081: # We need to go through this twice, first to get the likes/dislikes, then to actually build the display
 1082:             for (my $id=1;$id<=$contrib{'version'};$id++) {
 1083:                 my $idx=$id;
 1084:                 next if ($contrib{$idx.':deleted'});
 1085:                 next if ($contrib{$idx.':hidden'});
 1086:                 unless ((($hiddens{$idx}) && (!$seehidden)) || ($deletions{$idx}) || (!$contrib{$idx.':message'})) {
 1087:                     push(@theselikes,$likes{$symb.':'.$idx.':likes'});
 1088:                     if ($likes{$symb.':'.$idx.':likes'} ne '') {
 1089:                         if (ref($likes{$symb.':'.$idx.':likers'}) eq 'HASH') {
 1090:                             if (exists($likes{$symb.':'.$idx.':likers'}{$thisuser})) {
 1091:                                 $userlikes{$idx} = 1;
 1092:                             }
 1093:                         }
 1094:                         if (ref($likes{$symb.':'.$idx.':unlikers'}) eq 'HASH') {
 1095:                             if (exists($likes{$symb.':'.$idx.':unlikers'}{$thisuser})) {
 1096:                                 $userunlikes{$idx} = 1;
 1097:                             }
 1098:                         }
 1099:                     }
 1100:                 }
 1101:             }
 1102: # Figure out average likes and standard deviation if there are enough 
 1103: # discussions to warrant that
 1104:             my $ave=0;
 1105:             my $stddev=10000;
 1106:             if ($#theselikes>1) {
 1107:                 my $sum=0;
 1108:                 my $num=$#theselikes+1;
 1109:                 foreach my $thislike (@theselikes) {
 1110:                     $sum+=$thislike;
 1111:                 }
 1112:                 $ave=$sum/$num;
 1113:                 my $sumsq=0;
 1114:                 foreach my $thislike (@theselikes) {
 1115:                     $sumsq+=($thislike-$ave)*($thislike-$ave);
 1116:                 }
 1117:                 $stddev=sqrt($sumsq/$num);
 1118:             }
 1119: # Now we know the average likes $ave and the standard deviation $stddev
 1120: # Get the boundaries for markup
 1121:             $oneplus=$ave+$stddev;
 1122:             $twoplus=$ave+2.*$stddev;
 1123:             $oneminus=$ave-$stddev;
 1124:             $twominus=$ave-2.*$stddev;
 1125:             if ($#theselikes>1) {
 1126:                 foreach my $class ('twoplus','oneplus','zero','oneminus','twominus') {
 1127:                     my $fontstyle = $env{'course.'.$env{'request.course.id'}.'.discussion_post_fonts_'.$class};
 1128:                     if ($fontstyle ne '') {
 1129:                         my ($size,$weight,$style,$other) = split(/,/,$fontstyle);
 1130:                         if ($size ne '') {
 1131:                             $votestyle{$class} .= 'font-size: '.$size.';';
 1132:                         }
 1133:                         if ($weight ne '') {
 1134:                             $votestyle{$class} .= 'font-weight: '.$weight.';';
 1135:                         }
 1136:                         if ($style ne '') {
 1137:                             $votestyle{$class} .= 'font-style: '.$style.';';
 1138:                         }
 1139:                         if ($other ne '') {
 1140:                             $votestyle{$class} .= $other;
 1141:                         }
 1142:                         if ($votestyle{$class} ne '') {
 1143:                             $votestyle{$class} = 'style="'.$votestyle{$class}.'"';
 1144:                         }
 1145:                     }
 1146:                 }
 1147:             }
 1148:         }
 1149: #
 1150: # This is now the real loop. Go through all entries, pick up what we need
 1151: #
 1152: 	for (my $id=1;$id<=$contrib{'version'};$id++) {
 1153: 	    my $idx=$id;
 1154:             next if ($contrib{$idx.':deleted'});
 1155:             next if ($contrib{$idx.':hidden'});
 1156: # If we get here, we are actually going to display the message - we don't know where and we don't know if we display
 1157: # previous edits, but it counts as one entry
 1158:             my $posttime = $contrib{$idx.':timestamp'};
 1159:             if ($prevread <= $posttime) {
 1160:                 $$newpostsflag = 1;
 1161:             }
 1162:             my $studenthidden=($contrib{'studenthidden'}=~/\.$idx\./);
 1163: 	    my $origindex='0.';
 1164:             my $numoldver=0;
 1165: 	    if ($contrib{$idx.':replyto'}) {
 1166:                 if ( ((!$env{'environment.unthreadeddiscussion'}) && ($sortposts eq '')) || 
 1167:                      ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
 1168: # this is a follow-up message
 1169: 		    $original[$idx]=$original[$contrib{$idx.':replyto'}];
 1170: 		    $$depth[$idx]=$$depth[$contrib{$idx.':replyto'}]+1;
 1171: 		    $origindex=$index[$contrib{$idx.':replyto'}];
 1172: 		    if ($$depth[$idx]>$$maxdepth) { $$maxdepth=$$depth[$idx]; }
 1173:                 } else {
 1174:                     $original[$idx]=0;
 1175:                     $$depth[$idx]=0;
 1176:                 }
 1177: 	    } else {
 1178: # this is an original message
 1179: 		$original[$idx]=0;
 1180: 		$$depth[$idx]=0;
 1181: 	    }
 1182: 	    if ($$replies[$$depth[$idx]]) {
 1183: 		$$replies[$$depth[$idx]]++;
 1184: 	    } else {
 1185: 		$$replies[$$depth[$idx]]=1;
 1186: 	    }
 1187:             unless ((($hiddens{$idx}) && (!$seehidden)) || ($deletions{$idx})) {
 1188: 		$$visible++;
 1189:                 if ($contrib{$idx.':history'}) {
 1190:                     if ($contrib{$idx.':history'} =~ /:/) {
 1191:                         my @oldversions = split(/:/,$contrib{$idx.':history'});
 1192:                         $numoldver = @oldversions;
 1193:                     } else {
 1194:                         $numoldver = 1;
 1195:                     } 
 1196:                 }
 1197:                 $$current = $numoldver;
 1198: 		my %messages = ();
 1199:                 my %subjects = ();
 1200:                 my %attachtxt = ();
 1201:                 my %allattachments = ();
 1202:                 my ($screenname,$plainname,$showaboutme);
 1203:                 my $sender = &mt('Anonymous');
 1204: # Anonymous users getting number within a discussion
 1205: # Since idx is in static order, this should give the same sequence every time. 
 1206: 		my $key=$contrib{$idx.':sendername'}.'@'.$contrib{$idx.':senderdomain'};
 1207: 		unless ($$anonhash{$key}) {
 1208:                     $anoncnt++;
 1209: 		    $$anonhash{$key}=&mt('Anonymous').' '.$anoncnt;
 1210: 		}
 1211:                 my ($message,$subject,$vgrlink,$ctlink);
 1212:                 &get_post_contents(\%contrib,$idx,$seeid,$seehidden,$outputtarget,\%messages,\%subjects,\%allattachments,\%attachtxt,$imsfiles,\$screenname,\$plainname,\$showaboutme,$numoldver);
 1213: 
 1214: 
 1215: # Set up for sorting by subject
 1216:                 unless ($outputtarget eq 'export') {
 1217:                     $message=$messages{$numoldver};
 1218:                     $message.=$attachtxt{$numoldver};
 1219:                     $subject=$subjects{$numoldver};
 1220:                     if ($message) {
 1221: 	  	        if ($hiddens{$idx}) {
 1222: 			    $message='<font color="#888888">'.$message.'</font>';
 1223:                             if ($studenthidden) {
 1224:                                 $message .='<br /><br />Deleted by poster (student).';
 1225:                             }
 1226: 		        }
 1227: 
 1228:                         if ($subject eq '') {
 1229:                            if (defined($$subjectsort{'__No subject'})) {
 1230:                                push(@{$$subjectsort{'__No subject'}}, $idx);
 1231:                            } else {
 1232:                                @{$$subjectsort{'__No subject'}} = ("$idx");
 1233:                            }
 1234:                         } else {
 1235:                             if (defined($$subjectsort{$subject})) {
 1236:                                push(@{$$subjectsort{$subject}}, $idx);
 1237:                             } else {
 1238:                                @{$$subjectsort{$subject}} = ("$idx");
 1239:                             }
 1240:                         }
 1241: 		        if (!$contrib{$idx.':anonymous'} || $see_anonymous) {
 1242:                             if ($showaboutme) {
 1243:                                 $sender = &Apache::loncommon::aboutmewrapper(
 1244:                                               $plainname,
 1245:                                               $contrib{$idx.':sendername'},
 1246:                                               $contrib{$idx.':senderdomain'});
 1247:                             } else {
 1248:                                 $sender = $plainname;
 1249:                             }
 1250:                             if ($see_anonymous) {
 1251:                                 $sender .= ' ('.$contrib{$idx.':sendername'}.':'.
 1252: 					   $contrib{$idx.':senderdomain'}.')';
 1253:                             }
 1254:                             $sender = '<b>'.$sender.'</b>';
 1255: 			    if ($contrib{$idx.':anonymous'}) {
 1256: 			        $sender.=' <font color="red"><b>['.$$anonhash{$key}.']</b></font> '.
 1257: 				    $screenname;
 1258: 			    }
 1259: 			    if ($see_anonymous) {
 1260: 				$sender.=&Apache::loncommon::student_image_tag($contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 1261: 			    }
 1262: # Set up for sorting by domain, then username
 1263:                             unless (defined($$usernamesort{$contrib{$idx.':senderdomain'}})) {
 1264:                                 %{$$usernamesort{$contrib{$idx.':senderdomain'}}} = ();
 1265:                             }
 1266:                             if (defined($$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}})) {
 1267:                                 push(@{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}}, $idx);
 1268:                             } else {
 1269:                                 @{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}} = ("$idx");
 1270:                             }
 1271: # Set up for sorting by last name, then first name
 1272:                             my %names = &Apache::lonnet::get('environment',
 1273:                                  ['firstname','lastname'],$contrib{$idx.':senderdomain'},
 1274:                                   ,$contrib{$idx.':sendername'});
 1275:                             my $lastname = $names{'lastname'};
 1276:                             my $firstname = $names{'firstname'};
 1277:                             if ($lastname eq '') {
 1278:                                 $lastname = '_';
 1279:                             }
 1280:                             if ($firstname eq '') {
 1281:                                 $firstname = '_';
 1282:                             }
 1283:                             unless (defined($$namesort{$lastname})) {
 1284:                                 %{$$namesort{$lastname}} = ();
 1285:                             }
 1286:                             if (defined($$namesort{$lastname}{$firstname})) {
 1287:                                 push(@{$$namesort{$lastname}{$firstname}}, $idx);
 1288:                             } else {
 1289:                                 @{$$namesort{$lastname}{$firstname}} = ("$idx");
 1290:                             }
 1291:                             if ($outputtarget ne 'tex') {
 1292: # Add karma stars
 1293:                                 my $karma=&userkarma($contrib{$idx.':sendername'},$contrib{$idx.':senderdomain'});
 1294:                                 for (my $i=1;$i<=$karma;$i++) {
 1295:                                     $sender.='<img border="0" src="/res/adm/pages/star.gif" alt="'.&mt('Contributor Kudos').'" />';
 1296:                                 }
 1297: # Can people edit this?
 1298:                                 if (&editing_allowed($escsymb.':::'.$idx,$group)) {
 1299:                                     if (($env{'user.domain'} eq $contrib{$idx.':senderdomain'}) && ($env{'user.name'} eq $contrib{$idx.':sendername'})) {
 1300:                                         $sender.=' '.
 1301:                                          &discussion_link($ressymb,&mt('Edit'),'editdisc',$idx,$$newpostsflag,$prevread,&group_args($group));
 1302:                                         unless ($seehidden) {
 1303:                                             my $grpargs = &group_args($group);
 1304:                                             $sender.=" <a href=\"javascript:verifydelete('studentdelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')";
 1305:                                             $sender .= '">'.&mt('Delete').'</a>';
 1306:                                         }
 1307:                                     }
 1308:                                 }
 1309: 			        if ($seehidden) {
 1310: 			            if ($hiddens{$idx}) {
 1311:                                         unless ($studenthidden) {
 1312:  		                           $sender.=' '.
 1313:                                             &discussion_link($ressymb,&mt('Make Visible'),'unhide',$idx,$$newpostsflag,$prevread,&group_args($group));
 1314:                                         }
 1315: 			            } else {
 1316:                                         $sender.=' '.
 1317:                                          &discussion_link($ressymb,&mt('Hide'),'hide',$idx,$$newpostsflag,$prevread,&group_args($group));
 1318: 			            }
 1319:                                     my $grpargs = &group_args($group);
 1320: 			            $sender.= 
 1321:                                         " <a href=\"javascript:verifydelete('seeiddelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')\">";
 1322:                                     $sender .= &mt('Delete').'</a>';
 1323:                                 }
 1324:                             }
 1325:                         } else {
 1326: 			    if ($screenname) {
 1327: 			        $sender='<i>'.$screenname.'</i>';
 1328: 			    } else {
 1329: 				$sender='<i>'.$$anonhash{$key}.'</i>';
 1330: 			    }
 1331:                             $sender = '<b>'.$sender.'</b>';
 1332: # Set up for sorting by domain, then username for anonymous
 1333:                             unless (defined($$usernamesort{'__anon'})) {
 1334:                                 %{$$usernamesort{'__anon'}} = ();
 1335:                             }
 1336:                             if (defined($$usernamesort{'__anon'}{'__anon'})) {
 1337:                                 push(@{$$usernamesort{'__anon'}{'__anon'}}, $idx);
 1338:                             } else {
 1339:                                 @{$$usernamesort{'__anon'}{'__anon'}} = ("$idx");
 1340:                             }
 1341: # Set up for sorting by last name, then first name for anonymous
 1342:                             unless (defined($$namesort{'__anon'})) {
 1343:                                 %{$$namesort{'__anon'}} = ();
 1344:                             }
 1345:                             if (defined($$namesort{'__anon'}{'__anon'})) {
 1346:                                 push(@{$$namesort{'__anon'}{'__anon'}}, $idx);
 1347:                             } else {
 1348:                                 @{$$namesort{'__anon'}{'__anon'}} = ("$idx");
 1349:                             }
 1350: 		        }
 1351:                         if ($outputtarget ne 'tex') {
 1352: 		            if (&discussion_open($status)) {
 1353:                                 if (($group ne '') && 
 1354:                                     (&check_group_priv($group,'pgd') eq 'ok')) {
 1355:                                      $sender.=' '.
 1356:                                          &discussion_link($ressymb,&mt('Reply'),'replydisc',$idx,$$newpostsflag,$prevread,&group_args($group));
 1357:                                 } elsif (&Apache::lonnet::allowed('pch', 
 1358: 				     $env{'request.course.id'}.
 1359: 				     ($env{'request.course.sec'}?'/'.
 1360:                                       $env{'request.course.sec'}:''))) {
 1361: 			             $sender.=' '.
 1362:                                          &discussion_link($ressymb,&mt('Reply'),'replydisc',$idx,$$newpostsflag,$prevread);
 1363:                                 }
 1364:                             }
 1365: 		            if ($viewgrades) {
 1366: 			        $vgrlink=&Apache::loncommon::submlink(&mt('Submissions'),
 1367:                                 $contrib{$idx.':sendername'},$contrib{$idx.':senderdomain'},$ressymb);
 1368: 		            }
 1369:                             if ($$dischash{$readkey}=~/\.$idx\./) { 
 1370:                                 $ctlink = '<label><b>'.&mt('Mark unread').'?</b>&nbsp;<input type="checkbox" name="postunread_'.$idx.'" /></label>';
 1371:                             } else {
 1372:                                 $ctlink = '<label><b>'.&mt('Mark read').'?</b>&nbsp;<input type="checkbox" name="postread_'.$idx.'" /></label>';
 1373:                             }
 1374:                         }
 1375:                     }
 1376: #figure out at what position this needs to print
 1377:                 }
 1378:                 if ($outputtarget eq 'export' || $message) {
 1379: 		    my $thisindex=$idx;
 1380: 		    if ( ((!$env{'environment.unthreadeddiscussion'}) && ($sortposts eq '')) || 
 1381:                          ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
 1382: 			$thisindex=$origindex.substr('00'.$$replies[$$depth[$idx]],-2,2);
 1383: 		    }
 1384: 		    $$alldiscussion{$thisindex}=$idx;
 1385:                     $$shown{$idx} = 0;
 1386:                     $index[$idx]=$thisindex;
 1387:                 }
 1388:                 if ($outputtarget eq 'export') {
 1389:                     %{$$imsitems{$idx}} = ();
 1390:                     $$imsitems{$idx}{'isvisible'}='true';
 1391:                     if ($hiddens{$idx}) {
 1392:                         $$imsitems{$idx}{'isvisible'}='false';
 1393:                     }
 1394:                     $$imsitems{$idx}{'title'}=$subjects{$numoldver};
 1395:                     $$imsitems{$idx}{'message'}=$messages{$numoldver};
 1396:                     $$imsitems{$idx}{'attach'}=$attachtxt{$numoldver};
 1397:                     $$imsitems{$idx}{'timestamp'}=$contrib{$idx.':timestamp'};
 1398:                     $$imsitems{$idx}{'sender'}=$plainname.' ('.
 1399:                                          $contrib{$idx.':sendername'}.':'.
 1400:                                          $contrib{$idx.':senderdomain'}.')';
 1401:                     $$imsitems{$idx}{'isanonymous'}='false';
 1402:                     if ($contrib{$idx.':anonymous'}) {
 1403:                         $$imsitems{$idx}{'isanonymous'}='true';
 1404:                     }
 1405:                     $$imsitems{$idx}{'currversion'}=$numoldver;
 1406:                     %{$$imsitems{$idx}{'allattachments'}}=%allattachments;
 1407:                     unless ($messages{$numoldver} eq '' && $attachtxt{$numoldver} eq '') {
 1408:                         $$shown{$idx} = 1;
 1409:                     }
 1410:                 } else {
 1411:                     if ($message) {
 1412:                         my $spansize = 2;
 1413:                         my ($uname,$udom);
 1414:                         if ($showonlyunread && $prevread > $posttime) {
 1415:                             $$notshown{$idx} = 1;
 1416:                         } elsif ($showunmark && $$dischash{$readkey}=~/\.$idx\./) {
 1417:                             $$notshown{$idx} = 1;
 1418:                         } else {
 1419: # apply filters
 1420:                             $uname = $contrib{$idx.':sendername'};
 1421:                             $udom = $contrib{$idx.':senderdomain'};
 1422:                             my $poster = $uname.':'.$udom;
 1423:                             if ($env{'form.totposters'} ne '') {
 1424:                                 if ($totposters == 0) {
 1425:                                     $$shown{$idx} = 0;
 1426:                                 } elsif ($totposters > 0) {
 1427:                                     if (grep/^$poster$/,@{$posters}) {
 1428:                                         $$shown{$idx} = 1;
 1429:                                     }
 1430:                                 }
 1431:                             } elsif ($sortposts) {
 1432:                                 if ($skiptest) {
 1433:                                     $$shown{$idx} = 1;
 1434:                                 } else {
 1435:                                     foreach my $role (@{$$roleinfo{$poster}}) {
 1436:                                         if ($role =~ /^cc:/) {
 1437:                                             my $cc_regexp = $roleregexp.':[^:]*:'.$statusregexp;
 1438:                                             if ($role =~ /$cc_regexp/) {
 1439:                                                 $$shown{$idx} = 1;
 1440:                                                 last;
 1441:                                             }
 1442:                                         } elsif ($role =~ /^$rolematch$/) {
 1443:                                             $$shown{$idx} = 1;
 1444:                                             last;
 1445:                                         }
 1446:                                     }
 1447:                                 }
 1448:                                 if ($$shown{$idx} && !$skip_group_check) {
 1449:                                     my $showflag = 0;
 1450:                                     if (ref($$classgroups{$poster}{active}) eq 'HASH') {
 1451:                                         foreach my $grp (@{$grouppick}) {
 1452:                                             if (grep/^\Q$grp\E$/,
 1453:                                  keys(%{$$classgroups{$poster}{active}})) {
 1454:                                                 $showflag = 1;
 1455:                                                 last;
 1456:                                             }
 1457:                                         }
 1458:                                     }
 1459:                                     if ($showflag) {
 1460:                                         $$shown{$idx} = 1;
 1461:                                     } else {
 1462:                                         $$shown{$idx} = 0;
 1463:                                     }
 1464:                                 }
 1465:                             } else {
 1466:                                 $$shown{$idx} = 1;
 1467:                             }
 1468:                         }
 1469:                         unless ($$notshown{$idx} == 1) {
 1470:                             if ($prevread > 0 && $prevread <= $posttime) {
 1471:                                 $$newitem{$idx} = 1;
 1472:                                 $$discussionitems[$idx] .= '<font color="#FF0000"><b>'.&mt('NEW').'&nbsp;&nbsp;</b></font>';
 1473:                             } else {
 1474:                                 $$newitem{$idx} = 0;
 1475:                             }
 1476:                             $$discussionitems[$idx] .= '<b>'.$subject.'</b>&nbsp;&nbsp;'.
 1477:                                 $sender.' '.$vgrlink.' ('.
 1478:                                 &Apache::lonlocal::locallocaltime($posttime).')';
 1479:                             if ($$dischash{$toggkey}) {
 1480:                                 $$discussionitems[$idx].='&nbsp;&nbsp;'.$ctlink;
 1481:                             }
 1482:                             my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1483:                             my $likestyle;
 1484:                             if ($seeid || $canvote) {
 1485: # Figure out size based on likes
 1486:                                 my $class = 'zero';
 1487:                                 my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1488:                                 if ($thislikes>$twoplus) {
 1489:                                     $class = 'twoplus';
 1490:                                 } elsif ($thislikes>$oneplus) {
 1491:                                     $class = 'oneplus';
 1492:                                 }
 1493:                                 if ($thislikes<$twominus) {
 1494:                                     $class = 'twominus';
 1495:                                 } elsif ($thislikes<$oneminus) {
 1496:                                     $class = 'oneminus';
 1497:                                 }
 1498:                                 $likestyle = $votestyle{$class};
 1499:                             }
 1500: # Actually glue in the message itself
 1501:                             $$discussionitems[$idx].= '<br /><blockquote>'.
 1502:                                     "<div $likestyle>".
 1503:                                     $message.
 1504:                                     '</div></blockquote>';
 1505:                             if ($canvote) {
 1506:                                 my $ownpost;
 1507:                                 if (($uname eq $env{'user.name'}) &&
 1508:                                     ($udom eq $env{'user.domain'})) {
 1509:                                     $ownpost = 1;
 1510:                                 }   
 1511: # Put in the like and unlike buttons
 1512:                                 if ($ownpost || (($hiddens{$idx}) && ($seehidden))) { 
 1513:                                     my $novote;
 1514:                                     if ($ownpost) { 
 1515:                                         $novote = &mt('No voting for your own posts.');
 1516:                                     } else {
 1517:                                         $novote = &mt('No voting for hidden posts.');
 1518:                                     }
 1519:                                     &html_escape(\$novote);
 1520:                                     $$discussionitems[$idx].=
 1521:                                         '<a href="javascript:alert('."'$novote'".');" style="text-decoration: none;">'.
 1522:                                         '<img border="0" src="/res/adm/pages/thumbsup_novote.png" alt="'.$novote.'" />&nbsp;'.
 1523:                                         '<img border="0" src="/res/adm/pages/thumbsdown_novote.png" alt="'.$novote.'" /></a>'; 
 1524: 
 1525:                                 } else {
 1526:                                     if ($userlikes{$idx}) {
 1527:                                         $$discussionitems[$idx].='<img border="0" src="/res/adm/pages/thumbsup_gray.png" alt="'.&mt('You like this posting').'" />';
 1528:                                     } else {
 1529:                                         $$discussionitems[$idx].='&nbsp;'.&discussion_link($ressymb,'<img border="0" src="/res/adm/pages/thumbsup.png" alt="'.&mt('Like').'" />','like',$idx,$$newpostsflag,$prevread,&group_args($group),&mt("Like this posting"));
 1530:                                     }
 1531:                                     if ($userunlikes{$idx}) {
 1532:                                         $$discussionitems[$idx].='<img border="0" src="/res/adm/pages/thumbsdown_gray.png" alt="'.&mt('You unlike this posting').'" />';
 1533:                                     } else {
 1534:                                         $$discussionitems[$idx].='&nbsp;'.&discussion_link($ressymb,'<img border="0" src="/res/adm/pages/thumbsdown.png" alt="'.&mt('Unlike').'" />','unlike',$idx,$$newpostsflag,$prevread,&group_args($group),&mt("Unlike this posting"));
 1535:                                     }
 1536:                                 }
 1537:                             }
 1538:                             if ($seeid || $canvote) {
 1539:                                 my $thislikes=$likes{$symb.':'.$idx.':likes'};
 1540:                                 if ($thislikes>0) {
 1541:                                     $$discussionitems[$idx].='&nbsp;('.&mt("[_1] likes",$thislikes).')';
 1542:                                 } elsif ($thislikes<0) {
 1543:                                     $$discussionitems[$idx].='&nbsp;('.&mt("[_1] unlikes",abs($thislikes)).')';
 1544:                                 }
 1545:                             }
 1546: # If there is any history to this post, inform the reader
 1547:                             if ($contrib{$idx.':history'}) {
 1548:                                 my @postversions = ();
 1549:                                 $$discussionitems[$idx] .= '&nbsp;&nbsp;'.&mt('This post has been edited by the author.');
 1550:                                 if ($seehidden) {
 1551:                                     $$discussionitems[$idx] .= '&nbsp;&nbsp;'.
 1552:                                          &discussion_link($ressymb,&mt('Display all versions'),'allversions',$idx,$$newpostsflag,$prevread,&group_args($group));
 1553:                                 }
 1554:                                 $$discussionitems[$idx].='<br/>'.&mt('Earlier version(s) were posted on: ');
 1555:                                 if ($contrib{$idx.':history'} =~ m/:/) {
 1556:                                     @postversions = split(/:/,$contrib{$idx.':history'});
 1557:                                 } else {
 1558:                                     @postversions = ("$contrib{$idx.':history'}");
 1559:                                 }
 1560:                                 for (my $i=0; $i<@postversions; $i++) {
 1561:                                     my $version = $i+1;
 1562:                                     $$discussionitems[$idx] .= '<b>'.$version.'.</b> - '.&Apache::lonlocal::locallocaltime($postversions[$i]).'  ';
 1563:                                 }
 1564:                             }
 1565: # end of unless ($$notshown ...)
 1566:                         }
 1567: # end of if ($message) ...
 1568:                     }
 1569: # end of the else-branch of target being export
 1570:                 }
 1571: # end of unless hidden or deleted
 1572:             }
 1573: # end of the loop over all discussion entries
 1574: 	}
 1575: # end of "if there actually are any discussions
 1576:     }
 1577: # end of subroutine "build_posting_display" 
 1578: }
 1579: 
 1580: sub filter_regexp {
 1581:     my ($rolefilter,$sectionpick,$statusfilter) = @_;
 1582:     my ($roleregexp,$secregexp,$statusregexp);
 1583:     my $skiptest = 1;
 1584:     if (@{$rolefilter} > 0) {
 1585:         my @okrolefilter = ();
 1586:         foreach my $role (@{$rolefilter}) {
 1587:             unless ($role eq '') {
 1588:                 push(@okrolefilter, $role);
 1589:             }
 1590:         }
 1591:         if (@okrolefilter > 0) {
 1592:             if (grep/^all$/,@okrolefilter) {
 1593:                 $roleregexp='[^:]+';
 1594:             } else {
 1595:                 if (@okrolefilter == 1) {
 1596:                     $roleregexp=$okrolefilter[0];
 1597:                 } else {
 1598:                     $roleregexp='('.join('|',@okrolefilter).')';
 1599:                 }
 1600:                 $skiptest = 0;
 1601:             }
 1602:         }
 1603:     }
 1604:     if (@{$sectionpick} > 0) {
 1605:         my @oksectionpick = ();
 1606:         foreach my $sec (@{$sectionpick}) {
 1607:             unless ($sec eq '') {
 1608:                  push(@oksectionpick, $sec);
 1609:             }
 1610:         }
 1611:         if ((@oksectionpick > 0) && (!grep/^all$/,@oksectionpick)) {
 1612:             if (@oksectionpick == 1) {
 1613:                 $secregexp = $oksectionpick[0];
 1614:             } else {
 1615:                 $secregexp .= '('.join('|',@oksectionpick).')';
 1616:             }
 1617:             $skiptest = 0;
 1618:         } else {
 1619:             $secregexp .= '[^:]*';
 1620:         }
 1621:     }
 1622: 
 1623:     if (defined($statusfilter) && $statusfilter ne '') {
 1624:         if ($statusfilter eq 'all') {
 1625:             $statusregexp = '[^:]+';
 1626:         } else {
 1627:             $statusregexp = $statusfilter;
 1628:             $skiptest = 0;
 1629:         }
 1630:     }
 1631:     return ($skiptest,$roleregexp,$secregexp,$statusregexp);
 1632: }
 1633: 
 1634: 
 1635: sub get_post_contents {
 1636:     my ($contrib,$idx,$seeid,$seehidden,$type,$messages,$subjects,$allattachments,$attachtxt,$imsfiles,$screenname,$plainname,$showaboutme,$numver) = @_;
 1637:     my $discussion = '';
 1638:     my $start=$numver;
 1639:     my $end=$numver + 1;
 1640:     %{$$imsfiles{$idx}}=();
 1641:     if ($type eq 'allversions') {
 1642:        unless($seehidden) {
 1643:            $discussion=&mt('You do not have privileges to view all versions of posts.').' '.&mt('Please select a different role.');
 1644:            return $discussion;
 1645:        } 
 1646:     }
 1647: #    $$screenname=&Apache::loncommon::screenname(
 1648: #                                        $$contrib{$idx.':sendername'},
 1649: #                                        $$contrib{$idx.':senderdomain'});
 1650:     $$plainname=&Apache::loncommon::nickname(
 1651:                                         $$contrib{$idx.':sendername'},
 1652:                                         $$contrib{$idx.':senderdomain'});
 1653:     $$screenname=$$contrib{$idx.':screenname'};
 1654:     $$showaboutme = &Apache::lonnet::usertools_access($$contrib{$idx.':sendername'},
 1655:                                                       $$contrib{$idx.':senderdomain'},
 1656:                                                       'aboutme');
 1657:     my $sender = $$plainname;
 1658:     if ($$showaboutme) {
 1659:         $sender = &Apache::loncommon::aboutmewrapper(
 1660:                                  $$plainname,
 1661:                                  $$contrib{$idx.':sendername'},
 1662:                                  $$contrib{$idx.':senderdomain'});
 1663:     }
 1664:     if ($seeid) {
 1665:         $sender .= ' ('.$$contrib{$idx.':sendername'}.':'.
 1666:                    $$contrib{$idx.':senderdomain'}.')';
 1667:     }
 1668:     my $attachmenturls = $$contrib{$idx.':attachmenturl'};
 1669:     my @postversions = ();
 1670:     if ($type eq 'allversions' || $type eq 'export') {
 1671:         $start = 0;
 1672:         if ($$contrib{$idx.':history'}) {
 1673: 	    @postversions = split(/:/,$$contrib{$idx.':history'});
 1674:         }
 1675:         &get_post_versions($messages,$$contrib{$idx.':message'},1);
 1676:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1);
 1677:         push(@postversions,$$contrib{$idx.':timestamp'});
 1678:         $end = @postversions;
 1679:     } else {
 1680:         &get_post_versions($messages,$$contrib{$idx.':message'},1,$numver);
 1681:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1,$numver);
 1682:     }
 1683: 
 1684:     if ($$contrib{$idx.':anonymous'}) {
 1685:         $sender.=' ['.&mt('anonymous').'] '.$$screenname;
 1686:     }
 1687:     if ($type eq 'allversions') {
 1688:         $discussion=('<b>'.$sender.'</b><br /><ul>');
 1689:     }
 1690:     for (my $i=$start; $i<$end; $i++) {
 1691:         my ($timesent,$attachmsg);
 1692:         my %currattach = ();
 1693:         $timesent = &Apache::lonlocal::locallocaltime($postversions[$i]);
 1694:         unless (&contains_block_html($messages->{$i})) {
 1695:             &newline_to_br(\$messages->{$i});
 1696:         }
 1697:         $$messages{$i}=&Apache::lontexconvert::msgtexconverted($$messages{$i});
 1698:         $$subjects{$i}=~s/\n/\<br \/\>/g;
 1699:         $$subjects{$i}=&Apache::lontexconvert::msgtexconverted($$subjects{$i});
 1700:         if ($attachmenturls) {
 1701:             &extract_attachments($attachmenturls,$idx,$i,\$attachmsg,$allattachments,\%currattach);
 1702:         }
 1703:         if ($type eq 'export') {
 1704:             $$imsfiles{$idx}{$i} = '';
 1705:             if ($attachmsg) {
 1706:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':<br />';
 1707:                 foreach my $key (sort(keys(%currattach))) {
 1708:                     if ($$allattachments{$key}{'filename'} =~ m-^/uploaded/([^/]+/[^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1709:                         my $fname = $1.$3.'/'.$4;
 1710:                         $$imsfiles{$idx}{$i} .= '<file href="'.$fname.'" />'."\n";
 1711:                         $$attachtxt{$i}.= '<a href="'.$fname.'">'.$4.'</a><br />';
 1712:                     }
 1713:                 }
 1714:             }
 1715:         } else {
 1716:             if ($attachmsg) {
 1717:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':'.$attachmsg.'<br />';
 1718:             } else {
 1719:                 $$attachtxt{$i} = '';
 1720:             }
 1721:         }
 1722:         if ($type eq 'allversions') {
 1723:             $discussion.= <<"END";
 1724: <li><b>$$subjects{$i}</b>, $timesent<br />
 1725: $$messages{$i}<br />
 1726: $$attachtxt{$i}</li>
 1727: END
 1728:         }
 1729:     }
 1730:     if ($type eq 'allversions') {
 1731:         $discussion.='</ul>';
 1732:         return $discussion;
 1733:     } else {
 1734:         return;
 1735:     }
 1736: }
 1737: 
 1738: sub replicate_attachments {
 1739:     my ($attachrefs,$tempexport) = @_;
 1740:     my $response;
 1741:     foreach my $id (keys(%{$attachrefs})) {
 1742:         if ($$attachrefs{$id}{'filename'} =~ m-^/uploaded/([^/]+)/([^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1743:             my $path = $tempexport;
 1744:             my $tail = $1.'/'.$2.$4;
 1745:             my @extras = split(/\//,$tail);
 1746:             my $destination = $tempexport.'/'.$1.'/'.$2.$4.'/'.$5;
 1747:             if (!-e $destination) {
 1748:                 my $i= 0;
 1749:                 while ($i<@extras) {
 1750:                     $path .= '/'.$extras[$i];
 1751:                     if (!-e $path) {
 1752:                         mkdir($path,0700);
 1753:                     }
 1754:                     $i ++;
 1755:                 }
 1756:                 my ($content,$rtncode);
 1757:                 my $uploadreply = &Apache::lonnet::getuploaded('GET',$$attachrefs{$id}{'filename'},$1,$2,$content,$rtncode);
 1758:                 if ($uploadreply eq 'ok') {
 1759:                     my $attachcopy;
 1760:                     if ($attachcopy = Apache::File->new('>'.$destination)) {
 1761:                         print $attachcopy $content;
 1762:                         close($attachcopy);
 1763:                     } else {
 1764:                         $response .= &mt('Error copying file attachment - [_1] to IMS package',$5).': '.$!.'<br />'."\n";
 1765:                     }
 1766:                 } else {
 1767:                     &Apache::lonnet::logthis("Replication of attachment failed when building IMS export of discussion posts - domain: $1, course: $2, file: $$attachrefs{$id}{'filename'} -error: $rtncode");
 1768:                     $response .= &mt('Error copying file attachment - [_1] to IMS package: ',$5).$rtncode.'<br />'."\n";
 1769:                 }
 1770:             }
 1771:         }
 1772:     }
 1773:     return $response;
 1774: }
 1775: 
 1776: sub mail_screen {
 1777:   my ($r,$feedurl,$options,$caller_symb,$attachmaxtext) = @_;
 1778:   if (exists($env{'form.origpage'})) {
 1779:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','currnewattach','addnewattach','deloldattach','delnewattach','timestamp','idx','anondiscuss','discuss','blog','group','ref']);
 1780:   }
 1781: 
 1782:   my %lt = &Apache::lonlocal::texthash(
 1783:             'myqu' => 'Question/comment/feedback:',
 1784:             'title' => 'Title',
 1785:             'reta' => 'Retained attachments',
 1786:             'atta' => 'Attachment',
 1787:            );
 1788:   if($env{'form.editdisc'} || $env{'form.replydisc'}){
 1789:     %lt = &Apache::lonlocal::texthash(
 1790:             'myqu' => 'Post Discussion',
 1791:     );
 1792:   }
 1793:   my $restitle = &get_resource_title($caller_symb,$feedurl);
 1794:   my $quote='';
 1795:   my $subject = '';
 1796:   my $comment = '';
 1797:   my $prevtag = '';
 1798:   my $parentmsg = '';
 1799:   my ($symb,$idx,$attachmenturls);
 1800:   my $numoldver = 0;
 1801:   my $attachmsg = '';
 1802:   my $newattachmsg = '';
 1803:   my @currnewattach = ();
 1804:   my @currdelold = ();
 1805:   my @keepold = ();
 1806:   my %attachments = ();
 1807:   my %currattach = ();
 1808:   my $attachnum = 0;
 1809:   my $anonchk = (<<END);
 1810:   function anonchk() {
 1811:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1812: 	  if (document.mailform.discuss[i].checked) {
 1813: 	      document.attachment.discuss.value = 
 1814: 		  document.mailform.discuss[i].value;
 1815: 	  }
 1816:       }
 1817:       if (document.mailform.blog.checked) {
 1818: 	  document.attachment.blog.value = 1;
 1819:       }
 1820:      return
 1821:    }
 1822: END
 1823:   my $anonscript;
 1824:   if (exists($env{'form.origpage'})) {
 1825:       $anonscript = (<<END);
 1826:   function setposttype() {
 1827:       var disc = "$env{'form.discuss'}";
 1828:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1829: 	  if (disc == document.mailform.discuss[i].value) {
 1830: 	      document.mailform.discuss[i].checked = 1;
 1831: 	  }
 1832:       }
 1833:       var blog = "$env{'form.blog'}";
 1834:       if (blog == 1) {
 1835:           document.mailform.blog.checked=1;
 1836:       }
 1837:       return
 1838:   }
 1839: END
 1840:   } else {
 1841:       $anonscript = (<<END);
 1842:   function setposttype() {
 1843:       return
 1844:   }
 1845: END
 1846:   }
 1847:   if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 1848:       if ($env{'form.replydisc'}) {
 1849:           ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 1850:       } else {
 1851:           ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 1852:       }
 1853:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 1854: 					   $env{'course.'.$env{'request.course.id'}.'.domain'},
 1855: 					   $env{'course.'.$env{'request.course.id'}.'.num'});
 1856:       unless (($contrib{'hidden'}=~/\.$idx\./) || ($contrib{'deleted'}=~/\.$idx\./)) {
 1857:           my $numoldver = 0;
 1858:           if ($contrib{$idx.':history'}) {
 1859:               if ($contrib{$idx.':history'} =~ /:/) {
 1860:                   my @oldversions = split(/:/,$contrib{$idx.':history'});
 1861:                   $numoldver = @oldversions;
 1862:               } else {
 1863:                   $numoldver = 1;
 1864:               }
 1865:           }
 1866:           if ($idx > 0) {
 1867:               my (%msgversions,%subversions,$htmldecode);
 1868:               $htmldecode = 0;
 1869:               if ($env{'form.replydisc'}) {
 1870:                   $htmldecode = 1;
 1871:               }
 1872:               &get_post_versions(\%msgversions,$contrib{$idx.':message'},0,$numoldver);
 1873:               &get_post_versions(\%subversions,$contrib{$idx.':subject'},$htmldecode,
 1874:                                  $numoldver);
 1875:               $subject = $subversions{$numoldver};
 1876:               if ($env{'form.replydisc'}) {
 1877:                   $quote = $msgversions{$numoldver};
 1878:                   $subject = &HTML::Entities::encode(&mt('Re: ').$subject,'<>&"');
 1879:               } else {
 1880:                   $comment = $msgversions{$numoldver};
 1881:               }
 1882:           }
 1883:           if ($env{'form.editdisc'}) {
 1884:               $attachmenturls = $contrib{$idx.':attachmenturl'};
 1885:               if (defined($contrib{$idx.':replyto'})) {
 1886:                   $parentmsg = $contrib{$idx.':replyto'};
 1887:               }
 1888:               unless (exists($env{'form.origpage'})) {
 1889:                   my $anonflag = 'nonanon';
 1890:                   if ($contrib{$idx.':anonymous'}) {
 1891:                       $anonflag = 'anon';
 1892:                   }
 1893:                   $anonscript = (<<END);
 1894:   function setposttype () {
 1895:       var currtype = "$anonflag";
 1896:       for (var i=0; i<document.mailform.discuss.length; i++) {
 1897: 	  if (document.mailform.elements.discuss[i].value == currtype ) {
 1898: 	      document.mailform.elements.discuss[i].checked=1;
 1899: 	  } 
 1900:       }
 1901:       return
 1902:   }
 1903: END
 1904:               }
 1905:           }
 1906:       }
 1907:       if ($env{'form.previous'}) {
 1908:           $prevtag = '<input type="hidden" name="previous" value="'.$env{'form.previous'}.'" />';
 1909:       }
 1910:   }
 1911: 
 1912:   if ($env{'form.origpage'}) {
 1913:       $subject = &unescape($env{'form.subject'});
 1914:       $comment = &unescape($env{'form.comment'});
 1915:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 1916:   }
 1917:   my $latexHelp=&Apache::loncommon::helpLatexCheatsheet(undef,undef,1,($env{'form.modal'}?'popup':0));
 1918:   my $send=&mt('Send');
 1919:   my $alert = &mt('Please select a feedback type.');
 1920:   &js_escape(\$alert);
 1921:   my $js= <<END;
 1922: <script type="text/javascript">
 1923: //<!--
 1924:     function gosubmit() {
 1925:         var rec=0;
 1926:         if (typeof(document.mailform.elements.discuss)!="undefined") {
 1927: 	    if (typeof(document.mailform.elements.discuss.length) == "undefined") {
 1928: 		if (document.mailform.elements.discuss.checked ) {
 1929: 		    rec=1;
 1930: 		}
 1931: 	    } else {
 1932: 		for (var i=0; i<document.mailform.elements.discuss.length; i++) {
 1933: 		    if (document.mailform.elements.discuss[i].checked ) {
 1934: 			rec=1;
 1935: 		    } 
 1936: 		}
 1937: 	    }
 1938: 	}
 1939:         if (typeof(document.mailform.elements.blog)!="undefined") {
 1940:           if (document.mailform.elements.blog.checked) {
 1941:              rec=1;
 1942:           } 
 1943:         }
 1944: 
 1945:         if (rec) {
 1946:             if (typeof(document.mailform.onsubmit)=='function') {
 1947: 		document.mailform.onsubmit();
 1948: 	    }
 1949: 	    document.mailform.submit();
 1950:         } else {
 1951:             alert('$alert');
 1952: 	}
 1953:     }
 1954:     $anonchk
 1955:     $anonscript
 1956: //-->
 1957: </script>
 1958: <script type="text/javascript" src="/res/adm/includes/file_upload.js"></script>
 1959: END
 1960: 
 1961:   my ($textareaheader,$textareaclass);
 1962:   if (&Apache::lonhtmlcommon::htmlareabrowser()) {
 1963:       $textareaheader = &Apache::lonhtmlcommon::htmlareaselectactive();
 1964:       $textareaclass = 'class="LC_richDefaultOff"';
 1965:       if ($env{'request.course.id'}) {
 1966:           unless (($env{'course.'.$env{'request.course.id'}.'.allow_limited_html_in_feedback'} =~ /^\s*yes\s*$/i) || ($env{'form.sendmessageonly'})) {
 1967:               undef($textareaclass);
 1968:           }
 1969:       }
 1970:   }
 1971: 
 1972:   # Breadcrumbs
 1973:   my $brcrum = [{'href' => '',
 1974:                  'text' => 'Resource Feedback and Discussion'}];
 1975: 
 1976:   my %onload = ('onload' => 'window.focus();setposttype();');
 1977:   my %parms=('add_entries' => \%onload);
 1978:   if ($env{'form.modal'} ne 'yes') { $parms{'bread_crumbs'} = $brcrum; }
 1979:   my $start_page=
 1980:       &Apache::loncommon::start_page('Resource Feedback and Discussion',$js,\%parms);
 1981: 
 1982:   if ($quote ne '') {
 1983:       $quote = &HTML::Entities::decode($quote);
 1984:       unless (&contains_block_html($quote)) {
 1985:           &newline_to_br(\$quote);
 1986:       }
 1987:         $quote=&Apache::lonhtmlcommon::start_pick_box().
 1988:                &Apache::lonhtmlcommon::row_title(&mt('Quote')).
 1989:                &Apache::lontexconvert::msgtexconverted($quote).
 1990:                &Apache::lonhtmlcommon::row_closure(1).
 1991:                &Apache::lonhtmlcommon::end_pick_box();
 1992:   }
 1993:   my $header='';
 1994:   unless ($env{'form.modal'}) {
 1995:      $header="<h2><tt>$restitle</tt></h2>";
 1996:   }
 1997:   $r->print(<<END);
 1998: $start_page
 1999: <h1>$lt{'myqu'}</h1>
 2000: $header
 2001: <form action="/adm/feedback" method="post" name="mailform"
 2002: enctype="multipart/form-data">
 2003: $prevtag
 2004: <input type="hidden" name="postdata" value="$feedurl" />
 2005: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 2006: END
 2007:   if ($env{'form.replydisc'}) {
 2008:       $r->print(<<END);
 2009: <input type="hidden" name="replydisc" value="$env{'form.replydisc'}" />
 2010: END
 2011:   } elsif ($env{'form.editdisc'}) {
 2012:      $r->print(<<END);
 2013: <input type="hidden" name="editdisc" value="$env{'form.editdisc'}" />
 2014: <input type="hidden" name="parentmsg" value="$parentmsg" />
 2015: END
 2016:   }
 2017:   $r->print(<<END);
 2018: $options
 2019: <br />
 2020: END
 2021: $r->print(&Apache::lonhtmlcommon::start_pick_box());
 2022: $r->print(<<END);
 2023: $quote
 2024: <p>
 2025: $textareaheader
 2026: </p>
 2027: <p>
 2028: $latexHelp
 2029: </p>
 2030: <p>
 2031: END
 2032: 
 2033:     
 2034:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Subject')));
 2035:     $r->print('<input type="text" name="subject" size="30" value="'.
 2036:               $subject.'" /></p>');
 2037:     $r->print(&Apache::lonhtmlcommon::row_closure());
 2038:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Message')));
 2039:     $r->print('<textarea name="comment" id="comment" cols="55" rows="10" '.
 2040:               $textareaclass.'>'.$comment.
 2041:               '</textarea>');
 2042:     $r->print(&Apache::lonhtmlcommon::row_closure(1));
 2043:     $r->print(&Apache::lonhtmlcommon::end_pick_box());
 2044: 
 2045:     if ( ($env{'form.editdisc'}) || ($env{'form.replydisc'}) ) {
 2046:         if ($env{'form.origpage'}) {
 2047:             foreach my $attach (@currnewattach) {
 2048:                 $r->print('<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n");
 2049:             }
 2050:             foreach my $oldatt (@currdelold) {
 2051:                 $r->print('<input type="hidden" name="deloldattach" value="'.$oldatt.'" />'."\n");
 2052:             }
 2053:         }
 2054:         if ($env{'form.editdisc'}) {
 2055:             if ($attachmenturls) {
 2056:                 &extract_attachments($attachmenturls,$idx,$numoldver,\$attachmsg,\%attachments,\%currattach,\@currdelold);
 2057:                 $attachnum = scalar(keys(%currattach));
 2058:                 foreach my $key (keys(%currattach)) {
 2059:                     $r->print('<input type="hidden" name="keepold" value="'.$key.'" />'."\n");
 2060:                 }
 2061:             }
 2062:         }
 2063:     } else {
 2064:         $r->print(<<END);
 2065: <p>
 2066: $lt{'atta'} $attachmaxtext: <input type="file" name="attachment" class="flUpload" />
 2067: <input type="hidden" id="free_space" value="131072" />
 2068: </p>
 2069: END
 2070:     }
 2071:     if (exists($env{'form.group'})) {
 2072:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2073:     }
 2074:     if (exists($env{'form.ref'})) {
 2075:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2076:     }
 2077:     $r->print(<<END);
 2078: <input type="hidden" name="sendit" value="1" /><br /><br />
 2079: <input type="button" value="$send" onclick='gosubmit();' />
 2080: </form>
 2081: END
 2082:     if ($env{'form.editdisc'} || $env{'form.replydisc'}) {
 2083:         my $now = time;
 2084:         my $ressymb = $symb;
 2085:         &Apache::lonenc::check_encrypt(\$ressymb);
 2086:         my $postidx = '';
 2087:         if ($env{'form.editdisc'}) {
 2088:             $postidx = $idx;
 2089:         }
 2090:         if (@currnewattach > 0) {
 2091:             $attachnum += @currnewattach;
 2092:         }
 2093:         my $blockblog = &Apache::loncommon::blocking_status('blogs');
 2094:         if ($attachnum > 0) {
 2095:             if (@currnewattach > 0) {
 2096:                 $newattachmsg .= '<br /><b>'.&mt('New attachments').'</b><br />';
 2097:                 if (@currnewattach > 1) {
 2098:                     $newattachmsg .= '<ol>';
 2099:                     foreach my $item (@currnewattach) {
 2100:                         $item =~ m#.*/([^/]+)$#;
 2101:                         $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
 2102:                     }
 2103:                     $newattachmsg .= '</ol>'."\n";
 2104:                 } else {
 2105:                     $currnewattach[0] =~ m#.*/([^/]+)$#;
 2106:                     $newattachmsg .= '<a href="'.$currnewattach[0].'">'.$1.'</a><br />'."\n";
 2107:                 }
 2108:             }
 2109:             if ($attachmsg) {
 2110:                 $r->print("<br /><b>$lt{'reta'}</b>:$attachmsg<br />\n");
 2111:             }
 2112:             if ($newattachmsg) {
 2113:                 $r->print("$newattachmsg");
 2114:             }
 2115:         }
 2116:         $r->print(&generate_attachments_button($postidx,$attachnum,$ressymb,$now,\@currnewattach,\@currdelold,$numoldver,'',$blockblog));
 2117:     }
 2118:     $r->print(&generate_preview_button().
 2119: 	      &Apache::loncommon::end_page());
 2120: 
 2121: }
 2122: 
 2123: sub print_display_options {
 2124:     my ($r,$symb,$previous,$dispchgA,$dispchgB,$markchg,$toggchg,$feedurl) = @_;
 2125:     &Apache::loncommon::content_type($r,'text/html');
 2126:     $r->send_http_header;
 2127: 
 2128:     my $function = &Apache::loncommon::get_users_function();
 2129:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 2130:                                                     $env{'user.domain'});
 2131: 
 2132:     my %lt = &Apache::lonlocal::texthash(
 2133:         'pref' => 'Display Preference',
 2134:         'curr' => 'Current setting ',
 2135:         'actn' => 'Action',
 2136:         'deff' => 'Default for all discussions',
 2137:         'prca' => 'Preferences can be set for this discussion that determine ....',
 2138:         'whpo' => 'Which posts are displayed when you display this discussion board or resource, and',
 2139:         'unwh' => 'Under what circumstances posts are identified as "NEW", and',
 2140:         'wipa' => 'Whether individual posts can be marked as read/unread',
 2141:         'allposts' => 'All posts',
 2142:         'unread' => 'New posts only',
 2143:         'unmark' => 'Posts not marked read',
 2144:         'ondisp' => 'Once displayed',
 2145:         'onmark' => 'Once marked not NEW',
 2146:         'toggon' => 'Shown',
 2147:         'toggoff' => 'Not shown',
 2148:         'disa' => 'Posts displayed?',
 2149:         'npmr' => 'New posts cease to be identified as "NEW"?',
 2150:         'dotm' => 'Option to mark each post as read/unread?',  
 2151:         'chgt' => 'Change to ',
 2152:         'mkdf' => 'Set to ',
 2153:         'yhni' => 'You have not indicated that you wish to change any of the discussion settings',
 2154:         'ywbr' => 'You will be returned to the previous page if you click OK.'
 2155:     );
 2156:     my %js_lt = &Apache::lonlocal::texthash(
 2157:         'yhni' => 'You have not indicated that you wish to change any of the discussion settings',
 2158:         'ywbr' => 'You will be returned to the previous page if you click OK.'
 2159:     );
 2160:     &js_escape(\%js_lt);
 2161: 
 2162:     my $dispchangeA = $lt{'unread'};
 2163:     my $dispchangeB = $lt{'unmark'};
 2164:     my $markchange = $lt{'ondisp'};
 2165:     my $toggchange = $lt{'toggon'};
 2166:     my $currdisp = $lt{'allposts'};
 2167:     my $currmark = $lt{'onmark'};
 2168:     my $discdisp = 'allposts';
 2169:     my $discmark = 'onmark';
 2170:     my $currtogg = $lt{'toggoff'};
 2171:     my $disctogg = 'toggoff';
 2172:                                                                                       
 2173:     if ($dispchgA eq 'allposts') {
 2174:         $dispchangeA = $lt{'allposts'};
 2175:         $currdisp = $lt{'unread'};
 2176:         $discdisp = 'unread';
 2177:     }
 2178: 
 2179:     if ($markchg eq 'markonread') {
 2180:         $markchange = $lt{'onmark'};
 2181:         $currmark = $lt{'ondisp'};
 2182:         $discmark = 'ondisp';
 2183:     }
 2184: 
 2185:     if ($dispchgB eq 'onlyunread') {
 2186:         $dispchangeB = $lt{'unread'};
 2187:         $currdisp = $lt{'unmark'};
 2188:         $discdisp = 'unmark';
 2189:     }
 2190:     if ($toggchg eq 'toggoff') {
 2191:         $toggchange = $lt{'toggoff'};
 2192:         $currtogg = $lt{'toggon'};
 2193:         $disctogg = 'toggon';
 2194:     }
 2195: 
 2196:     my $js = <<END;
 2197: <script type="text/javascript">
 2198: function discdispChk(caller) {
 2199:     var disctogg = '$toggchg'
 2200:     if (caller == 0) {
 2201:         if (document.modifydisp.discdisp[0].checked == true) {
 2202:             if (document.modifydisp.discdisp[1].checked == true) {
 2203:                 document.modifydisp.discdisp[1].checked = false
 2204:             }
 2205:         }
 2206:     }
 2207:     if (caller == 1) {
 2208:         if (document.modifydisp.discdisp[1].checked == true) {
 2209:             if (document.modifydisp.discdisp[0].checked == true) {
 2210:                 document.modifydisp.discdisp[0].checked = false
 2211:             }
 2212:             if (disctogg == 'toggon') {
 2213:                 document.modifydisp.disctogg.checked = true
 2214:             }
 2215:             if (disctogg == 'toggoff') {
 2216:                 document.modifydisp.disctogg.checked = false
 2217:             }
 2218:         }
 2219:     }
 2220:     if (caller == 2) {
 2221:         var dispchgB = '$dispchgB'
 2222:         if (disctogg == 'toggoff') {
 2223:             if (document.modifydisp.disctogg.checked == true) {
 2224:                 if (dispchgB == 'onlyunmark') {
 2225:                     document.modifydisp.discdisp[1].checked = false
 2226:                 }
 2227:             }
 2228:         }
 2229:     }  
 2230: }
 2231: 
 2232: function setDisp() {
 2233:     var prev = "$previous"
 2234:     var chktotal = 0
 2235:     if (document.modifydisp.discdisp[0].checked == true) {
 2236:         document.modifydisp.$dispchgA.value = "$symb"
 2237:         chktotal ++
 2238:     }
 2239:     if (document.modifydisp.discdisp[1].checked == true) {
 2240:         document.modifydisp.$dispchgB.value = "$symb"
 2241:         chktotal ++
 2242:     }
 2243:     if (document.modifydisp.discmark.checked == true) {
 2244:         document.modifydisp.$markchg.value = "$symb"
 2245:         chktotal ++
 2246:     }
 2247:     if (document.modifydisp.disctogg.checked == true) {
 2248:         document.modifydisp.$toggchg.value = "$symb"
 2249:         chktotal ++
 2250:     }
 2251:     if (chktotal > 0) { 
 2252:         document.modifydisp.submit()
 2253:     } else {
 2254:         if(confirm("$js_lt{'yhni'}. \\n$js_lt{'ywbr'}"))      {
 2255:             if (prev > 0) {
 2256:                 location.href = "$feedurl?previous=$previous"
 2257:             } else {
 2258:                 location.href = "$feedurl"
 2259:             }
 2260:         }
 2261:     }
 2262: }
 2263: </script>
 2264: END
 2265: 
 2266: 
 2267:     my $start_page =
 2268: 	&Apache::loncommon::start_page('Discussion display options',$js);
 2269:     my $end_page =
 2270: 	&Apache::loncommon::end_page();
 2271:     $r->print(<<END);
 2272: $start_page
 2273: <form name="modifydisp" method="post" action="/adm/feedback">
 2274: $lt{'sdpf'}<br/> $lt{'prca'}  <ol><li>$lt{'whpo'}</li><li>$lt{'unwh'}</li><li>$lt{'wipa'}</li></ol>
 2275: <br />
 2276: END
 2277:     $r->print(&Apache::loncommon::start_data_table());
 2278:     $r->print(<<END);
 2279:        <tr>
 2280:         <th>$lt{'pref'}</td>
 2281:         <th>$lt{'curr'}</td>
 2282:         <th>$lt{'actn'}?</td>
 2283:        </tr>
 2284: END
 2285:     $r->print(&Apache::loncommon::start_data_table_row());
 2286:     $r->print(<<END);
 2287:        <td>$lt{'disa'}</td>
 2288:        <td>$lt{$discdisp}</td>
 2289:        <td><label><input type="checkbox" name="discdisp" onclick="discdispChk('0')" />&nbsp;$lt{'chgt'} "$dispchangeA"</label>
 2290:            <br />
 2291:            <label><input type="checkbox" name="discdisp" onclick="discdispChk('1')" />&nbsp;$lt{'chgt'} "$dispchangeB"</label>
 2292:        </td>
 2293: END
 2294:     $r->print(&Apache::loncommon::end_data_table_row());
 2295:     $r->print(&Apache::loncommon::start_data_table_row());
 2296:     $r->print(<<END);
 2297:        <td>$lt{'npmr'}</td>
 2298:        <td>$lt{$discmark}</td>
 2299:        <td><label><input type="checkbox" name="discmark" />$lt{'chgt'} "$markchange"</label></td>
 2300: END
 2301:     $r->print(&Apache::loncommon::end_data_table_row());
 2302:     $r->print(&Apache::loncommon::start_data_table_row());
 2303:     $r->print(<<END);
 2304:        <td>$lt{'dotm'}</td>
 2305:        <td>$lt{$disctogg}</td>
 2306:        <td><label><input type="checkbox" name="disctogg" onclick="discdispChk('2')" />$lt{'chgt'} "$toggchange"</label></td>
 2307: END
 2308:     my $save = &mt('Save');
 2309:     $r->print(&Apache::loncommon::end_data_table_row());
 2310:     $r->print(&Apache::loncommon::end_data_table());
 2311:     $r->print(<<END);
 2312: <br />
 2313: <br />
 2314: <input type="hidden" name="symb" value="$symb" />
 2315: <input type="hidden" name="previous" value="$previous" />
 2316: <input type="hidden" name="$dispchgA" value="" />
 2317: <input type="hidden" name="$dispchgB" value="" />
 2318: <input type="hidden" name="$markchg" value="" />
 2319: <input type="hidden" name="$toggchg" value="" />
 2320: <input type="button" name="sub" value="$save" onclick="javascript:setDisp()" />
 2321: END
 2322:     if (exists($env{'form.group'})) {
 2323:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2324:     }
 2325:     if (exists($env{'form.ref'})) {
 2326:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2327:     }
 2328:     $r->print("
 2329: <br />
 2330: <br />
 2331: </form>
 2332: $end_page
 2333:     ");
 2334:     return;
 2335: }
 2336: 
 2337: sub print_sortfilter_options {
 2338:     my ($r,$symb,$previous,$feedurl) = @_;
 2339: 
 2340:     &Apache::loncommon::content_type($r,'text/html');
 2341:     $r->send_http_header;
 2342: 
 2343:     &Apache::lonenc::check_encrypt(\$symb);
 2344:     my @sections;
 2345:     my $section_sel = '';
 2346:     my $numvisible = 5;
 2347:     my @groups;
 2348:     my $group_sel = '';
 2349:     my $numgroupvis = 5;
 2350:     my %sectioncount = &Apache::loncommon::get_sections();
 2351:     my @courseroles = qw(st ad ep ta in);
 2352:     my $crstype = &Apache::loncommon::course_type();
 2353:     my $ccrole = 'cc';
 2354:     if ($crstype eq 'Community') {
 2355:         $ccrole = 'co';
 2356:     }
 2357:     push(@courseroles,$ccrole);
 2358:     
 2359:     if ($env{'request.course.sec'} !~ /^\s*$/) {  #Restrict section choice to current section 
 2360:         @sections = ('all',$env{'request.course.sec'});
 2361:         $numvisible = 2;
 2362:     } else {
 2363:         @sections = sort {$a cmp $b} keys(%sectioncount);
 2364:         if (scalar(@sections) < 4) {
 2365:             $numvisible = scalar(@sections) + 1;
 2366:         }
 2367:         unshift(@sections,'all'); # Put 'all' at the front of the list
 2368: 
 2369:     }
 2370:     foreach my $sec (@sections) {
 2371:         $section_sel .= "  <option value=\"$sec\">$sec</option>\n";
 2372:     }
 2373: 
 2374:     if (&check_group_priv() eq 'ok') {
 2375:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2376:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; 
 2377:         my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
 2378:         @groups = sort {$a cmp $b} keys(%curr_groups);
 2379:         if (scalar(@groups) < 4) {
 2380:             $numgroupvis = scalar(@groups) + 1;
 2381:         }
 2382:         unshift(@groups,'all'); # Put 'all' at the front of the list
 2383:     } else { 
 2384:         my @coursegroups = split(/:/,$env{'request.course.groups'});
 2385:         if (@coursegroups > 0) {
 2386:             @coursegroups = sort {$a cmp $b} @coursegroups;
 2387:             @groups = ('all',@coursegroups);
 2388:             if (scalar(@groups) < 4) {
 2389:                 $numgroupvis = scalar(@groups) + 1;
 2390:             }
 2391:         } else {
 2392:             @groups = ('all');
 2393:             $numgroupvis = 1;
 2394:         }
 2395:     }
 2396:     foreach my $group (@groups) {
 2397:         $group_sel .= "  <option value=\"$group\">$group</option>\n";
 2398:     }
 2399: 
 2400:     my $function = &Apache::loncommon::get_users_function();
 2401:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 2402:                                                     $env{'user.domain'});
 2403:     my %lt = &Apache::lonlocal::texthash(
 2404:         'diop' => 'Display Options',
 2405:         'curr' => 'Current setting ',
 2406:         'actn' => 'Action',
 2407:         'prca' => 'Set options that control the sort order of posts, and/or which posts are displayed.',
 2408:         'soor' => 'Sort order',
 2409:         'spur' => 'Specific user roles',
 2410:         'sprs' => 'Specific role status',
 2411:         'spse' => 'Specific sections',
 2412:         'spgr' => 'Specific groups',
 2413:         'psub' => 'Pick specific users (by name)',
 2414:         'shal' => 'Show a list of current posters',
 2415:         'stor' => 'Save changes',
 2416:     );
 2417: 
 2418:     my %sort_types = ();
 2419:     my %role_types = ();
 2420:     my %status_types = ();
 2421:     &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
 2422: 
 2423:     my $js = <<END;
 2424: <script type="text/javascript">
 2425: function verifyFilter() {
 2426:     var rolenum = 0
 2427:     for (var i=0; i<document.modifyshown.rolefilter.length; i++) {
 2428:         if (document.modifyshown.rolefilter.options[i].selected == true) {
 2429:             rolenum ++
 2430:         }
 2431:     }
 2432:     if (rolenum == 0) {
 2433:         document.modifyshown.rolefilter.options[0].selected = true
 2434:     }
 2435: 
 2436:     var secnum = 0
 2437:     for (var i=0; i<document.modifyshown.sectionpick.length; i++) {
 2438:         if (document.modifyshown.sectionpick.options[i].selected == true) {
 2439:             secnum ++
 2440:         }
 2441:     }
 2442:     if (secnum == 0) {
 2443:         document.modifyshown.sectionpick.options[0].selected = true
 2444:     }
 2445: 
 2446:     var grpnum = 0
 2447:     for (var i=0; i<document.modifyshown.grouppick.length; i++) {
 2448:         if (document.modifyshown.grouppick.options[i].selected == true) {
 2449:             grpnum ++
 2450:         }
 2451:     }
 2452:     if (grpnum == 0) {
 2453:         document.modifyshown.grouppick.options[0].selected = true
 2454:     }
 2455: 
 2456:     document.modifyshown.submit();
 2457: }
 2458: </script>
 2459: END
 2460: 
 2461:     my $start_page=
 2462: 	&Apache::loncommon::start_page('Discussion options',$js);
 2463:     my $end_page=
 2464: 	&Apache::loncommon::end_page();
 2465: 
 2466:     $r->print(<<END);
 2467: $start_page
 2468: <form name="modifyshown" method="post" action="/adm/feedback">
 2469: <b>$lt{'diso'}</b><br/> $lt{'prca'}
 2470: <br />
 2471: <table border="0">
 2472:  <tr>
 2473:   <th>$lt{'soor'}</th>
 2474:   <th>&nbsp;</th>
 2475:   <th>$lt{'sprs'}</th>
 2476:   <th>&nbsp;</th>
 2477:   <th>$lt{'spur'}</th>
 2478:   <th>&nbsp;</th>
 2479:   <th>$lt{'spse'}</th>
 2480:   <th>&nbsp;</th>
 2481:   <th>$lt{'spgr'}</th>
 2482:   <th>&nbsp;</th>
 2483:   <th>$lt{'psub'}</th>
 2484:  </tr>
 2485:  <tr>
 2486:   <td align="center" valign="top">
 2487:    <select name="sortposts">
 2488:     <option value="ascdate" selected="selected">$sort_types{'ascdate'}</option>
 2489:     <option value="descdate">$sort_types{'descdate'}</option>
 2490:     <option value="thread">$sort_types{'thread'}</option>
 2491:     <option value="subject">$sort_types{'subject'}</option>
 2492:     <option value="username">$sort_types{'username'}</option>
 2493:     <option value="lastfirst">$sort_types{'lastfirst'}</option>
 2494:    </select>
 2495:   </td>
 2496:   <td>&nbsp;</td>
 2497:   <td align="center" valign="top">
 2498:    <select name="statusfilter">
 2499:     <option value="all" selected="selected">$status_types{'all'}</option>
 2500:     <option value="Active">$status_types{'Active'}</option>
 2501:     <option value="Expired">$status_types{'Expired'}</option>
 2502:     <option value="Future">$status_types{'Future'}</option>
 2503:    </select>
 2504:   </td>
 2505:   <td>&nbsp;</td>
 2506:   <td align="center" valign="top">
 2507:    <select name="rolefilter" multiple="multiple" size="5">
 2508:     <option value="all">$role_types{'all'}</option>
 2509:     <option value="st">$role_types{'st'}</option>
 2510:     <option value="$ccrole">$role_types{$ccrole}</option>
 2511:     <option value="in">$role_types{'in'}</option>
 2512:     <option value="ta">$role_types{'ta'}</option>
 2513:     <option value="ep">$role_types{'ep'}</option>
 2514:     <option value="ad">$role_types{'ad'}</option>
 2515:     <option value="cr">$role_types{'cr'}</option>
 2516:    </select>
 2517:   </td>
 2518:   <td>&nbsp;</td>
 2519:   <td align="center" valign="top">
 2520:    <select name="sectionpick" multiple="multiple" size="$numvisible">
 2521:     $section_sel
 2522:    </select>
 2523:   </td>
 2524:   <td>&nbsp;</td>
 2525:   <td align="center" valign="top">
 2526:    <select name="grouppick" multiple="multiple" size="$numvisible">
 2527:     $group_sel
 2528:    </select>
 2529:   </td>
 2530:   <td>&nbsp;</td>
 2531:   <td valign="top"><label><input type="checkbox" name="posterlist" value="$symb" />$lt{'shal'}</label></td>
 2532:  </tr>
 2533: </table>
 2534: <br />
 2535: <input type="hidden" name="inhibitmenu" value="$env{'form.inhibitmenu'}" />
 2536: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 2537: <input type="hidden" name="previous" value="$previous" />
 2538: <input type="hidden" name="applysort" value="$symb" />
 2539: <input type="button" name="sub" value="$lt{'stor'}" onclick="verifyFilter()" />
 2540: END
 2541:     if (exists($env{'form.group'})) {
 2542:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2543:     }
 2544:     if (exists($env{'form.ref'})) {
 2545:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2546:     }
 2547:     $r->print("
 2548: <br />
 2549: <br />
 2550: </form>
 2551: $end_page
 2552: ");
 2553: }
 2554: 
 2555: sub print_showposters {
 2556:     my ($r,$symb,$previous,$feedurl,$sortposts) = @_;
 2557: 
 2558:     &Apache::loncommon::content_type($r,'text/html');
 2559:     $r->send_http_header;
 2560: 
 2561:     &Apache::lonenc::check_encrypt(\$symb);
 2562:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2563:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2564:     my $group = $env{'form.group'};
 2565:     my $ressymb = &wrap_symb($symb);
 2566:     my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 2567:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 2568:                                          $cdom,$cnum);
 2569:     my %namesort = ();
 2570:     my %postcounts = ();
 2571: 
 2572:     my %lt = &Apache::lonlocal::texthash(
 2573:                                           sele => 'Select',
 2574:                                           full => 'Fullname',
 2575:                                           usdo => 'Username:domain',
 2576:                                           post => 'Posts',
 2577:                                         );
 2578:     if ($contrib{'version'}) {
 2579:         for (my $idx=1;$idx<=$contrib{'version'};$idx++) {
 2580:             my $hidden=($contrib{'hidden'}=~/\.$idx\./);
 2581:             my $deleted=($contrib{'deleted'}=~/\.$idx\./);
 2582:             unless ((($hidden) && (!$seehidden)) || ($deleted)) {
 2583:                 if ((!$contrib{$idx.':anonymous'}) || (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
 2584:                     my %names = &Apache::lonnet::get('environment',['firstname','lastname'],$contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 2585:                     my $lastname = $names{'lastname'};
 2586:                     my $firstname = $names{'firstname'};
 2587:                     if ($lastname eq '') {
 2588:                         $lastname = '_';
 2589:                     }
 2590:                     if ($firstname eq '') {
 2591:                         $firstname = '_';
 2592:                     }
 2593:                     unless (defined($namesort{$lastname})) {
 2594:                         %{$namesort{$lastname}} = ();
 2595:                     }
 2596:                     my $poster =  $contrib{$idx.':sendername'}.':'.$contrib{$idx.':senderdomain'};
 2597:                     $postcounts{$poster} ++;
 2598:                     if (defined($namesort{$lastname}{$firstname})) {
 2599:                         if (!grep/^$poster$/,@{$namesort{$lastname}{$firstname}}) {
 2600:                             push(@{$namesort{$lastname}{$firstname}}, $poster);
 2601:                         }
 2602:                     } else {
 2603:                         @{$namesort{$lastname}{$firstname}} = ("$poster");
 2604:                     }
 2605:                 }
 2606:             }
 2607:         }       
 2608:     }
 2609: 
 2610:     my $start_page = &Apache::loncommon::start_page('Discussion options');
 2611:     my $table_start =&Apache::loncommon::start_data_table();
 2612:     $r->print(<<END);
 2613: $start_page
 2614:  <form name="pickpostersform" method="post" action="">
 2615:  <br />
 2616:     $table_start
 2617:       <tr>
 2618:        <th>#</th>
 2619:        <th>$lt{'sele'}</th>
 2620:        <th>$lt{'full'} <font color="#999999">($lt{'usdo'})</font></th>
 2621:        <th>$lt{'post'}</th>
 2622:       </tr>
 2623: END
 2624:     my $count = 0;
 2625:     foreach my $last (sort(keys(%namesort))) {
 2626:         foreach my $first (sort(keys(%{$namesort{$last}}))) {
 2627:             foreach my $user (sort(@{$namesort{$last}{$first}})) {
 2628:                 my ($uname,$udom) = split(/:/,$user);
 2629:                 if (!$uname || !$udom) { 
 2630:                     next;
 2631:                 } else {
 2632:                     $count ++;
 2633:                     $r->print(&Apache::loncommon::start_data_table_row().
 2634: 			      '<td align="right">'.$count.'</td>
 2635:                                <td align="center"><label><input name="stuinfo" type="checkbox" value="'.$user.'" /></td>
 2636:                                <td>'.$last.', '.$first.' ('.$uname.':'.$udom.')</label></td>
 2637:                                <td>'.$postcounts{$user}.'</td>'.
 2638: 			      &Apache::loncommon::end_data_table_row());
 2639:                 }
 2640:             }
 2641:         }
 2642:     }
 2643:     $r->print(&Apache::loncommon::end_data_table());
 2644:     my $end_page   = &Apache::loncommon::end_page();
 2645:     $r->print(<<END);
 2646: <br />
 2647: <input type="hidden" name="sortposts" value="$sortposts" />
 2648: <input type="hidden" name="modal" value="$env{'form.modal'}" />
 2649: <input type="hidden" name="userpick" value="$symb" />
 2650: <input type="button" name="store" value="Display posts" onclick="javascript:document.pickpostersform.submit()" />
 2651: </form>
 2652: $end_page
 2653: END
 2654: }
 2655: 
 2656: sub get_post_versions {
 2657:     my ($versions,$incoming,$htmldecode,$numver) = @_;
 2658:     if ($incoming =~ /^<version num="0">/) {
 2659:         my $p = HTML::LCParser->new(\$incoming);
 2660:         my $done = 0; 
 2661: 
 2662:         while ( (my $token = $p->get_tag("version")) && (!$done)) {
 2663:             my $num = $token->[1]{num};
 2664:             my $text = $p->get_text("/version");
 2665:             if (defined($numver)) {
 2666:                 if ($num == $numver) {
 2667:                     if ($htmldecode) {
 2668:                         $text = &HTML::Entities::decode($text);
 2669:                     }
 2670:                     $$versions{$numver}=$text;
 2671:                     $done = 1;
 2672:                 }
 2673:             } else {
 2674:                 if ($htmldecode) {
 2675:                     $text = &HTML::Entities::decode($text);
 2676:                 }
 2677:                 $$versions{$num}=$text;
 2678:             }
 2679:         }
 2680:     } else {
 2681:         if (!defined($numver)) {
 2682:             $numver = 0;
 2683:         }
 2684:         if ($htmldecode) {
 2685:             $$versions{$numver} = $incoming;
 2686:         } else {
 2687:             $$versions{$numver} = &HTML::Entities::encode($incoming,'<>&"');
 2688:         }
 2689:     }
 2690:     return;
 2691: }
 2692: 
 2693: sub get_post_attachments {
 2694:     my ($attachments,$attachmenturls) = @_;
 2695:     my $num;
 2696:     if ($attachmenturls =~ m/^<attachment id="0">/) {
 2697:         my $p = HTML::LCParser->new(\$attachmenturls);
 2698:         while (my $token = $p->get_tag("attachment","filename","post"))  {
 2699:             if ($token->[0] eq "attachment") {
 2700:                 $num = $token->[1]{id};
 2701:                 %{$$attachments{$num}} =();
 2702:             } elsif ($token->[0] eq "filename") {
 2703:                 $$attachments{$num}{'filename'} = $p->get_text("/filename");
 2704:             } elsif ($token->[0] eq "post") {
 2705:                 my $id = $token->[1]{id};
 2706:                 $$attachments{$num}{$id} = $p->get_text("/post");
 2707:             }
 2708:         }
 2709:     } else {
 2710:         %{$$attachments{'0'}} = ();
 2711:         $$attachments{'0'}{'filename'} = $attachmenturls;
 2712:         $$attachments{'0'}{'0'} = 'n';
 2713:     }
 2714: 
 2715:     return;
 2716: }
 2717: 
 2718: sub fail_redirect {
 2719:   my ($r,$feedurl) = @_;
 2720:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2721:   my %lt = &Apache::lonlocal::texthash(
 2722:                  'sorr' => 'Sorry, no recipients ...',
 2723:   );
 2724:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2725:   $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,
 2726: 					   {'redirect'  => [2,$feedurl],
 2727: 					    'only_body' => 1,}));
 2728:   $r->print(<<ENDFAILREDIR);
 2729: <img align="right" src="$logo" />
 2730: <p class="LC_warning">$lt{'sorr'}</p>
 2731: ENDFAILREDIR
 2732:   $r->print(&Apache::loncommon::end_page());
 2733: }
 2734: 
 2735: sub redirect_back {
 2736:   my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,$rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge) = @_;
 2737:   my $sorttag = '';
 2738:   my $roletag = '';
 2739:   my $statustag = '';
 2740:   my $sectag = '';
 2741:   my $grptag = '';
 2742:   my $userpicktag = '';
 2743:   my $qrystr = '';
 2744:   my $prevtag = '';
 2745: 
 2746:   &Apache::loncommon::content_type($r,'text/html');
 2747:   $r->send_http_header;
 2748:   &dewrapper(\$feedurl);
 2749:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2750:   if ($previous > 0) {
 2751:       $qrystr = 'previous='.$previous;
 2752:       if ($feedurl =~ /\?register=1/) {
 2753:           $feedurl .= '&amp;'.$qrystr;
 2754:       } else {
 2755:           $feedurl .= '?'.$qrystr;
 2756:       }
 2757:       $prevtag = '<input type="hidden" name="previous" value="'.$previous.'" />';
 2758:   }
 2759:   if (defined($sort)) {
 2760:       my $sortqry = 'sortposts='.$sort;
 2761:       if (($feedurl =~ /\?register=1/) || ($feedurl =~ /\?previous=/)) {
 2762:           $feedurl .= '&amp;'.$sortqry;
 2763:       } else {
 2764:           $feedurl .= '?'.$sortqry;
 2765:       }
 2766:       $sorttag = '<input type="hidden" name="sortposts" value="'.$sort.'" />';
 2767:       if (defined($numpicks)) {
 2768:           my $userpickqry = 'totposters='.$numpicks;
 2769:           $feedurl .= '&amp;'.$userpickqry;
 2770:           $userpicktag = '<input type="hidden" name="totposters" value="'.$numpicks.'" />';
 2771:       } else {
 2772:           if (ref($sectionpick) eq 'ARRAY') {
 2773:               $feedurl .= '&amp;sectionpick=';
 2774:               $sectag .=  '<input type="hidden" name="sectionpick" value="';
 2775:               foreach my $sec (@{$sectionpick}) {
 2776:                   $feedurl .= $sec.',';
 2777:                   $sectag .= $sec.',';
 2778:               }
 2779:               $feedurl =~ s/,$//;
 2780:               $sectag =~ s/,$//;
 2781:               $sectag .= '" />';
 2782:           } else {
 2783:               $feedurl .= '&amp;sectionpick='.$sectionpick;
 2784:               $sectag = '<input type="hidden" name="sectionpick" value="'.$sectionpick.'" />';
 2785:           }
 2786:           if (ref($grouppick) eq 'ARRAY') {
 2787:               $feedurl .= '&amp;grouppick=';
 2788:               $sectag .=  '<input type="hidden" name="grouppick" value="';
 2789:               foreach my $grp (@{$grouppick}) {
 2790:                   $feedurl .= $grp.',';
 2791:                   $grptag .= $grp.',';
 2792:               }
 2793:               $feedurl =~ s/,$//;
 2794:               $grptag =~ s/,$//;
 2795:               $grptag .= '" />';
 2796:           } else {
 2797:               $feedurl .= '&amp;grouppick='.$grouppick;
 2798:               $grptag = '<input type="hidden" name="grouppick" value="'.$grouppick.'" />';
 2799:           }
 2800:           if (ref($rolefilter) eq 'ARRAY') {
 2801:               $feedurl .= '&amp;rolefilter=';
 2802:               $roletag .=  '<input type="hidden" name="rolefilter" value="';
 2803:               foreach my $role (@{$rolefilter}) {
 2804:                   $feedurl .= $role.',';
 2805:                   $roletag .= $role.',';
 2806:               }
 2807:               $feedurl =~ s/,$//;
 2808:               $roletag =~ s/,$//;
 2809:               $roletag .= '" />';
 2810:           } else {
 2811:               $feedurl .= '&amp;rolefilter='.$rolefilter;
 2812:               $roletag = '<input type="hidden" name="rolefilter" value="'.$rolefilter.'" />';
 2813:           }
 2814:           $feedurl .= '&amp;statusfilter='.$statusfilter;
 2815:           $statustag ='<input type="hidden" name="statusfilter" value="'.$statusfilter.'" />';
 2816:       }
 2817:   }
 2818:   my $grouptag;
 2819:   if ($group ne '') {
 2820:       $grouptag = '<input type="hidden" name="group" value="'.$group.'" />';
 2821:       my $refarg;
 2822:       if (exists($env{'form.ref'})) {
 2823:           $refarg = '&amp;ref='.$env{'form.ref'};
 2824:           $grouptag .= '<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />';
 2825:       }
 2826:       if ($feedurl =~ /\?/) {
 2827:           $feedurl .= '&amp;group='.$group.$refarg;
 2828:       } else {
 2829:           $feedurl .= '?group='.$group.$refarg;
 2830:       }
 2831:   } 
 2832:   &Apache::lonenc::check_encrypt(\$feedurl);
 2833:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2834:   my %parms=('only_body'   => 1);
 2835:   if ($env{'form.modal'}) {
 2836:       $parms{'add_entries'}={'onLoad' => 'document.forms.reldt.submit()'};
 2837:   } else {
 2838:       $parms{'redirect'}=[0,$feedurl];
 2839:   }
 2840:   my $start_page=
 2841:       &Apache::loncommon::start_page('Feedback sent',undef,\%parms);
 2842:   my $end_page = &Apache::loncommon::end_page();
 2843:   $r->print(<<ENDREDIR);
 2844: $start_page
 2845: <img align="right" src="$logo" />
 2846: $typestyle
 2847: <b>Sent $sendsomething message(s), and $sendposts post(s).</b>
 2848: $blog
 2849: $toolarge
 2850: <font color="red">$status</font>
 2851: <form name="reldt" action="$feedurl" target="loncapaclient">
 2852: $prevtag
 2853: $sorttag
 2854: $statustag
 2855: $roletag
 2856: $sectag
 2857: $grptag
 2858: $userpicktag
 2859: $grouptag
 2860: </form>
 2861: $end_page
 2862: ENDREDIR
 2863: }
 2864: 
 2865: sub no_redirect_back {
 2866:   my ($r,$feedurl) = @_;
 2867:   my $nofeed=&mt('Sorry, no feedback possible on this resource ...');
 2868:  
 2869:   my %onload;
 2870: 
 2871:   my %body_options = ('only_body'   => 1,
 2872: 		      'bgcolor'     => '#FFFFFF',
 2873: 		      'add_entries' => \%onload,);
 2874: 
 2875:   if ($feedurl !~ m{^/adm/feedback}) { 
 2876:       $body_options{'redirect'} = [2,$feedurl];
 2877:   }
 2878:   my $start_page=
 2879:       &Apache::loncommon::start_page('Feedback not sent',undef,
 2880: 				     \%body_options);
 2881: 				      
 2882:   my $end_page = &Apache::loncommon::end_page();
 2883: 
 2884:   &Apache::lonenc::check_encrypt(\$feedurl);
 2885:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2886:   $r->print (<<ENDNOREDIRTWO);
 2887: $start_page
 2888: <img align="right" src="$logo" />
 2889: <b>$nofeed</b>
 2890: <br />
 2891: $end_page
 2892: ENDNOREDIRTWO
 2893: }
 2894: 
 2895: sub screen_header {
 2896:     my ($feedurl,$symb,$group) = @_;
 2897:     my $crscontent = &mt('Question/Comment/Feedback about course content');
 2898:     my $crspolicy = &mt('Question/Comment/Feedback about course policy');
 2899:     my $contribdisc = &mt('Contribution to course discussion of resource');
 2900:     my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');
 2901:     my $namevis = &mt('name only visible to course faculty');
 2902:     my $crstype;
 2903:     if ($env{'request.course.id'}) {
 2904:         $crstype = &Apache::loncommon::course_type();
 2905:         if ($crstype eq 'Community') {
 2906:             $crscontent = &mt('Question/Comment/Feedback about community content');
 2907:             $crspolicy = &mt('Question/Comment/Feedback about community policy');
 2908:             $contribdisc = &mt('Contribution to community discussion of resource');
 2909:             $anoncontrib = &mt('Anonymous contribution to community discussion of resource');
 2910:             $namevis = &mt('name only visible to community facilitators');
 2911:         }
 2912:     }
 2913:     my $msgoptions='';
 2914:     my $discussoptions='';
 2915:     unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 2916: 	if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
 2917: 	    $msgoptions= 
 2918: 		'<label><input type="radio" name="discuss" value="author" /> '.
 2919: 		&mt('Feedback to resource author').'</label><br />';
 2920: 	}
 2921:         my %optionhash=();
 2922:         foreach my $type ('question','comment','policy') {
 2923: 	    $optionhash{$type}=$env{'course.'.$env{'request.course.id'}.'.'.$type.'.email.text'};
 2924: 	}
 2925: 	if (&feedback_available(1)) {
 2926: 	    $msgoptions.=
 2927: 		'<label><input type="radio" name="discuss" value="question" /> '.
 2928: 		($optionhash{'question'}?$optionhash{'question'}:&mt('Question about resource content')).'</label><br />';
 2929: 	}
 2930: 	if (&feedback_available(0,1)) {
 2931: 	    $msgoptions.=
 2932: 		'<label><input type="radio" name="discuss" value="course" /> '.
 2933: 		($optionhash{'comment'}?$optionhash{'comment'}:$crscontent).
 2934: 		'</label><br />';
 2935: 	}
 2936: 	if (&feedback_available(0,0,1)) {
 2937: 	    $msgoptions.=
 2938: 		'<label><input type="radio" name="discuss" value="policy" /> '.
 2939: 		($optionhash{'policy'}?$optionhash{'policy'}:$crspolicy).
 2940: 		'</label><br />';
 2941: 	}
 2942:     }
 2943:     if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {
 2944:         my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');
 2945:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2946:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2947:         my $realsymb = &get_realsymb($symb);
 2948:         if (!$blocked && &discussion_open(undef,$realsymb) && 
 2949: 	    (&Apache::lonnet::allowed('pch',
 2950: 				      $env{'request.course.id'}.
 2951: 				      ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) || 
 2952:             (($group ne '') && ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$}) && (&check_group_priv($group,'pgd') eq 'ok')))) {
 2953:             $discussoptions='<label><input type="radio" name="discuss" value="nonanon" checked="checked" /> '.
 2954:                             $contribdisc.
 2955:                             '</label>'; 
 2956:             if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
 2957:                ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 2958: 	        $discussoptions .= '<br /><label><input type="radio" name="discuss" value="anon" /> '.
 2959: 		                   $anoncontrib.
 2960: 		                   ' <i>('.$namevis.')</i></label> '.
 2961: 		                   '<a href="/adm/preferences?action=changescreenname">'.&mt('Change Screenname').'</a>';
 2962:             }
 2963:             my $blockblog = &Apache::loncommon::blocking_status('blogs');
 2964:             if (!$blockblog) {
 2965:                 $discussoptions.= &add_blog_checkbox($crstype);
 2966:             }
 2967:         }
 2968:     }
 2969:     if ($msgoptions) {
 2970:         $msgoptions='<tr><th><img src="'.&Apache::loncommon::lonhttpdurl('/res/adm/pages/feedback.png').'" />'
 2971:                    .'<br />'.&mt('Send Feedback').'<br />'.&Apache::lonhtmlcommon::coursepreflink(&mt('Feedback Settings'),'feedback').'</th>'.
 2972:                    '<td>'.$msgoptions.'</td></tr>';
 2973:     }
 2974:     if ($discussoptions) { 
 2975: 	$discussoptions='<tr><th><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').'" alt="" />'
 2976:                         .'<br />'.&mt('Discussion Contributions').'<br />'.&Apache::lonhtmlcommon::coursepreflink(&mt('Discussion Settings'),'discussion').'</th>'.
 2977:                         '<td>'.$discussoptions.'</td></tr>';
 2978:     }
 2979:     return  &Apache::loncommon::start_data_table().$msgoptions.$discussoptions.&Apache::loncommon::end_data_table();
 2980: }
 2981: 
 2982: sub resource_output {
 2983:   my ($feedurl) = @_;
 2984:   my $usersaw=&Apache::lonnet::ssi_body($feedurl);
 2985:   $usersaw=~s/\<body[^\>]*\>//gi;
 2986:   $usersaw=~s/\<\/body\>//gi;
 2987:   $usersaw=~s/\<html\>//gi;
 2988:   $usersaw=~s/\<\/html\>//gi;
 2989:   $usersaw=~s/\<head\>//gi;
 2990:   $usersaw=~s/\<\/head\>//gi;
 2991:   $usersaw=~s/action\s*\=/would_be_action\=/gi;
 2992:   return $usersaw;
 2993: }
 2994: 
 2995: sub clear_out_html {
 2996:   my ($message,$override)=@_;
 2997: # Always allow the <m>-tag
 2998:   my %html=(M=>1);
 2999: # Check if more is allowed
 3000:   my $cid=$env{'request.course.id'};
 3001:   if (($env{"course.$cid.allow_limited_html_in_feedback"} =~ m/yes/i) ||
 3002:       ($override)) {
 3003:       # allows <B> <I> <P> <A> <LI> <OL> <UL> <EM> <BR> <TT> <STRONG> 
 3004:       # <BLOCKQUOTE> <DIV .*> <DIV> <IMG> <M> <SPAN> <H1> <H2> <H3> <H4> <SUB>
 3005:       # <SUP> <TABLE> <TR> <TD> <TH> <TBODY>
 3006:       %html=(B=>1, I=>1, P=>1, A=>1, LI=>1, OL=>1, UL=>1, EM=>1,
 3007: 	     BR=>1, TT=>1, STRONG=>1, BLOCKQUOTE=>1, PRE=>1, DIV=>1, IMG=>1,
 3008: 	     M=>1, CHEM=>1, ALGEBRA=>1, SUB=>1, SUP=>1, SPAN=>1,  
 3009: 	     H1=>1, H2=>1, H3=>1, H4=>1, H5=>1, H6=>1, 
 3010: 	     TABLE=>1, TR=>1, TD=>1, TH=>1, TBODY=>1);
 3011:   }
 3012: # Do the substitution of everything that is not explicitly allowed
 3013:   $message =~ s/\<(\/?\s*(\w+)[^\>\<]*)/
 3014: 	  {($html{uc($2)}&&(length($1)<1000))?"\<$1":"\&lt;$1"}/ge;
 3015:   $message =~ s/(\<?\s*(\w+)[^\<\>]*)\>/
 3016: 	  {($html{uc($2)}&&(length($1)<1000))?"$1\>":"$1\&gt;"}/ge;
 3017:   return $message;
 3018: }
 3019: 
 3020: sub assemble_email {
 3021:   my ($message,$prevattempts,$usersaw,$useranswer)=@_;
 3022:   my %lt = &Apache::lonlocal::texthash(
 3023:              'prev' => 'Previous attempts of student (if applicable)',
 3024:              'orig' => 'Original screen output (if applicable)',
 3025:              'corr' => 'Correct Answer(s) (if applicable)',
 3026:   );
 3027:   if (&Apache::loncommon::course_type() eq 'Community') {
 3028:       $lt{'prev'} = &mt('Previous attempts of member (if applicable)');
 3029:   }
 3030:   my $email=<<"ENDEMAIL";
 3031: $message
 3032: ENDEMAIL
 3033:     my $citations=<<"ENDCITE";
 3034: <h2>$lt{'prev'}</h2>
 3035: $prevattempts
 3036: <br /><hr />
 3037: <h2>$lt{'orig'}</h2>
 3038: $usersaw
 3039: <h2>$lt{'corr'}</h2>
 3040: $useranswer
 3041: ENDCITE
 3042:   return ($email,$citations);
 3043: }
 3044: 
 3045: 
 3046: sub feedback_available {
 3047:     my ($question,$course,$policy)=@_;
 3048:     my ($typestyle,%to)=&Apache::lonmsg::decide_receiver('',0,$question,
 3049: 							 $course,$policy);
 3050:     return scalar(%to);
 3051: }
 3052: 
 3053: sub send_msg {
 3054:     my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,%to)=@_;
 3055:     my $status='';
 3056:     my $sendsomething=0;
 3057:     my $restitle = &get_resource_title($symb,$feedurl);
 3058:     if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }
 3059:     unless ($title=~/\w/) { $title=&mt('Feedback'); }
 3060:     foreach my $key (keys(%to)) {
 3061: 	if ($key) {
 3062: 	    my ($user,$domain) = split(/\:/,$key,2);
 3063: 	    if (!defined($user)) {
 3064: 		$status.='<br />'.&mt('Error sending message to [_1], no user specified.',$key);
 3065: 	    } elsif (!defined($domain)) {
 3066: 		$status.='<br />'.&mt('Error sending message to [_1], no domain specified.',$key);
 3067: 	    } else {
 3068: 		unless (&Apache::lonmsg::user_normal_msg($user,$domain,
 3069: 							 $title.' ['.$restitle.']',$email,$citations,$feedurl,
 3070: 							 $attachmenturl,undef,undef,$symb,$restitle)=~/ok/) {
 3071: 		    $status.='<br />'.&mt('Error sending message to').' '.$key.'<br />';
 3072: 		} else {
 3073: 		    $sendsomething++;
 3074: 		}
 3075: 	    }
 3076: 	}
 3077:     }
 3078: 
 3079: # Records of number of feedback messages are kept under the "symb" called "_feedback"
 3080: # There are two entries within the framework of a course:
 3081: # - the URLs for which feedback was provided
 3082: # - the total number of contributions
 3083:     if ($sendsomething) {
 3084:         my %record=&getfeedbackrecords();
 3085:         my ($temp)=keys(%record);
 3086:         unless ($temp=~/^error\:/) {
 3087: 	    my %newrecord=();
 3088: 	    $newrecord{'resource'}=$feedurl;
 3089: 	    $newrecord{'subnumber'}=$record{'subnumber'}+1;
 3090: 	    unless (&Apache::lonnet::cstore(\%newrecord,'_feedback') eq 'ok') {
 3091: 	        $status.='<br />'.&mt('Not registered').'<br />';
 3092: 	    }
 3093:         }
 3094:     }
 3095:     return ($status,$sendsomething);
 3096: }
 3097: 
 3098: # Routine to get the complete feedback records
 3099: 
 3100: sub getfeedbackrecords {
 3101:     my ($uname,$udom,$course)=@_;
 3102:     unless ($uname) { $uname=$env{'user.name'}; }
 3103:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3104:     unless ($course) { $course=$env{'request.course.id'}; }
 3105:     my %record=&Apache::lonnet::restore('_feedback',$course,$udom,$uname);
 3106:     return %record;
 3107: }
 3108: 
 3109: # Routine to get feedback statistics
 3110: 
 3111: sub getfeedbackstats {
 3112:     my %record=&getfeedbackrecords(@_);
 3113:     return ($record{'subnumber'},$record{'points'},$record{'totallikes'});
 3114: }
 3115: 
 3116: # Store feedback credit
 3117: 
 3118: sub storefeedbackpoints {
 3119:     my ($points,$uname,$udom,$course)=@_;
 3120:     unless ($points) { $points=0; }
 3121:     unless ($uname) { $uname=$env{'user.name'}; }
 3122:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3123:     unless ($course) { $course=$env{'request.course.id'}; }
 3124:     my %record=('grader_user'   => $env{'user.name'},
 3125:                 'grader_domain' => $env{'user.domain'},
 3126:                 'points' => $points);
 3127:     return &Apache::lonnet::cstore(\%record,'_feedback',$course,$udom,$uname);
 3128: }
 3129: 
 3130: # Store feedback "likes"
 3131: 
 3132: sub storefeedbacklikes {
 3133:     my ($likes,$uname,$udom,$course)=@_;
 3134:     unless ($likes) { $likes=0; }
 3135:     if ($likes>0) { $likes=1; }
 3136:     if ($likes<0) { $likes=-1; }
 3137:     unless ($uname) { $uname=$env{'user.name'}; }
 3138:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3139:     unless ($course) { $course=$env{'request.course.id'}; }
 3140:     my %record=&getfeedbackrecords($uname,$udom,$course);
 3141:     my $totallikes=$record{'totallikes'};
 3142:     $totallikes+=$likes;
 3143:     my %newrecord=('likes_user'   => $env{'user.name'},
 3144:                    'likes_domain' => $env{'user.domain'},
 3145:                    'likes' => $likes,
 3146:                    'totallikes' => $totallikes);
 3147:     return &Apache::lonnet::cstore(\%newrecord,'_feedback',$course,$udom,$uname);
 3148: }
 3149: 
 3150: 
 3151: sub adddiscuss {
 3152:     my ($symb,$email,$anon,$attachmenturl,$subject,$group)=@_;
 3153:     my $status='';
 3154:     my $realsymb = &get_realsymb($symb);
 3155:     my ($cnum,$cdom);
 3156:     if ($env{'request.course.id'}) {
 3157:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3158:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3159:     }
 3160:     if (&discussion_open(undef,$realsymb) &&
 3161: 	(&Apache::lonnet::allowed('pch',$env{'request.course.id'}.
 3162:          ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')) || 
 3163:          (($group ne '') && (&check_group_priv($group,'pgd') eq 'ok') && 
 3164:          ($symb =~ m{^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$})))) {
 3165: 
 3166:     my %contrib=('message'      => $email,
 3167:                  'sendername'   => $env{'user.name'},
 3168:                  'senderdomain' => $env{'user.domain'},
 3169:                  'screenname'   => $env{'environment.screenname'},
 3170:                  'plainname'    => $env{'environment.firstname'}.' '.
 3171: 		                   $env{'environment.middlename'}.' '.
 3172:                                    $env{'environment.lastname'}.' '.
 3173:                                    $env{'enrironment.generation'},
 3174:                  'attachmenturl'=> $attachmenturl,
 3175:                  'subject'      => $subject);
 3176:     if ($env{'form.replydisc'}) {
 3177: 	$contrib{'replyto'}=(split(/\:\:\:/,$env{'form.replydisc'}))[1];
 3178:     }
 3179:     if ($anon) {
 3180: 	$contrib{'anonymous'}='true';
 3181:     }
 3182:     if (($symb) && ($email)) {
 3183:         my $now = time;
 3184:         if ($env{'form.editdisc'}) {
 3185:             $contrib{'ip'}=$ENV{'REMOTE_ADDR'};
 3186:             $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};
 3187:             $contrib{'timestamp'} = $now;
 3188:             $contrib{'history'} = '';
 3189:             my $numoldver = 0;
 3190:             my ($oldsymb,$oldidx)=split(/\:\:\:/,$env{'form.editdisc'});
 3191: 	    &Apache::lonenc::check_decrypt(\$oldsymb);
 3192:             $oldsymb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 3193: # get timestamp for last post and history
 3194:             my %oldcontrib=&Apache::lonnet::restore($oldsymb,$env{'request.course.id'},
 3195:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3196:                      $env{'course.'.$env{'request.course.id'}.'.num'});
 3197:             if (defined($oldcontrib{$oldidx.':replyto'})) {
 3198:                 $contrib{'replyto'} = $oldcontrib{$oldidx.':replyto'};
 3199:             }
 3200:             if (defined($oldcontrib{$oldidx.':history'})) {
 3201:                 if ($oldcontrib{$oldidx.':history'} =~ /:/) {
 3202:                     my @oldversions = split(/:/,$oldcontrib{$oldidx.':history'});
 3203:                     $numoldver = @oldversions;
 3204:                 } else {
 3205:                     $numoldver = 1;
 3206:                 }
 3207:                 $contrib{'history'} = $oldcontrib{$oldidx.':history'}.':';
 3208:             }
 3209:             my $numnewver = $numoldver + 1;
 3210:             if (defined($oldcontrib{$oldidx.':subject'})) {
 3211:                 if ($oldcontrib{$oldidx.':subject'} =~ /^<version num="0">/) {
 3212:                     $contrib{'subject'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 3213:                     $contrib{'subject'} = $oldcontrib{$oldidx.':subject'}.$contrib{'subject'};
 3214:                 } else {
 3215:                     $contrib{'subject'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':subject'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 3216:                 }
 3217:             } 
 3218:             if (defined($oldcontrib{$oldidx.':message'})) {
 3219:                 if ($oldcontrib{$oldidx.':message'} =~ /^<version num="0">/) {
 3220:                     $contrib{'message'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 3221:                     $contrib{'message'} = $oldcontrib{$oldidx.':message'}.$contrib{'message'};
 3222:                 } else {
 3223:                     $contrib{'message'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':message'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 3224:                 }
 3225:             }
 3226:             $contrib{'history'} .= $oldcontrib{$oldidx.':timestamp'};
 3227:             my $put_reply = &Apache::lonnet::putstore($env{'request.course.id'},
 3228:                   $oldsymb,$oldidx,\%contrib,
 3229:                   $env{'course.'.$env{'request.course.id'}.'.domain'},
 3230:                   $env{'course.'.$env{'request.course.id'}.'.num'});
 3231:             $status='Editing class discussion'.($anon?' (anonymous)':'');
 3232:         } else {
 3233:            $status='Adding to class discussion'.($anon?' (anonymous)':'').': '.
 3234:            &Apache::lonnet::store(\%contrib,$symb,$env{'request.course.id'},
 3235:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3236: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 3237:         }
 3238:         my %storenewentry=($symb => $now);
 3239:         $status.='<br />'.&mt('Updating discussion time').': '.
 3240:         &Apache::lonnet::put('discussiontimes',\%storenewentry,
 3241:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3242: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 3243:     }
 3244:     my %record=&getdiscussionrecords();
 3245:     my ($temp)=keys(%record);
 3246:     unless ($temp=~/^error\:/) {
 3247:        my %newrecord=();
 3248:        $newrecord{'resource'}=$symb;
 3249:        $newrecord{'subnumber'}=$record{'subnumber'}+1;
 3250:        $status.='<br />'.&mt('Registering').': '.
 3251:                &Apache::lonnet::cstore(\%newrecord,'_discussion');
 3252:        &updatekarma();
 3253:     }
 3254:     } else {
 3255: 	$status.='Failed.';
 3256:     }
 3257:     return $status.'<br />';   
 3258: }
 3259: 
 3260: 
 3261: # Routine to get the complete discussion records
 3262: 
 3263: sub getdiscussionrecords {
 3264:     my ($uname,$udom,$course)=@_;
 3265:     unless ($uname) { $uname=$env{'user.name'}; }
 3266:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3267:     unless ($course) { $course=$env{'request.course.id'}; }
 3268:     my %record=&Apache::lonnet::restore('_discussion',$course,$udom,$uname);
 3269:     return %record;
 3270: }
 3271: 
 3272: # Routine to get discussion statistics
 3273: 
 3274: sub getdiscussionstats {
 3275:     my %record=&getdiscussionrecords(@_);
 3276:     my $totalvotes = $record{'totallikes'} + $record{'totalunlikes'};
 3277:     return ($record{'subnumber'},$record{'points'},$record{'totallikes'},$totalvotes);
 3278: }
 3279: 
 3280: # Calculate discussion karma
 3281: 
 3282: sub calcdiscussionkarma {    
 3283:     my ($subs,$pts,$likes,$votes)=&getdiscussionstats(@_);
 3284:     my $karma=0;
 3285:     if ($votes>0) {
 3286:         $karma=int(.1+5.*(1.-exp(-$subs/10.))*$likes/$votes);
 3287:         if ($karma<0) { $karma=0; }
 3288:         if ($karma>5) { $karma=5; }
 3289:     }
 3290:     return $karma;
 3291: }
 3292: 
 3293: # Update karma
 3294: 
 3295: sub updatekarma {
 3296:     my ($uname,$udom,$course)=@_;
 3297:     unless ($uname) { $uname=$env{'user.name'}; }
 3298:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3299:     unless ($course) { $course=$env{'request.course.id'}; }
 3300:     my $karma=&calcdiscussionkarma($uname,$udom,$course);
 3301:     &Apache::lonnet::cstore({ 'karma' => $karma },'_discussion',$course,$udom,$uname);
 3302:     &Apache::lonnet::do_cache_new('karma',$uname.':'.$udom.':'.$course,$karma,3600);
 3303:     return $karma;
 3304: }
 3305: 
 3306: # Retrieve karma
 3307: 
 3308: sub userkarma {
 3309:     my ($uname,$udom,$course)=@_;
 3310:     unless ($uname) { $uname=$env{'user.name'}; }
 3311:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3312:     unless ($course) { $course=$env{'request.course.id'}; }
 3313:     my $hashkey=$uname.':'.$udom.':'.$course;
 3314:     my ($karma,$cached)=&Apache::lonnet::is_cached_new('karma',$hashkey);
 3315:     if ($cached) {
 3316:         return $karma;
 3317:     }
 3318:     my %userdisc=&getdiscussionrecords($uname,$udom,$course);
 3319:     $karma=$userdisc{'karma'};
 3320:     &Apache::lonnet::do_cache_new('karma',$hashkey,$karma,3600);
 3321:     return $karma;
 3322: }
 3323: 
 3324: # Store discussion credit
 3325: 
 3326: sub storediscussionpoints {
 3327:     my ($points,$uname,$udom,$course)=@_;
 3328:     unless ($points) { $points=0; }
 3329:     unless ($uname) { $uname=$env{'user.name'}; }
 3330:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3331:     unless ($course) { $course=$env{'request.course.id'}; }
 3332:     my %record=('grader_user'   => $env{'user.name'},
 3333:                 'grader_domain' => $env{'user.domain'},
 3334:                 'points' => $points);
 3335:     return &Apache::lonnet::cstore(\%record,'_discussion',$course,$udom,$uname);
 3336: }
 3337: 
 3338: # Store discussion "likes"
 3339: 
 3340: sub storediscussionlikes {
 3341:     my ($chglikes,$chgunlikes,$uname,$udom,$course,$context)=@_;
 3342:     unless ($uname) { $uname=$env{'user.name'}; }
 3343:     unless ($udom)  { $udom=$env{'user.domain'}; }
 3344:     unless ($course) { $course=$env{'request.course.id'}; }
 3345:     my %record=&getdiscussionrecords($uname,$udom,$course);
 3346:     my $totallikes=$record{'totallikes'};
 3347:     my $totalunlikes=$record{'totalunlikes'};
 3348:     $totallikes += $chglikes;
 3349:     $totalunlikes += $chgunlikes;
 3350:     my %newrecord=('likes_user'   => $env{'user.name'},
 3351:                    'likes_domain' => $env{'user.domain'},
 3352:                    'totallikes'   => $totallikes,
 3353:                    'totalunlikes' => $totalunlikes,
 3354:                    'context'      => $context);
 3355:     my $status=&Apache::lonnet::cstore(\%newrecord,'_discussion',$course,$udom,$uname);
 3356:     if ($status eq 'ok') {
 3357:         &updatekarma($uname,$udom,$course);
 3358:     }
 3359:     return $status;
 3360: }
 3361: 
 3362: sub get_discussion_info {
 3363:     my ($idx,%contrib) = @_;
 3364:     my $changelast = 0;
 3365:     my $count = 0;
 3366:     my $hiddenflag = 0;
 3367:     my $deletedflag = 0;
 3368:     my ($hidden,$deleted,%info,$newlastdisc);
 3369:     my $version = $contrib{'version'};
 3370:     if ($version) {
 3371:         for (my $id=$version; $id>0; $id--) {
 3372:             my $vkeys=$contrib{$id.':keys'};
 3373:             my @keys=split(/:/,$vkeys);
 3374:             if (grep(/^hidden$/,@keys)) {
 3375:                 if (!$hiddenflag) {
 3376:                     $hidden = $contrib{$id.':hidden'};
 3377:                     $hiddenflag = 1;
 3378:                 }
 3379:             } elsif (grep(/^deleted$/,@keys)) {
 3380:                 if (!$deletedflag) {
 3381:                     $deleted = $contrib{$id.':deleted'};
 3382:                     $deletedflag = 1;
 3383:                 }
 3384:             } else {
 3385:                 if (($hidden !~/\.$id\./) && ($deleted !~/\.$id\./)) {
 3386:                     $count++;
 3387:                     $info{$count}{'id'} = $id;
 3388:                     $info{$count}{'timestamp'}=$contrib{$id.':timestamp'}; 
 3389:                 }
 3390:             }
 3391:         }
 3392:         if ($info{'1'}{'id'} == $idx) {
 3393:             $changelast = 1;
 3394:             if ($count > 1) { 
 3395:                 $newlastdisc =  $info{'2'}{'timestamp'};
 3396:             } else {
 3397:                 $newlastdisc = 0;
 3398:             }
 3399:         }
 3400:     }
 3401:     return ($changelast,$newlastdisc);
 3402: }
 3403: 
 3404: # ----------------------------------------------------------- Preview function
 3405: 
 3406: sub show_preview {
 3407:     my ($r) = @_;
 3408:     &Apache::loncommon::content_type($r,'text/html');
 3409:     $r->send_http_header;
 3410:     my $start_page=
 3411: 	&Apache::loncommon::start_page('Preview',undef,
 3412: 				       {'only_body'   => 1,});
 3413: 
 3414:     my $message=&clear_out_html($env{'form.comment'});
 3415:     &newline_to_br(\$message);
 3416:     $message=&Apache::lonspeller::markeduptext($message);
 3417:     $message=&Apache::lontexconvert::msgtexconverted($message);
 3418:     my $subject=&clear_out_html($env{'form.subject'});
 3419:     $subject=~s/\n/\<br \/\>/g;
 3420:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 3421: 					
 3422:     my $end_page = &Apache::loncommon::end_page();
 3423: 
 3424:     $r->print($start_page
 3425:              .'<h1>'.&mt('Preview').'</h1>'
 3426:              .&Apache::lonhtmlcommon::start_pick_box()
 3427:              .&Apache::lonhtmlcommon::row_title(&mt('Subject'))
 3428:              .$subject
 3429:              .&Apache::lonhtmlcommon::row_closure()
 3430:              .&Apache::lonhtmlcommon::row_title(&mt('Message'))
 3431:              .$message
 3432:              .&Apache::lonhtmlcommon::row_closure(1)
 3433:              .&Apache::lonhtmlcommon::end_pick_box()
 3434:              .$end_page
 3435:     );
 3436: }
 3437: 
 3438: sub contains_block_html {
 3439:     my ($message)=@_;
 3440:     return ($message =~ m{
 3441:         <(br|h1|h2|h3|h4|h5|h6|p|ol|ul|table|pre|address|blockquote|center|div) 
 3442: 	  \s*
 3443: 	 (\w+\=['"]\w+['"])*
 3444: 	  \s*
 3445: 	(
 3446: 	  \s*/>|
 3447: 	  >.*</\1\s*>
 3448: 	)}xs 
 3449:     );
 3450: }
 3451: 
 3452: sub tidy_html {
 3453: 	my ($message)=@_;
 3454: # 	my $tidy = HTML::Tidy::libXML->new();
 3455: # 	my $xhtml = $tidy->clean($message, 'utf-8', 1);
 3456: # 	$xhtml =~ m/<body>(.*)<\/body>/is;
 3457: # 	my $clean = $1;
 3458: # 	# remove any empty block-level tags
 3459: # 	$clean =~ s/<(table|p|div|tbody|blockquote|m|pre|algebra|center|ol|ul|span|h1|h2|h3|h4|h5|h6)\s*\/>//i;
 3460: # 	$message=$clean;
 3461: 	return $message;
 3462: }
 3463: 
 3464: sub newline_to_br {
 3465:     my ($message)=@_;
 3466:     my $newmessage;
 3467:     my $parser=HTML::LCParser->new($message);
 3468:     while (my $token=$parser->get_token()) {
 3469: 	if ($token->[0] eq 'T') {
 3470: 	    my $text=$token->[1];
 3471: 	    $text=~s/\n/\<br \/\>/g;
 3472: 	    $newmessage.=$text;
 3473: 	} elsif ($token->[0] eq 'D' || $token->[0] eq 'C') {
 3474: 	    $newmessage.=$token->[1];
 3475: 	} elsif ($token->[0] eq 'PI' || $token->[0] eq 'E') {
 3476: 	    $newmessage.=$token->[2];
 3477: 	} elsif ($token->[0] eq 'S') {
 3478: 	    $newmessage.=$token->[4];
 3479: 	}
 3480: 	    
 3481:     }
 3482:     $$message=$newmessage;
 3483: }
 3484: 
 3485: sub generate_preview_button {
 3486:     my ($formname,$fieldname)=@_;
 3487:     unless ($formname) { $formname='mailform'; }
 3488:     unless ($fieldname) { $fieldname='comment'; }
 3489:     my $pre=&mt("Show Preview and Check Spelling");
 3490:     return(<<ENDPREVIEW);
 3491: <br />
 3492: <form name="preview" action="/adm/feedback?preview=1" method="post" target="preview">
 3493: <input type="hidden" name="subject" />
 3494: <input type="hidden" name="comment" />
 3495: <input type="button" value="$pre"
 3496: onclick="if (typeof(document.$formname.onsubmit)=='function') {document.$formname.onsubmit();};this.form.comment.value=document.$formname.$fieldname.value;this.form.subject.value=document.$formname.subject.value;this.form.submit();" />
 3497: </form>
 3498: ENDPREVIEW
 3499: }
 3500: 
 3501: sub modify_attachments {
 3502:     my ($r,$currnewattach,$currdelold,$symb,$idx,$attachmenturls,
 3503:         $attachmaxtext,$toolarge)=@_;
 3504: 
 3505:     my %lt = &Apache::lonlocal::texthash(
 3506:                'subj' => 'Subject',
 3507:                'chth' => 'Check the checkboxes for any you wish to remove.',
 3508:                'thef' => 'The following attachments have been uploaded for inclusion with this posting.',
 3509:                'adda' => 'Add a new attachment to this post',
 3510:                'stch' => 'Save Changes',
 3511:                'clic' => 'Add/remove attachments',
 3512:              );
 3513:     my $js = <<END;
 3514: <script type="text/javascript">
 3515:  function setAction () {
 3516:    document.modattachments.action = document.modattachments.origpage.value;
 3517:    document.modattachments.submit();
 3518:  }
 3519: </script> 
 3520: <script type="text/javascript" src="/res/adm/includes/file_upload.js"></script>
 3521: END
 3522: 
 3523:     # Breadcrumbs
 3524:     my $brcrum = [{'href' => '',
 3525:                    'text' => 'Discussion Post Attachments'}];
 3526:     my %parms=('only_body' => 1);
 3527:     if ($env{'form.modal'} ne 'yes') { $parms{'bread_crumbs'} = $brcrum; }
 3528: 
 3529:     my $start_page = 
 3530: 	&Apache::loncommon::start_page('Discussion Post Attachments',$js,\%parms);
 3531: 
 3532:     my $orig_subject = &unescape($env{'form.subject'});
 3533:     my $subject=&clear_out_html($orig_subject);
 3534:     $subject=~s/\n/\<br \/\>/g;
 3535:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 3536:     my $timestamp=$env{'form.timestamp'};
 3537:     my $numoldver=$env{'form.numoldver'};
 3538: 
 3539:     my $msg = '';
 3540:     my %attachments = ();
 3541:     my %currattach = ();
 3542:     if ($idx) {
 3543:         &extract_attachments($attachmenturls,$idx,$numoldver,\$msg,\%attachments,\%currattach,$currdelold);
 3544:     }
 3545:     &Apache::lonenc::check_encrypt(\$symb);
 3546: 
 3547:     my $end_page = 
 3548: 	&Apache::loncommon::end_page();
 3549: 				       
 3550:     $r->print(<<END);
 3551: $start_page
 3552: $toolarge
 3553: <form name="modattachments" method="post" enctype="multipart/form-data" action="/adm/feedback?attach=$symb">
 3554: 
 3555:  <h1>$lt{'clic'}</h1>
 3556: END
 3557:     $r->print(&Apache::lonhtmlcommon::start_pick_box());
 3558:     $r->print(&Apache::lonhtmlcommon::row_title(&mt('Subject')));
 3559:     $r->print('<b>'.$subject.'</b>');
 3560:     $r->print(&Apache::lonhtmlcommon::row_closure());
 3561:     $r->print(&Apache::lonhtmlcommon::row_title($lt{'adda'}));
 3562:     $r->print('<input type="file" name="addnewattach" class="flUpload" />'
 3563:         .'<input type="hidden" id="free_space" value="131072" />'
 3564:         .'<input type="button" name="upload" value="Upload" '
 3565:         .'onclick="this.form.submit()" />  '.$attachmaxtext);
 3566:     if(($idx)||(ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)){
 3567:         $r->print(&Apache::lonhtmlcommon::row_closure());
 3568:         $r->print(&Apache::lonhtmlcommon::row_title(&mt('Attachments')));
 3569:         if ($idx) {
 3570:             if ($attachmenturls) {
 3571:                 my @currold = keys(%currattach);
 3572:                 if (@currold > 0) {
 3573:                     $r->print($lt{'thfo'}.'<br />'.$lt{'chth'}.'<br />'."\n");
 3574:                     foreach my $id (@currold) {
 3575:                         my $attachurl = &HTML::Entities::decode($attachments{$id}{'filename'});
 3576:                         $attachurl =~ m#/([^/]+)$#;
 3577:                         $r->print('<label><input type="checkbox" name="deloldattach" value="'.$id.'" />&nbsp;'.$1.'</label><br />'."\n");
 3578:                     }
 3579:                     $r->print("<br />");
 3580:                 }
 3581:             }
 3582:         }
 3583:         if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
 3584:             $r->print($lt{'chth'}.'<br />'."\n");
 3585:             foreach my $attach (@{$currnewattach}) {
 3586:                 $attach =~ m#/([^/]+)$#;
 3587:                 $r->print('<label><input type="checkbox" name="delnewattach" value="'.$attach.'" />&nbsp;'.$1.'</label><br />'."\n");
 3588:             }
 3589:         }
 3590:     }
 3591:     $r->print(&Apache::lonhtmlcommon::row_closure(1));
 3592:     $r->print(&Apache::lonhtmlcommon::end_pick_box());
 3593:     $r->print(<<END);
 3594: <input type="hidden" name="subject" value="$env{'form.subject'}" />
 3595: <input type="hidden" name="comment" value="$env{'form.comment'}" />
 3596: <input type="hidden" name="timestamp" value="$env{'form.timestamp'}" />
 3597: <input type="hidden" name="idx" value="$env{'form.idx'}" />
 3598: <input type="hidden" name="numoldver" value="$env{'form.numoldver'}" />
 3599: <input type="hidden" name="origpage" value="$env{'form.origpage'}" />
 3600: <input type="hidden" name="blog" value="$env{'form.blog'}" />
 3601: <input type="hidden" name="discuss" value="$env{'form.discuss'}" />
 3602: END
 3603:     foreach my $item (@{$currnewattach}) {
 3604:         $r->print('<input type="hidden" name="currnewattach" value="'.$item.'" />'."\n");
 3605:     }
 3606:     foreach my $item (@{$currdelold}) {
 3607:         $r->print('<input type="hidden" name="deloldattach" value="'.$item.'" />'."\n");
 3608:     }
 3609:     $r->print(<<END);
 3610:  <input type="button" name="rtntoedit" value="$lt{'stch'}" onclick="setAction()" />
 3611: </form>
 3612: $end_page
 3613: END
 3614:     return;
 3615: }
 3616: 
 3617: sub process_attachments {
 3618:     my ($currnewattach,$currdelold,$keepold) = @_;
 3619: 
 3620:     @{$currnewattach}=
 3621: 	&Apache::loncommon::get_env_multiple('form.currnewattach');
 3622:     @{$currdelold}=
 3623: 	&Apache::loncommon::get_env_multiple('form.deloldattach');
 3624:     if (exists($env{'form.delnewattach'})) {
 3625:         my @currdelnew =
 3626: 	    &Apache::loncommon::get_env_multiple('form.delnewattach');
 3627:         my @currnew = ();
 3628:         foreach my $newone (@{$currnewattach}) {
 3629:             my $delflag = 0;
 3630:             foreach my $item (@currdelnew) {
 3631:                 if ($newone eq $item) {
 3632:                     $delflag = 1;
 3633:                     last;
 3634:                 }
 3635:             }
 3636:             unless ($delflag) {
 3637:                 push(@currnew, $newone);
 3638:             }
 3639:         }
 3640:         @{$currnewattach} = @currnew;
 3641:     }
 3642:     @{$keepold} = &Apache::loncommon::get_env_multiple('form.keepold');
 3643: }
 3644: 
 3645: sub generate_attachments_button {
 3646:     my ($idx,$attachnum,$ressymb,$now,$currnewattach,$deloldattach,
 3647:         $numoldver,$mode,$blockblog) = @_;
 3648:     my $origpage = $ENV{'REQUEST_URI'};
 3649:     my $att=$attachnum.' '.&mt("attachments");
 3650:     my %lt = &Apache::lonlocal::texthash(
 3651:                 'clic' => 'Add/remove attachments',
 3652:     ); 
 3653:     my $response = (<<END);
 3654: <br />
 3655: <form name="attachment" action="/adm/feedback?attach=$ressymb" method="post">
 3656: <input type="button" value="$lt{'clic'}"
 3657: onclick="if (typeof(document.mailform.onsubmit)=='function') {document.mailform.onsubmit();};this.form.comment.value=escape(document.mailform.comment.value);this.form.subject.value=escape(document.mailform.subject.value);
 3658: END
 3659:     if (!$blockblog) {
 3660:         $response .= 'setblogvalue();';
 3661:     }
 3662:     unless ($mode eq 'board') {
 3663:         $response .= 'javascript:anonchk();';
 3664:     }
 3665:     $response .= (<<ENDATTACH);
 3666: this.form.submit();" />
 3667: <input type="hidden" name="origpage" value="$origpage" />
 3668: <input type="hidden" name="idx" value="$idx" />
 3669: <input type="hidden" name="timestamp" value="$now" />
 3670: <input type="hidden" name="subject" />
 3671: <input type="hidden" name="comment" />
 3672: <input type="hidden" name="blog" value="0" />
 3673: <input type="hidden" name="discuss" value="0" />
 3674: <input type="hidden" name="numoldver" value="$numoldver" />
 3675: ENDATTACH
 3676:     if (defined($deloldattach)) {
 3677:         if (@{$deloldattach} > 0) {
 3678:             foreach my $delatt (@{$deloldattach}) {
 3679:                 $response .= '<input type="hidden" name="deloldattach" value="'.$delatt.'" />'."\n";
 3680:             }
 3681:         }
 3682:     }
 3683:     if (defined($currnewattach)) {
 3684:         if (@{$currnewattach} > 0) {
 3685:             foreach my $attach (@{$currnewattach}) {
 3686:                 $response .= '<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n";
 3687:             }
 3688:         }
 3689:     }
 3690:     $response .= '</form>';
 3691:     return $response;
 3692: }
 3693: 
 3694: sub extract_attachments {
 3695:     my ($attachmenturls,$idx,$numoldver,$message,$attachments,$currattach,$currdelold) = @_;
 3696:     %{$attachments}=();
 3697:     &get_post_attachments($attachments,$attachmenturls);
 3698:     foreach my $id (sort(keys(%{$attachments}))) {
 3699:         if (exists($$attachments{$id}{$numoldver})) {
 3700:             if (defined($currdelold)) {
 3701:                 if (@{$currdelold} > 0) {
 3702:                     unless (grep/^$id$/,@{$currdelold}) {
 3703:                         $$currattach{$id} = $$attachments{$id}{$numoldver}; 
 3704:                     }
 3705:                 } else {
 3706:                     $$currattach{$id} = $$attachments{$id}{$numoldver};
 3707:                 }
 3708:             } else {
 3709:                 $$currattach{$id} = $$attachments{$id}{$numoldver};
 3710:             }
 3711:         }
 3712:     }
 3713:     my @attached = (sort { $a <=> $b } keys(%{$currattach}));
 3714:     if (@attached == 1) {
 3715:         my $id = $attached[0];
 3716:         my $attachurl;
 3717:         if ($attachmenturls =~ m/^<attachment id="0">/) {
 3718:             $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3719:         } else {
 3720:             $attachurl = $$attachments{$id}{'filename'};
 3721:         }
 3722:         $attachurl=~m|/([^/]+)$|;
 3723:         $$message.='<br /><a href="'.$attachurl.'"><tt>'.
 3724:         $1.'</tt></a><br />';
 3725:         &Apache::lonnet::allowuploaded('/adm/feedback',
 3726:                                $attachurl);
 3727:     } elsif (@attached > 1) {
 3728:         $$message.='<ol>';
 3729:         foreach my $attach (@attached) {
 3730:             my $id = $attach;
 3731:             my $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3732:             my ($fname)
 3733:               =($attachurl=~m|/([^/]+)$|);
 3734:             $$message .= '<li><a href="'.$attachurl.
 3735:               '"><tt>'.
 3736:               $fname.'</tt></a></li>';
 3737:             &Apache::lonnet::allowuploaded('/adm/feedback',
 3738:                              $attachurl);
 3739:         }
 3740:         $$message .= '</ol>';
 3741:     }
 3742: }
 3743: 
 3744: sub construct_attachmenturl {
 3745:     my ($currnewattach,$keepold,$symb,$idx)=@_;
 3746:     my $oldattachmenturl;
 3747:     my $newattachmenturl;
 3748:     my $startnum = 0;
 3749:     my $currver = 0;
 3750:     if (($env{'form.editdisc'}) && ($idx)) {
 3751:         my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3752:                        $env{'course.'.$env{'request.course.id'}.'.domain'},
 3753:                        $env{'course.'.$env{'request.course.id'}.'.num'});
 3754:         $oldattachmenturl = $contrib{$idx.':attachmenturl'};
 3755:         if ($contrib{$idx.':history'}) {
 3756:             if ($contrib{$idx.':history'} =~ /:/) {
 3757:                 my @oldversions = split(/:/,$contrib{$idx.':history'});
 3758:                 $currver = 1 + scalar(@oldversions);
 3759:             } else {
 3760:                 $currver = 2;
 3761:             }
 3762:         } else {
 3763:             $currver = 1;
 3764:         }
 3765:         if ($oldattachmenturl) {
 3766:             if ($oldattachmenturl =~ m/^<attachment id="0">/) {
 3767:                 my %attachments = ();
 3768:                 my $prevver = $currver-1;
 3769:                 &get_post_attachments(\%attachments,$oldattachmenturl);
 3770:                 my $numattach = scalar(keys(%attachments));
 3771:                 $startnum += $numattach;
 3772:                 foreach my $num (sort {$a <=> $b} keys(%attachments)) {
 3773:                     $newattachmenturl .= '<attachment id="'.$num.'"><filename>'.$attachments{$num}{'filename'}.'</filename>';
 3774:                     foreach my $item (sort {$a <=> $b} keys(%{$attachments{$num}})) {
 3775:                         unless ($item eq 'filename') {
 3776:                             $newattachmenturl .= '<post id="'.$item.'">'.$attachments{$num}{$item}.'</post>';
 3777:                         }
 3778:                     }
 3779:                     if (grep/^$num$/,@{$keepold}) {
 3780:                         $newattachmenturl .= '<post id="'.$currver.'">'.$attachments{$num}{$prevver}.'</post>';
 3781:                     }
 3782:                     $newattachmenturl .= '</attachment>';
 3783:                 }
 3784:             } else {
 3785:                 $newattachmenturl = '<attachment id="0"><filename>'.&HTML::Entities::encode($oldattachmenturl).'</filename><post id="0">n</post>';
 3786:                 unless (grep/^0$/,@{$keepold}) {
 3787:                     $newattachmenturl .= '<post id="1">n</post>';
 3788:                 }
 3789:                 $newattachmenturl .= '</attachment>';
 3790:                 $startnum ++;
 3791:             }
 3792:         }
 3793:     }
 3794:     for (my $i=0; $i<@{$currnewattach}; $i++) {
 3795:         my $attachnum = $startnum + $i;
 3796:         $newattachmenturl .= '<attachment id="'.$attachnum.'"><filename>'.&HTML::Entities::encode($$currnewattach[$i]).'</filename><post id="'.$currver.'">n</post></attachment>';
 3797:     }
 3798:     return $newattachmenturl; 
 3799: }
 3800: 
 3801: sub add_blog_checkbox {
 3802:     my ($crstype) = @_;
 3803:     my $checkstatus;
 3804:     if ($env{'form.blog'}) {
 3805:         $checkstatus = 'checked="checked"';
 3806:     }
 3807:     my $output = '
 3808: <script type="text/javascript">
 3809: function setblogvalue() {
 3810:     if (document.mailform.blog.checked) {
 3811:         document.attachment.blog.value = 1;
 3812:     } else {
 3813:         document.attachment.blog.value = 0;
 3814:     }
 3815: }
 3816: </script><br />
 3817: <label><input type="checkbox" name="blog" '.$checkstatus.' /> ';
 3818:     if ($crstype eq 'Community') {
 3819:         $output .= &mt('Add to my public community blog');
 3820:     } else {
 3821:         $output .= &mt('Add to my public course blog');
 3822:     } 
 3823:     $output .= '</label><br />'."\n";
 3824:     return $output;
 3825: }
 3826: 
 3827: sub has_discussion {
 3828:     my $resourcesref = shift;
 3829:     my $navmap = Apache::lonnavmaps::navmap->new();
 3830:     if (defined($navmap)) {
 3831:         my @allres=$navmap->retrieveResources();
 3832:         foreach my $resource (@allres) {
 3833:             if ($resource->hasDiscussion()) {
 3834:                 my $ressymb = $resource->wrap_symb();
 3835:                 if (ref($resourcesref) eq 'ARRAY') {
 3836:                     push(@{$resourcesref}, $ressymb);
 3837:                 }
 3838:             }
 3839:         }
 3840:     } else {
 3841:         &Apache::lonnet::logthis('Has discussion check failed - could not create navmap object.');
 3842:     }
 3843:     return;
 3844: }
 3845: 
 3846: sub sort_filter_names {
 3847:     my ($sort_types,$role_types,$status_types,$crstype) = @_;
 3848:     if (ref($sort_types) eq 'HASH') {
 3849:         %{$sort_types} = (
 3850:                      ascdate => 'Date order - oldest first',
 3851:                      descdate => 'Date order - newest first',
 3852:                      thread => 'Threaded',
 3853:                      subject => 'By subject',
 3854:                      username => 'By domain and username',
 3855:                      lastfirst => 'By last name, first name'
 3856:                    );
 3857:     }
 3858:     my @courseroles = qw(st in ta ep ad);
 3859:     if ($crstype eq 'Community') {
 3860:         push(@courseroles,'co');
 3861:     } else {
 3862:         push(@courseroles,'cc');
 3863:     }
 3864:     if (ref($role_types) eq 'HASH') {
 3865:         foreach my $role (@courseroles) {
 3866:             $role_types->{$role} = &Apache::lonnet::plaintext($role,$crstype);
 3867:         }
 3868:         $role_types->{'all'} = 'All roles';
 3869:         $role_types->{'cr'} = 'Custom role';
 3870:     }
 3871:     if (ref($status_types) eq 'HASH') {
 3872:         %{$status_types} = (
 3873:                      all     => 'Roles of any status',
 3874:                      Active  => 'Only active roles',
 3875:                      Expired => 'Only past roles',
 3876:                      Future  => 'Only future roles',
 3877:                    );
 3878:     }
 3879: }
 3880:   
 3881: sub handler {
 3882:   my $r = shift;
 3883:   if ($r->header_only) {
 3884:      &Apache::loncommon::content_type($r,'text/html');
 3885:      $r->send_http_header;
 3886:      return OK;
 3887:   }
 3888: 
 3889: # --------------------------- Get query string for limited number of parameters
 3890: 
 3891:   &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 3892:          ['like','unlike','modal','hide','unhide','deldisc','undeleteall','postdata','preview','replydisc','editdisc','cmd','symb','onlyunread','allposts','onlyunmark','previous','markread','markonread','markondisp','toggoff','toggon','modifydisp','changes','navtime','navmaps','navurl','sortposts','applysort','rolefilter','statusfilter','sectionpick','groupick','posterlist','userpick','attach','origpage','currnewattach','deloldattach','keepold','allversions','export','sendmessageonly','group','ref']);
 3893:   my $group = $env{'form.group'};
 3894:   my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3895:   my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3896: 
 3897:   my %attachmax = (
 3898:                     text => &mt('(128 KB max size)'),
 3899:                     num  => 131072,
 3900:                   );
 3901:   if ($env{'form.editdisc'}) {
 3902:       if (!(&editing_allowed($env{'form.editdisc'},$group))) {
 3903:           my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 3904:           my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
 3905:           my $feedurl=&Apache::lonnet::clutter($url);
 3906:           &redirect_back($r,$feedurl,&mt('Editing not permitted').'<br />',                     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3907:                     undef,undef,undef,$group);
 3908:           return OK;
 3909:       }
 3910:   } 
 3911:   if ($env{'form.discsymb'}) {
 3912:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.discsymb'});
 3913:       my $readkey = $symb.'_read';
 3914:       my $chgcount = 0;
 3915:       my %readinghash = &Apache::lonnet::get('nohist_'.$env{'request.course.id'}.'_discuss',[$readkey],$env{'user.domain'},$env{'user.name'});
 3916:       foreach my $key (keys(%env)) {
 3917:           if ($key =~ m/^form\.postunread_(\d+)/) {
 3918:               if ($readinghash{$readkey} =~ /\.$1\./) {
 3919:                   $readinghash{$readkey} =~ s/\.$1\.//;
 3920:                   $chgcount ++;
 3921:               }
 3922:           } elsif ($key =~ m/^form\.postread_(\d+)/) {
 3923:               unless ($readinghash{$readkey} =~ /\.$1\./) {
 3924:                   $readinghash{$readkey} .= '.'.$1.'.';
 3925:                   $chgcount ++;
 3926:               }
 3927:           }
 3928:       }
 3929:       if ($chgcount > 0) {
 3930:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3931: 			  \%readinghash,$env{'user.domain'},$env{'user.name'});
 3932:       }
 3933:       &redirect_back($r,$feedurl,&mt('Marked postings read/unread').'<br />',
 3934: 		     '0','0','','',$env{'form.previous'},'','','',
 3935:                      undef,undef,undef,$group);
 3936:       return OK;
 3937:   }
 3938:   if ($env{'form.allversions'}) {
 3939:       &Apache::loncommon::content_type($r,'text/html');
 3940:       &Apache::loncommon::no_cache($r);
 3941:       $r->send_http_header;
 3942: 
 3943:       # Breadcrumbs
 3944:       my $brcrum = [{'href' => '',
 3945:                      'text' => 'Discussion Post Versions'}];
 3946:       
 3947:       my %parms=();
 3948:       if ($env{'form.modal'} ne 'yes') { $parms{'bread_crumbs'} = $brcrum; }
 3949: 
 3950:       $r->print(&Apache::loncommon::start_page('Discussion Post Versions',undef,\%parms));
 3951: 
 3952:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.allversions'});
 3953:       ($symb, my $feedurl)=&get_feedurl_and_clean_symb($symb);
 3954:       my $ressymb = &wrap_symb($symb);
 3955:       my $seeid;
 3956:       if (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 3957:           $seeid = 1;
 3958:       }
 3959:       my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 3960:       if ($idx > 0) {
 3961:           my %messages = ();
 3962:           my %subjects = ();
 3963:           my %attachmsgs = ();
 3964:           my %allattachments = ();
 3965:           my %imsfiles = ();
 3966:           my ($screenname,$plainname,$showaboutme);
 3967:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3968:                                                $cdom,$cnum);
 3969:           $r->print(&get_post_contents(\%contrib,$idx,$seeid,$seehidden,'allversions',\%messages,\%subjects,\%allattachments,\%attachmsgs,\%imsfiles,\$screenname,\$plainname,\$showaboutme));
 3970:       }
 3971:       $r->print(&Apache::loncommon::end_page());
 3972:       return OK;
 3973:   }
 3974:   if ($env{'form.posterlist'}) {
 3975:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3976:       &print_showposters($r,$symb,$env{'form.previous'},$feedurl,
 3977: 			 $env{'form.sortposts'});
 3978:       return OK;
 3979:   }
 3980:   if ($env{'form.userpick'}) {
 3981:       my @posters = &Apache::loncommon::get_env_multiple('form.stuinfo');
 3982:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.userpick'});
 3983:       my $numpicks = @posters;
 3984:       my %discinfo;
 3985:       $discinfo{$symb.'_userpick'} = join('&',@posters);
 3986:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3987: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 3988:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3989: 		     '',$env{'form.previous'},$env{'form.sortposts'},'','','',
 3990: 		     '',$numpicks,$group);
 3991:       return OK;
 3992:   }
 3993:   if ($env{'form.applysort'}) {
 3994:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3995:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3996: 		     '',$env{'form.previous'},$env{'form.sortposts'},
 3997: 		     $env{'form.rolefilter'},$env{'form.statusfilter'},
 3998: 		     $env{'form.sectionpick'},$env{'form.grouppick'},
 3999:                      undef,$group);
 4000:       return OK;
 4001:   } elsif ($env{'form.cmd'} eq 'sortfilter') {
 4002:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 4003:       &print_sortfilter_options($r,$symb,$env{'form.previous'},$feedurl);
 4004:       return OK;
 4005:   } elsif ($env{'form.navtime'}) {
 4006:       my %discinfo = ();
 4007:       my @resources = ();
 4008:       if (defined($env{'form.navmaps'})) {
 4009:           if ($env{'form.navmaps'} =~ /:/) {
 4010:               @resources = split(/:/,$env{'form.navmaps'});
 4011:           } else {
 4012:               @resources = ("$env{'form.navmaps'}");
 4013:           }
 4014:       } else {
 4015:           &has_discussion(\@resources);
 4016:       }
 4017:       my $numitems = @resources;
 4018:       my $feedurl = '/adm/navmaps';
 4019:       if ($env{'form.navurl'}) { $feedurl .= '?'.$env{'form.navurl'}; }
 4020:       my %lt = &Apache::lonlocal::texthash(
 4021:           'twnp' => 'There are currently no resources or discussion boards with unread discussion postings.'
 4022:       );       
 4023:       foreach my $res (@resources) {
 4024:           my $ressymb=$res;
 4025: 	  &Apache::lonenc::check_decrypt(\$ressymb);
 4026:           my $lastkey = $ressymb.'_lastread';
 4027:           $discinfo{$lastkey} = $env{'form.navtime'};
 4028:       }
 4029:       my $textline = '<b>'.
 4030:                      &mt('Marked "New" posts as read in a total of [_1] resources/discussion boards.',
 4031:                          $numitems).
 4032:                      '</b>';
 4033:       if ($numitems > 0) {
 4034:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 4035: 			     \%discinfo,$env{'user.domain'},$env{'user.name'});
 4036:       } else {
 4037:           $textline = "<b>$lt{'twnp'}</b>";
 4038:       }
 4039:       &Apache::loncommon::content_type($r,'text/html');
 4040:       $r->send_http_header;
 4041:       my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 4042:       my %onload;
 4043: 
 4044:       my $start_page=
 4045: 	  &Apache::loncommon::start_page('New posts marked as read',undef,
 4046: 					 {'redirect'    => [2,$feedurl],
 4047: 					  'only_body'   => 1,
 4048: 					  'add_entries' => \%onload});
 4049:       my $end_page = &Apache::loncommon::end_page();
 4050:       $r->print (<<ENDREDIR);
 4051: $start_page
 4052: <img align="right" src="$logo" />
 4053: $textline
 4054: <form name="reldt" action="$feedurl" target="loncapaclient">
 4055: </form>
 4056: <br />
 4057: $end_page
 4058: ENDREDIR
 4059:       return OK;
 4060:   } elsif ($env{'form.modifydisp'}) {
 4061:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.modifydisp'});
 4062:       my ($dispchgA,$dispchgB,$markchg,$toggchg) = 
 4063: 	  split(/_/,$env{'form.changes'});
 4064:       &print_display_options($r,$symb,$env{'form.previous'},$dispchgA,
 4065: 			     $dispchgB,$markchg,$toggchg,$feedurl);
 4066:       return OK;
 4067:   } elsif ($env{'form.markondisp'} || $env{'form.markonread'} ||
 4068: 	   $env{'form.allposts'}   || $env{'form.onlyunread'} ||
 4069: 	   $env{'form.onlyunmark'} || $env{'form.toggoff'}    ||
 4070: 	   $env{'form.toggon'}     || $env{'form.markread'}) {
 4071:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 4072:       my %discinfo;
 4073: # ------------------------ Modify setting for read/unread toggle for each post 
 4074:       if ($env{'form.toggoff'}) { $discinfo{$symb.'_readtoggle'}=0; }
 4075:       if ($env{'form.toggon'})  { $discinfo{$symb.'_readtoggle'}=1; }
 4076: # --------- Modify setting for identification of 'NEW' posts in this discussion
 4077:       if ($env{'form.markondisp'}) {
 4078: 	  $discinfo{$symb.'_lastread'} = time;
 4079: 	  $discinfo{$symb.'_markondisp'} = 1;
 4080:       }
 4081:       if ($env{'form.markonread'}) {
 4082: 	  if ( $env{'form.previous'} > 0 ) {
 4083: 	      $discinfo{$symb.'_lastread'} = $env{'form.previous'};
 4084: 	  }
 4085: 	  $discinfo{$symb.'_markondisp'} = 0;
 4086:       }
 4087: # --------------------------------- Modify display setting for this discussion 
 4088:       if ($env{'form.allposts'}) {
 4089: 	  $discinfo{$symb.'_showonlyunread'} = 0;
 4090: 	  $discinfo{$symb.'_showonlyunmark'} = 0;
 4091:       }
 4092:       if ($env{'form.onlyunread'}) { $discinfo{$symb.'_showonlyunread'} = 1;  }
 4093:       if ($env{'form.onlyunmark'}) { $discinfo{$symb.'_showonlyunmark'} = 1;  }
 4094: # ----------------------------------------------------- Mark new posts not NEW 
 4095:       if ($env{'form.markread'})   { $discinfo{$symb.'_lastread'} = time; }
 4096:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 4097: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 4098:       my $previous=$env{'form.previous'};
 4099:       if ($env{'form.markondisp'}) { $previous=undef; }
 4100:       &redirect_back($r,$feedurl,&mt('Changed display status').'<br />',
 4101: 		     '0','0','','',$previous,'','','','','','',$group);
 4102:       return OK;
 4103:   } elsif (($env{'form.hide'}) || ($env{'form.unhide'})) {
 4104: # ----------------------------------------------------------------- Hide/unhide
 4105:       my $entry=$env{'form.hide'}?$env{'form.hide'}:$env{'form.unhide'};
 4106:       my ($symb,$idx)=split(/\:\:\:/,$entry);
 4107:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4108:       my $ressymb = &wrap_symb($symb);
 4109: 
 4110:       my $seehidden = &can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum);
 4111:       unless (($seehidden) || (&editing_allowed($env{'form.hide'},$group))) {
 4112:           &redirect_back($r,$feedurl,&mt('Hiding not permitted').'<br />',
 4113:                          '0','0','','',$env{'form.previous'},'','','','',
 4114:                          undef,undef,$group,);
 4115:           return OK;
 4116:       }
 4117: 
 4118:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4119:                                            $cdom,$cnum);
 4120: 
 4121:       my $currenthidden=$contrib{'hidden'};
 4122:       my $currentstudenthidden=$contrib{'studenthidden'};
 4123: 
 4124:       if ($env{'form.hide'}) {
 4125: 	  $currenthidden.='.'.$idx.'.';
 4126: 	  unless ($seehidden) {
 4127: 	      $currentstudenthidden.='.'.$idx.'.';
 4128: 	  }
 4129:       } else {
 4130: 	  $currenthidden=~s/\.$idx\.//g;
 4131:       }
 4132:       my %newhash=('hidden' => $currenthidden);
 4133:       if ( ($env{'form.hide'}) && (!$seehidden) ) {
 4134: 	  $newhash{'studenthidden'} = $currentstudenthidden;
 4135:       }
 4136:       if ($env{'form.hide'}) {
 4137:           my $changelast = 0;
 4138:           my $newlast;
 4139:           ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 4140:           if ($changelast) {
 4141:               &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 4142:                                    $cdom,$cnum);
 4143:           }
 4144:       }
 4145:       my $result;
 4146:       if (&Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 4147:                                  $cdom,$cnum) eq 'ok') {
 4148:           my $prefix=$symb.':'.$idx.':';
 4149:           my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4150:                                           '^'.$prefix);
 4151:           my ($totallikes,$totalunlikes);
 4152:           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4153:               $totallikes = scalar(keys(%{$likes{$prefix.'likers'}}));
 4154:           }
 4155:           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4156:               $totalunlikes = scalar(keys(%{$likes{$prefix.'unlikers'}}));
 4157:           }
 4158:           if ($totallikes || $totalunlikes) {
 4159:               my ($chglikes,$chgunlikes,$context);
 4160:               if ($env{'form.hide'}) {
 4161:                   $chglikes = -1 * $totallikes;
 4162:                   $chgunlikes = -1 * $totalunlikes;
 4163:                   $context = 'hide';
 4164:               } else {
 4165:                   $chglikes = $totallikes;
 4166:                   $chgunlikes = $totalunlikes;
 4167:                   $context = 'unhide';
 4168:               }
 4169:               &storediscussionlikes($chglikes,$chgunlikes,
 4170:                                     $contrib{$idx.':sendername'},
 4171:                                     $contrib{$idx.':senderdomain'},
 4172:                                     $env{'request.course.id'},
 4173:                                     $context);
 4174:           
 4175:           }
 4176:           $result = &mt('Changed discussion status');
 4177:       } else {
 4178:           $result = &mt('Discussion status unchanged'); 
 4179:       }
 4180:       &redirect_back($r,$feedurl,$result.'<br />','0','0','','',
 4181: 		     $env{'form.previous'},undef,undef,undef,
 4182:                      undef,undef,undef,$group);
 4183:       return OK;
 4184:   } elsif (($env{'form.like'}) || ($env{'form.unlike'})) {
 4185: # ----------------------------------------------------------------- Like/unlike
 4186:       my $entry=$env{'form.like'}?$env{'form.like'}:$env{'form.unlike'};
 4187:       my ($symb,$idx)=split(/\:\:\:/,$entry);
 4188:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4189:       my $result;
 4190:       if ($idx > 0) {
 4191:           my $realsymb = &get_realsymb($symb);
 4192:           my $status='OPEN';
 4193:           if ($Apache::lonhomework::parsing_a_problem ||
 4194:               $Apache::lonhomework::parsing_a_task) {
 4195:               $status=$Apache::inputtags::status[-1];
 4196:           }
 4197:           if (&discussion_vote_available($status,$realsymb)) {
 4198:               my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4199:                                                    $cdom,$cnum);
 4200:               my $ownpost;
 4201:               if (($contrib{$idx.':sendername'} eq $env{'user.name'}) && 
 4202:                   ($contrib{$idx.':senderdomain'} eq $env{'user.domain'})) {
 4203:                   $ownpost = 1;
 4204:               }
 4205:               if ($ownpost || $contrib{$idx.':hidden'} || $contrib{$idx.':deleted'}) {
 4206:                   $result = &mt('Vote not registered.').' ';
 4207:               }
 4208:               if ($ownpost) {
 4209:                   $result .= &mt('No voting for your own posts.');
 4210:               } elsif ($contrib{$idx.':hidden'}) {
 4211:                   $result .= &mt('No voting for hidden posts.');
 4212:               } elsif ($contrib{$idx.':deleted'}) {
 4213:                   $result .= &mt('No voting for deleted posts.');
 4214:               } else {
 4215: #
 4216: # Likes and unlikes are in db-file "disclikes" of the course
 4217: # The prefix is the $symb to identify the resource discussion,
 4218: # and the $idx to identify the entry
 4219: #
 4220:                   my $prefix=$symb.':'.$idx.':';
 4221:                   my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4222:                                                   '^'.$prefix);
 4223: 
 4224: # Get current like or unlike status for the $idx for this user.
 4225:                   my $thisuser=$env{'user.name'}.':'.$env{'user.domain'};
 4226:                   my ($userlikes,$userunlikes);
 4227:                   if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4228:                       if (exists($likes{$prefix.'likers'}{$thisuser})) {
 4229:                           $userlikes = 1;
 4230:                       }
 4231:                   }
 4232:                   if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4233:                       if (exists($likes{$prefix.'unlikers'}{$thisuser})) {
 4234:                           $userunlikes = 1;
 4235:                       }
 4236:                   }
 4237: # Get the current "likes" count
 4238:                   my $likescount=$likes{$prefix.'likes'};
 4239: # Find out if they already voted
 4240: # Users cannot like a post twice, or unlike it twice.
 4241: # They can change their mind, though.
 4242:                   my $alreadyflag=0;
 4243:                   my $votetype;
 4244:                   if ($env{'form.like'}) {
 4245:                       if ($userlikes) {
 4246:                           $alreadyflag=1;
 4247:                       } elsif ($userunlikes) {
 4248:                           delete($likes{$prefix.'unlikers'}{$thisuser});
 4249:                           $votetype = 'switch';
 4250:                           $likescount++;
 4251:                       } else {
 4252:                           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4253:                               $likes{$prefix.'likers'}{$thisuser} = 1;
 4254:                           } else {
 4255:                               $likes{$prefix.'likers'} = {$thisuser => 1};
 4256:                           }
 4257:                           $likescount++;
 4258:                       }
 4259:                   } else {
 4260:                       if ($userunlikes) {
 4261:                           $alreadyflag=1;
 4262:                       } elsif ($userlikes) {
 4263:                           delete($likes{$prefix.'likers'}{$thisuser});
 4264:                           $votetype = 'switch';
 4265:                           $likescount--;
 4266:                       } else {
 4267:                           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4268:                               $likes{$prefix.'unlikers'}{$thisuser} = 1;
 4269:                           } else {
 4270:                               $likes{$prefix.'unlikers'} = {$thisuser => 1};
 4271:                           }
 4272:                           $likescount--;
 4273:                       }
 4274:                   }
 4275: # $alreadyflag would be 1 if they tried to double-like or double-unlike
 4276:                   if ($alreadyflag) {
 4277:                       if ($env{'form.like'}) {
 4278:                           $result= &mt("'Like' already registered");
 4279:                       } else {
 4280:                           $result= &mt("'Unlike' already registered");
 4281:                       }
 4282:                   } else {
 4283:                       my %newhash=($prefix.'likes'    => $likescount,
 4284:                                    $prefix.'likers'   => $likes{$prefix.'likers'},
 4285:                                    $prefix.'unlikers' => $likes{$prefix.'unlikers'});
 4286: # Store data in db-file "disclikes"
 4287:                       if (&Apache::lonnet::put('disclikes',\%newhash,$cdom,$cnum) eq 'ok') {
 4288: # Also store with the person who posted the liked/unliked entry
 4289:                           my ($chglike,$chgunlike);
 4290:                           if ($env{'form.like'}) {
 4291:                               if ($votetype eq 'switch') {
 4292:                                   $chglike = 0;
 4293:                                   $chgunlike = -1;
 4294:                               } else {
 4295:                                   $chglike = 1;
 4296:                                   $chgunlike = 0;
 4297:                               } 
 4298:                               &storediscussionlikes($chglike,$chgunlike,
 4299:                                                     $contrib{$idx.':sendername'},
 4300:                                                     $contrib{$idx.':senderdomain'},
 4301:                                                     $env{'request.course.id'},'like');
 4302:                               $result=&mt("Registered 'Like'");
 4303:                           } else {
 4304:                               if ($votetype eq 'switch') {
 4305:                                   $chglike = -1;
 4306:                                   $chgunlike = 0;
 4307:                               } else {
 4308:                                   $chglike = 0;
 4309:                                   $chgunlike = 1;
 4310:                               }
 4311:                              &storediscussionlikes($chglike,$chgunlike,
 4312:                                                    $contrib{$idx.':sendername'},
 4313:                                                    $contrib{$idx.':senderdomain'},
 4314:                                                    $env{'request.course.id'},'unlike');
 4315:                              $result=&mt("Registered 'Unlike'");
 4316:                           }
 4317:                       } else {
 4318: # Oops, something went wrong
 4319:                           $result=&mt("Failed to register vote");
 4320:                       }
 4321:                   }
 4322:               }
 4323:           } else {
 4324:               $result=&mt('Voting unavailable for this discussion');
 4325:           }
 4326:       } else {
 4327:           $result=&mt('Invalid post number'); 
 4328:       }
 4329:       &redirect_back($r,$feedurl,$result.'<br />',
 4330:                      '0','0','','',$env{'form.previous'},undef,undef,undef,
 4331:                      undef,undef,undef,$group);
 4332:       return OK;
 4333:   } elsif ($env{'form.cmd'}=~/^(threadedoff|threadedon)$/) {
 4334:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 4335:       if ($env{'form.cmd'} eq 'threadedoff') {
 4336: 	  &Apache::lonnet::put('environment',{'unthreadeddiscussion' => 'on'});
 4337: 	  &Apache::lonnet::appenv({'environment.unthreadeddiscussion' => 'on'});
 4338: 	  &Apache::lonnet::del('environment',['threadeddiscussion']);
 4339: 	  &Apache::lonnet::delenv('environment.threadeddiscussion');
 4340:       } else {
 4341: 	  &Apache::lonnet::put('environment',{'threadeddiscussion' => 'on'});
 4342: 	  &Apache::lonnet::appenv({'environment.threadeddiscussion' => 'on'});
 4343: 	  &Apache::lonnet::del('environment',['unthreadeddiscussion']);
 4344: 	  &Apache::lonnet::delenv('environment.unthreadeddiscussion');
 4345:       }
 4346:       &redirect_back($r,$feedurl,&mt('Changed discussion view mode').'<br />',
 4347: 		     '0','0','','',$env{'form.previous'},undef,undef,undef,
 4348:                      undef,undef,undef,$group);
 4349:       return OK;
 4350:   } elsif ($env{'form.deldisc'}) {
 4351: # --------------------------------------------------------------- Hide for good
 4352:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.deldisc'});
 4353:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 4354:       my $ressymb=&wrap_symb($symb);
 4355: 
 4356:       unless (&can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum)) {
 4357:           &redirect_back($r,$feedurl,&mt('Deletion not permitted').'<br />',
 4358:                          '0','0','','',$env{'form.previous'},'','','','',
 4359:                          undef,undef,$group);
 4360:           return OK;
 4361:       }
 4362:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4363:                                            $cdom,$cnum);
 4364:       my ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 4365:       if ($changelast) {
 4366:           &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 4367:                                $cdom,$cnum);
 4368:       }
 4369:       my %newhash=('deleted' => $contrib{'deleted'}.".$idx.");
 4370: 
 4371:       my $result;
 4372:       if (&Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 4373:                              $cdom,$cnum) eq 'ok') {
 4374:           $result = &mt('Changed discussion status');
 4375:           my $prefix=$symb.':'.$idx.':';
 4376:           my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,
 4377:                                           '^'.$prefix);
 4378:           my ($totallikes,$totalunlikes);
 4379:           if (ref($likes{$prefix.'likers'}) eq 'HASH') {
 4380:               $totallikes = scalar(keys(%{$likes{$prefix.'likers'}}));
 4381:           }
 4382:           if (ref($likes{$prefix.'unlikers'}) eq 'HASH') {
 4383:               $totalunlikes = scalar(keys(%{$likes{$prefix.'unlikers'}}));
 4384:           }
 4385:           if ($totallikes || $totalunlikes) {
 4386:               my $chglikes = -1 * $totallikes;
 4387:               my $chgunlikes = -1 * $totalunlikes;
 4388:               &storediscussionlikes($chglikes,$chgunlikes,
 4389:                                     $contrib{$idx.':sendername'},
 4390:                                     $contrib{$idx.':senderdomain'},
 4391:                                     $env{'request.course.id'},
 4392:                                     'delete');
 4393:           }
 4394:       } else {
 4395:           $result = &mt('Discussion status unchanged');
 4396:       } 
 4397:       &redirect_back($r,$feedurl,$result.'<br />','0','0','','',
 4398: 		     $env{'form.previous'},undef,undef,undef,
 4399:                      undef,undef,undef,$group);
 4400:       return OK;
 4401:   } elsif ($env{'form.preview'}) {
 4402: # -------------------------------------------------------- User wants a preview
 4403:       &show_preview($r);
 4404:       return OK;
 4405:   } elsif ($env{'form.attach'}) {
 4406: # -------------------------------------------------------- Work on attachments
 4407:       &Apache::loncommon::content_type($r,'text/html');
 4408:       $r->send_http_header;
 4409:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','addnewattach','delnewattach','timestamp','numoldver','idx','discuss','blog']);
 4410:       my (@currnewattach,@currdelold,@keepold,$toolarge);
 4411:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 4412:       if (exists($env{'form.addnewattach.filename'})) {
 4413:           if (length($env{'form.addnewattach'})<=$attachmax{'num'}) {
 4414:               my $subdir = 'feedback/'.$env{'form.timestamp'};
 4415:               my $newattachment=&Apache::lonnet::userfileupload('addnewattach',undef,$subdir);
 4416: 	      push(@currnewattach, $newattachment);
 4417:           } else {
 4418:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 4419:           }
 4420:       }
 4421:       my $attachmenturls;
 4422:       my ($symb) = &get_feedurl_and_clean_symb($env{'form.attach'});
 4423:       my $idx = $env{'form.idx'};
 4424:       if ($idx) {
 4425:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4426:                                                $cdom,$cnum);
 4427:           $attachmenturls = $contrib{$idx.':attachmenturl'};
 4428:       }
 4429:       &modify_attachments($r,\@currnewattach,\@currdelold,$symb,$idx,
 4430: 			  $attachmenturls,$attachmax{'text'},$toolarge);
 4431:       return OK;
 4432:   } elsif ($env{'form.export'}) {
 4433:       &Apache::loncommon::content_type($r,'text/html');
 4434:       $r->send_http_header;
 4435:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.export'});
 4436:       my $mode='board';
 4437:       my $status='OPEN';
 4438:       my $previous=$env{'form.previous'};
 4439:       if ($feedurl =~ /$LONCAPA::assess_re/) {
 4440:           $mode='problem';
 4441:           $status=$Apache::inputtags::status[-1];
 4442:       }
 4443:        
 4444:       my $discussion = &list_discussion($mode,$status,$symb); 
 4445:       my $start_page = 
 4446: 	  &Apache::loncommon::start_page('Resource Feedback and Discussion');
 4447:       my $end_page = 
 4448: 	  &Apache::loncommon::end_page();
 4449:       $r->print($start_page.$discussion.$end_page);
 4450:       return OK;
 4451: 
 4452:   } elsif ($env{'form.undeleteall'}) {
 4453:       &Apache::loncommon::content_type($r,'text/html');
 4454:       $r->send_http_header;
 4455:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.undeleteall'});
 4456:       my $ressymb=&wrap_symb($symb);
 4457:       $r->print(&Apache::loncommon::start_page('Undelete all deleted discussion entries'));
 4458:       if (&can_see_hidden('',$ressymb,$feedurl,$group,$cdom,$cnum)) {
 4459:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 4460:                                                 $cdom,$cnum);
 4461:           $contrib{'deleted'} =~ s/^\.//;
 4462:           $contrib{'deleted'} =~ s/\.$//;
 4463:           my $confirm_msg;
 4464:           if ($contrib{'deleted'} ne '') {
 4465:               if (&Apache::lonnet::store({'deleted' => ''},$symb,$env{'request.course.id'},
 4466:                                           $cdom,$cnum) eq 'ok') {
 4467:                   my %likes=&Apache::lonnet::dump('disclikes',$cdom,$cnum,'^'.$symb.':');
 4468:                   my @ids = split(/\.\./,$contrib{'deleted'});
 4469:                   my (%chglikes,%chgunlikes);
 4470:                   foreach my $idx (@ids) {
 4471:                       my $uname = $contrib{$idx.':sendername'};
 4472:                       my $udom = $contrib{$idx.':senderdomain'};
 4473:                       my ($totallikes,$totalunlikes);
 4474:                       if (ref($likes{$symb.':'.$idx.':likers'}) eq 'HASH') {
 4475:                           $totallikes = scalar(keys(%{$likes{$symb.':'.$idx.':likers'}}));
 4476:                       }
 4477:                       if (ref($likes{$symb.':'.$idx.':unlikers'}) eq 'HASH') {
 4478:                           $totalunlikes = scalar(keys(%{$likes{$symb.':'.$idx.':unlikers'}}));
 4479:                       }
 4480:                       if ($totallikes || $totalunlikes) {
 4481:                           $chglikes{$uname.':'.$udom} += $totallikes;
 4482:                           $chgunlikes{$uname.':'.$udom} += $totalunlikes;
 4483:                       }
 4484:                   }
 4485:                   foreach my $user (keys(%chglikes)) {
 4486:                       my ($uname,$udom) = split(/:/,$user);
 4487:                       &storediscussionlikes($chglikes{$user},$chgunlikes{$user},
 4488:                                             $uname,$udom,$env{'request.course.id'},
 4489:                                             'undelete');
 4490:                   }
 4491:                   $confirm_msg = &Apache::lonhtmlcommon::confirm_success(&mt("Undeleted all entries"));
 4492:               } else {
 4493:                   $confirm_msg = &Apache::lonhtmlcommon::confirm_success(&mt("Failed to undelete entries"),1);
 4494:               }
 4495:           } else {
 4496:               $confirm_msg = &Apache::lonhtmlcommon::confirm_success(&mt("No entries to undelete"),1);
 4497:           }
 4498:           $r->print(
 4499:               '<br />'
 4500:              .&Apache::loncommon::confirmwrapper($confirm_msg)
 4501:              .&Apache::lonhtmlcommon::actionbox(
 4502:                   ["<a href='$feedurl'>".&mt("Return and reload")."</a>"])
 4503:           );
 4504:       }
 4505:       $r->print(&Apache::loncommon::end_page());
 4506:       return OK;
 4507:   } else {
 4508: # ------------------------------------------------------------- Normal feedback
 4509:       my $feedurl=$env{'form.postdata'};
 4510:       $feedurl=~s/^https?\:\/\///;
 4511:       $feedurl=~s/^$ENV{'SERVER_NAME'}//;
 4512:       $feedurl=~s/^$ENV{'HTTP_HOST'}//;
 4513:       $feedurl=~s/\?.+$//;
 4514: 
 4515:       my $symb;
 4516:       if ($env{'form.replydisc'}) {
 4517: 	  $symb=(split(/\:\:\:/,$env{'form.replydisc'}))[0];
 4518:       } elsif ($env{'form.editdisc'}) {
 4519: 	  $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 4520:       } elsif ($env{'form.origpage'}) {
 4521: 	  $symb=""; 
 4522:       } elsif ($env{'form.sendmessageonly'}) {
 4523:           $symb=(split(/\:\:\:/,$env{'form.sendmessageonly'}))[0];
 4524:       } else {
 4525: 	  $symb=&Apache::lonnet::symbread($feedurl);
 4526:       }
 4527:       unless ($symb) {
 4528: 	  $symb=$env{'form.symb'};
 4529:       }
 4530:       if (defined($symb)) {
 4531:           ($symb,$feedurl)=&get_feedurl_and_clean_symb($symb);
 4532:       } else {
 4533:           # backward compatibility (bulletin boards used to be 'wrapped')
 4534:           &Apache::lonenc::check_decrypt(\$feedurl);
 4535:           &dewrapper(\$feedurl);
 4536:       }
 4537:       my $goahead=1;
 4538:       if ($feedurl=~/$LONCAPA::assess_re/) {
 4539: 	  unless ($symb) { $goahead=0; }
 4540:       }
 4541:       if (!$goahead) {
 4542:           # Ambiguous Problem Resource
 4543: 	  $r->internal_redirect('/adm/ambiguous');
 4544: 	  return OK;
 4545:       }
 4546: # Go ahead with feedback, no ambiguous reference
 4547:       unless (
 4548: 	  (
 4549: 	   ($feedurl=~m:^/res:) && ($feedurl!~m:^/res/adm:)
 4550: 	   ) 
 4551: 	  || 
 4552: 	  ($env{'request.course.id'} && ($feedurl!~m:^/adm:))
 4553: 	  ||
 4554: 	  ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
 4555: 	  ) {
 4556: 	  &Apache::loncommon::content_type($r,'text/html');
 4557: 	  $r->send_http_header;
 4558: # Unable to give feedback
 4559:           &Apache::lonenc::check_encrypt(\$feedurl);
 4560: 	  &no_redirect_back($r,$feedurl);
 4561: 	  return OK;
 4562:       }
 4563: # --------------------------------------------------- Print login screen header
 4564:       unless ($env{'form.sendit'}) {
 4565:           &Apache::lonenc::check_encrypt(\$feedurl);
 4566: 	  &Apache::loncommon::content_type($r,'text/html');
 4567: 	  $r->send_http_header;
 4568:           if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 4569:               my ($blocked,$blocktext) = 
 4570:                      &Apache::loncommon::blocking_status('boards');
 4571:               if ($blocked) {
 4572:                   $r->print(&blocked_reply_or_edit($blocktext));
 4573:                   return OK;
 4574:               }
 4575:           }
 4576: 	  my $options=&screen_header($feedurl,$symb,$group);
 4577: 	  if ($options) {
 4578: 	      &mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});
 4579: 	  } else {
 4580: 	      &fail_redirect($r,$feedurl);
 4581: 	  }
 4582: 	  return OK;
 4583:       }
 4584:       
 4585: # Get previous user input
 4586:       my $prevattempts=&Apache::loncommon::get_previous_attempt(
 4587:                                    $symb,$env{'user.name'},$env{'user.domain'},
 4588: 				   $env{'request.course.id'});
 4589: 
 4590: # Get output from resource
 4591:       &Apache::lonenc::check_encrypt(\$feedurl);
 4592:       my $usersaw=&resource_output($feedurl);
 4593: 
 4594: # Get resource answer (need to allow student to view grades for this to work)
 4595:       &Apache::lonnet::appenv({'allowed.vgr'=>'F'});
 4596:       my $usersymb = &Apache::lonenc::check_encrypt($symb);
 4597:       my $useranswer=
 4598:           &Apache::loncommon::get_student_answers(
 4599:               $usersymb,$env{'user.name'},$env{'user.domain'},
 4600:               $env{'request.course.id'});
 4601:       &Apache::lonnet::delenv('allowed.vgr');
 4602: # Get attachments, if any, and not too large
 4603:       my $attachmenturl='';
 4604:       my $toolarge='';
 4605:       if (($env{'form.origpage'}) || ($env{'form.editdisc'}) ||
 4606: 	  ($env{'form.replydisc'})) {
 4607: 	  my ($symb,$idx);
 4608: 	  if ($env{'form.replydisc'}) {
 4609: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 4610: 	  } elsif ($env{'form.editdisc'}) {
 4611: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 4612: 	  } elsif ($env{'form.origpage'}) {
 4613: 	      $symb = $env{'form.symb'};
 4614: 	  }
 4615: 	  &Apache::lonenc::check_decrypt(\$symb);
 4616: 	  my @currnewattach = ();
 4617: 	  my @deloldattach = ();
 4618: 	  my @keepold = ();
 4619: 	  &process_attachments(\@currnewattach,\@deloldattach,\@keepold);
 4620: 	  $symb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 4621: 	  $attachmenturl=&construct_attachmenturl(\@currnewattach,\@keepold,$symb,$idx);
 4622:       } elsif ($env{'form.attachment.filename'}) {
 4623: 	  if (length($env{'form.attachment'})<=$attachmax{'num'}) {
 4624:               my $now = time;
 4625:               my $subdir = 'feedback/'.$now;
 4626: 	      $attachmenturl=&Apache::lonnet::userfileupload('attachment',undef,$subdir);
 4627: 	  } else {
 4628:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 4629:           }
 4630:       }
 4631: # Filter HTML out of message (could be nasty)
 4632:       my $override;
 4633:       if ($env{'form.discuss'} =~ /^(?:author|question|course|policy)$/) {
 4634:           $override = 1;
 4635:       }
 4636:       my $message=&clear_out_html($env{'form.comment'},$override);
 4637: 
 4638: # Assemble email
 4639:       my ($email,$citations)=&assemble_email($message,$prevattempts,
 4640: 					     $usersaw,$useranswer);
 4641:  
 4642: # Who gets this?
 4643:       my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);
 4644: 
 4645: # Actually send mail
 4646:       my ($status,$numsent)=&send_msg(&clear_out_html($env{'form.subject'}),
 4647: 				      $feedurl,$email,$citations,
 4648: 				      $attachmenturl,$usersymb,%to);
 4649: 
 4650: # Discussion? Store that.
 4651:       my $numpost=0;
 4652:       if (  ($env{'form.discuss'} ne ''
 4653: 	     && $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)
 4654: 	   || $env{'form.anondiscuss'} ne '') {
 4655: 	  my $subject = &clear_out_html($env{'form.subject'});
 4656:           my $anonmode;
 4657:           if (&Apache::lonnet::allowed('pac',$env{'request.course.id'}.
 4658:              ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 4659: 	      $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
 4660:           }
 4661: 	  $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
 4662: 				  $subject,$group);
 4663: 	  $numpost++;
 4664:       }
 4665: 
 4666: # Add to blog?
 4667: 
 4668:       my $blog='';
 4669:       if ($env{'form.blog'}) {
 4670: 	  my $subject = &clear_out_html($env{'form.subject'});
 4671: 	  $status.=&Apache::lonrss::addentry($env{'user.name'},
 4672: 				    $env{'user.domain'},
 4673: 				    'CourseBlog_'.$env{'request.course.id'},
 4674: 				    $subject,$message,$feedurl,'public');
 4675:           if (&Apache::loncommon::course_type() eq 'Community') {
 4676:               $blog='<br />'.&mt('Added to my community blog').'<br />';
 4677:           } else {
 4678: 	      $blog='<br />'.&mt('Added to my course blog').'<br />';
 4679:           }
 4680:       }
 4681: 	  
 4682: # Receipt screen and redirect back to where came from
 4683:       &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},undef,undef,undef,undef,undef,undef,$group,$toolarge);
 4684:   }
 4685:   return OK;
 4686: }
 4687: 
 4688: sub blocked_reply_or_edit {
 4689:     my ($blocktext) = @_;
 4690:     return 
 4691:       &Apache::loncommon::start_page('Resource Feedback and Discussion').
 4692:       $blocktext.'<br /><br /><a href="javascript:history.go(-1)">'.
 4693:       &mt('Back to previous page').
 4694:       &Apache::loncommon::end_page();
 4695: } 
 4696: 
 4697: sub wrap_symb {
 4698:     my ($ressymb)=@_;
 4699:     if ($ressymb =~ /bulletin___\d+___/) {
 4700:         unless ($ressymb =~ m|bulletin___\d+___adm/wrapper|) {
 4701:             $ressymb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 4702:         }
 4703:     }
 4704:     return $ressymb;
 4705: }
 4706: 
 4707: sub dewrapper {
 4708:     my ($feedurl)=@_;
 4709:     if ($$feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
 4710:         $$feedurl=~s|^/adm/wrapper||;
 4711:     }
 4712: }
 4713: 
 4714: sub get_feedurl {
 4715:     my ($symb)=@_;
 4716:     my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
 4717:     my $feedurl = &Apache::lonnet::clutter($url);
 4718:     &dewrapper(\$feedurl);
 4719:     return $feedurl;
 4720: }
 4721: 
 4722: sub get_feedurl_and_clean_symb {
 4723:     my ($symb)=@_;
 4724:     &Apache::lonenc::check_decrypt(\$symb);
 4725: # backward compatibility (bulletin boards used to be 'wrapped')
 4726:     unless ($symb =~ m|bulletin___\d+___adm/wrapper|) {
 4727: 	$symb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 4728:     }
 4729:     my $feedurl = &get_feedurl($symb);
 4730:     return ($symb,$feedurl);
 4731: }
 4732: 
 4733: sub editing_allowed {
 4734:     my ($postid,$group) = @_;
 4735:     $postid = &unescape($postid);
 4736:     my $can_edit = 0;
 4737:     if ($group ne '') {
 4738:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4739:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4740:         if ($postid =~ m|^bulletin___\d+___adm/wrapper(/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard)|) {
 4741:             if (&check_group_priv($group,'egp') eq 'ok') {
 4742:                 $can_edit = 1;
 4743:             }
 4744:             return $can_edit;
 4745:         }     
 4746:     } 
 4747:     my $cid = $env{'request.course.id'};
 4748:     my $role = (split(/\./,$env{'request.role'}))[0];
 4749:     my $section = $env{'request.course.sec'};
 4750:     my $allow_editing_config = 
 4751: 	$env{'course.'.$cid.'.allow_discussion_post_editing'};
 4752:     if ($allow_editing_config =~ m/^\s*yes\s*$/i) {
 4753:         $can_edit = 1;
 4754:     } else {
 4755: 	foreach my $editor (split(/,/,$allow_editing_config)) {
 4756: 	    my ($editor_role,$editor_sec) = split(/:/,$editor);
 4757: 	    if ($editor_role eq $role
 4758: 		&& defined($editor_sec)
 4759: 		&& defined($section)
 4760: 		&& $editor_sec eq $section) {
 4761: 		$can_edit = 1;
 4762: 		last;
 4763: 	    }
 4764: 	    if ($editor_role eq $role
 4765: 		&& !defined($editor_sec)) {
 4766: 		$can_edit = 1;
 4767: 	    }
 4768: 	}
 4769:     }
 4770:     return $can_edit;
 4771: }
 4772: 
 4773: sub check_group_priv {
 4774:     my ($group,$grp_priv) = @_;
 4775:     foreach my $priv ('mdg','vcg') {
 4776:         my $checkcourse = $env{'request.course.id'}.
 4777:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'');
 4778:         if (&Apache::lonnet::allowed($priv,$checkcourse)) {
 4779:             return 'ok';
 4780:         }
 4781:     }
 4782:     if ($grp_priv && $group ne '') {
 4783:         if (&Apache::lonnet::allowed($grp_priv,$env{'request.course.id'}.'/'.$group)) {
 4784:             return 'ok';
 4785:         }
 4786:     }
 4787:     return '';
 4788: }
 4789: 
 4790: sub group_args { 
 4791:     my ($group) = @_;
 4792:     if ($group eq '') { return ''; }
 4793:     my $extra_args = '&amp;group='.$group;
 4794:     if (exists($env{'form.ref'})) {
 4795:         $extra_args .= '&amp;ref='.$env{'form.ref'};
 4796:     }
 4797:     return $extra_args;
 4798: }
 4799: 
 4800: sub get_resource_title {
 4801:     my ($symb,$feedurl) = @_;
 4802:     my ($restitle,$plainurl);
 4803:     if (defined($symb)) {
 4804:         my $plain_symb = &Apache::lonenc::check_decrypt($symb);
 4805:         $restitle = &Apache::lonnet::gettitle($plain_symb);
 4806:     }
 4807:     if (defined($feedurl)) {
 4808:         $plainurl = &Apache::lonenc::check_decrypt($feedurl);
 4809:     }
 4810:     if (!defined($restitle)) {
 4811:         if (defined($feedurl)) {
 4812:             $restitle = &Apache::lonnet::gettitle($plainurl);
 4813:         }
 4814:     }
 4815:     if ($plainurl ne $feedurl) {
 4816:         my ($plain_filename) = ($plainurl =~ m-/([^/]+)$-);
 4817:         if ($plain_filename eq $restitle) {
 4818:             $restitle = &mt('Untitled resource');
 4819:         }
 4820:     }
 4821:     if ($restitle eq '') {
 4822:         $restitle = &mt('Untitled resource');
 4823:     }
 4824:     return $restitle;
 4825: }
 4826: 
 4827: 1;
 4828: __END__
 4829: 
 4830: 
 4831: =pod
 4832: 
 4833: =head1 NAME
 4834: 
 4835: Apache::lonfeedback.pm
 4836: 
 4837: =head1 SYNOPSIS
 4838: 
 4839: Handles feedback from students to instructors and system administrators.
 4840: 
 4841: Provides a screenshot of the current resource, as well as previous attempts if the resource was a homework.
 4842: 
 4843: Used by lonmsg.pm.
 4844: 
 4845: This is part of the LearningOnline Network with CAPA project
 4846: described at http://www.lon-capa.org.
 4847: 
 4848: =head1 OVERVIEW
 4849: 
 4850: None
 4851: 
 4852: =head1 SUBROUTINES
 4853: 
 4854: =over
 4855: 
 4856: =item discussion_open()
 4857: 
 4858: =item discussion_visible()
 4859: 
 4860: =item discussion_vote_available()
 4861: 
 4862: =item get_realsymb()
 4863: 
 4864: =item list_discussion()
 4865: 
 4866: =item can_see_hidden()
 4867: 
 4868: =item discussion_link()
 4869: 
 4870: =item send_feedback_link()
 4871: 
 4872: =item send_message_link()
 4873: 
 4874: =item action_links_bar()
 4875: 
 4876: =item postingform_display()
 4877: 
 4878: =item build_posting_display
 4879: 
 4880: =item filter_regexp()
 4881: 
 4882: =item get_post_contents()
 4883: 
 4884: =item replicate_attachments()
 4885: 
 4886: =item mail_screen()
 4887: 
 4888: =item print_display_options()
 4889: 
 4890: =item print_sortfilter_options()
 4891: 
 4892: =item print_showposters()
 4893: 
 4894: =item get_post_versions()
 4895: 
 4896: =item get_post_attachments()
 4897: 
 4898: =item fail_redirect()
 4899: 
 4900: =item redirect_back()
 4901: 
 4902: =item no_redirect_back()
 4903: 
 4904: =item screen_header()
 4905: 
 4906: =item resource_output()
 4907: 
 4908: =item clear_out_html()
 4909: 
 4910: =item assemble_email()
 4911: 
 4912: =item feedback_available()
 4913: 
 4914: =item send_msg()
 4915: 
 4916: =item adddiscuss()
 4917: 
 4918: =item get_discussion_info()
 4919: 
 4920: =item show_preview()
 4921: 
 4922: =item newline_to_br()
 4923: 
 4924: =item tidy_html()
 4925: 
 4926: =item generate_preview_button()
 4927: 
 4928: =item modify_attachments()
 4929: 
 4930: =item process_attachments()
 4931: 
 4932: =item generate_attachments_button()
 4933: 
 4934: =item extract_attachments()
 4935: 
 4936: =item construct_attachmenturl()
 4937: 
 4938: =item add_blog_checkbox()
 4939: 
 4940: =item has_discussion()
 4941: 
 4942: =item sort_filter_names()
 4943: 
 4944: =item handler()
 4945: 
 4946: =item blocked_reply_or_edit()
 4947: 
 4948: =item wrap_symb()
 4949: 
 4950: =item dewrapper()
 4951: 
 4952: =item get_feedurl()
 4953: 
 4954: =item get_feedurl_and_clean_symb()
 4955: 
 4956: =item editing_allowed()
 4957: 
 4958: =item check_group_priv()
 4959: 
 4960: =item group_args()
 4961: 
 4962: =item get_resource_title()
 4963: 
 4964: =back
 4965: 
 4966: =cut

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