File:  [LON-CAPA] / loncom / interface / lonfeedback.pm
Revision 1.255: download - view: text, annotated - select for diffs
Fri Jun 6 05:24:28 2008 UTC (15 years, 11 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_8_X, version_2_7_X, version_2_7_1, version_2_7_0, version_2_6_99_1, version_2_6_99_0, HEAD
Bugs: 3706 5677 5678.
- Single attachment allowed in messages (whether sent via COM or FDBK).
- Warning displayed if uploaded file exceeded maximum size allowed for attachments (and was therefors discarded).
- Attachments included in forwarded messages (from both single message display, or from forward of multiple messages from folder display).
- Max size definition moved to a single location in lonmsgdisplay.pm and lonfeedback.pm
- Some appearance changes in modify_attachments display (for attachements associated with discussion posts).
- Subdirectory for storage of attachment file in sender's userfiles directory changed from feedback to feedback/$now (i.e., current UNIX time) to lessen likelihood of file being overwritten by a sequent message with an attachment of the same name.

    1: # The LearningOnline Network
    2: # Feedback
    3: #
    4: # $Id: lonfeedback.pm,v 1.255 2008/06/06 05:24:28 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 Apache::lonspeller();
   45: use Apache::longroup;
   46: use Cwd;
   47: use LONCAPA;
   48: 
   49: sub discussion_open {
   50:     my ($status,$symb)=@_;
   51:     if ($env{'request.role.adv'}) { return 1; }
   52:     if (defined($status) &&
   53: 	!($status eq 'CAN_ANSWER' || $status eq 'CANNOT_ANSWER'
   54: 	  || $status eq 'OPEN')) {
   55: 	return 0;
   56:     }
   57:     my $close=&Apache::lonnet::EXT('resource.0.discussend',$symb);
   58:     if (defined($close) && $close ne '' && $close < time) {
   59: 	return 0;
   60:     }
   61:     return 1;
   62: }
   63: 
   64: sub discussion_visible {
   65:     my ($status)=@_;
   66:     if (not &discussion_open($status)) {
   67: 	my $hidden=&Apache::lonnet::EXT('resource.0.discusshide');
   68: 	if (lc($hidden) eq 'yes' or $hidden eq '' or !defined($hidden))  {
   69: 	    if (!$env{'request.role.adv'}) { return 0; }
   70: 	}
   71:     }
   72:     return 1;
   73: }
   74: 
   75: sub list_discussion {
   76:     my ($mode,$status,$ressymb,$imsextras,$group)=@_;
   77:     unless ($ressymb) { $ressymb=&Apache::lonnet::symbread(); }
   78:     unless ($ressymb) { return ''; }
   79:     $ressymb=&wrap_symb($ressymb);
   80:     my $outputtarget=$env{'form.grade_target'};
   81:     if (defined($env{'form.export'})) {
   82: 	if($env{'form.export'}) {
   83:             $outputtarget = 'export';
   84:         }
   85:     }
   86:     if (defined($imsextras)) {
   87:         if ($$imsextras{'caller'} eq 'imsexport') {
   88:             $outputtarget = 'export';
   89:         }
   90:     }
   91:     if (not &discussion_visible($status)) {
   92:         if ($mode ne 'board') {
   93:             &Apache::lonenc::check_encrypt(\$ressymb); 
   94:             return '<br />'.&send_message_link($ressymb);
   95:         }
   96:     }
   97:     if ($group ne '' && $mode eq 'board') {
   98:         if (&check_group_priv($group,'vgb') ne 'ok') {
   99:             return '';
  100:         }
  101:     }
  102: 
  103:     my ($blocked,$blocktext) = 
  104:         &Apache::loncommon::blocking_status('boards');
  105:     if ($blocked) {
  106:         &Apache::lonenc::check_encrypt(\$ressymb);
  107:         if ($mode ne 'board') {
  108:             $blocktext.='<br />'.&send_message_link($ressymb);
  109:         }
  110:         return $blocktext; 
  111:     }
  112: 
  113:     my @bgcols = ("#cccccc","#eeeeee");
  114:     my $discussiononly=0;
  115:     if ($mode eq 'board') { $discussiononly=1; }
  116:     unless ($env{'request.course.id'}) { return ''; }
  117:     my $crs='/'.$env{'request.course.id'};
  118:     my $cid=$env{'request.course.id'};
  119:     if ($env{'request.course.sec'}) {
  120: 	$crs.='_'.$env{'request.course.sec'};
  121:     }
  122:     $crs=~s/\_/\//g;
  123:     my $encsymb=&Apache::lonenc::check_encrypt($ressymb);
  124:     my $viewgrades=(&Apache::lonnet::allowed('vgr',$crs)
  125: 		  && ($ressymb=~/\.(problem|exam|quiz|assess|survey|form|task)$/));
  126:     
  127:     my %usernamesort = ();
  128:     my %namesort =();
  129:     my %subjectsort = ();
  130: 
  131: # Get discussion display settings for this discussion
  132:     my $lastkey = $ressymb.'_lastread';
  133:     my $showkey = $ressymb.'_showonlyunread';
  134:     my $markkey = $ressymb.'_showonlyunmark',
  135:     my $visitkey = $ressymb.'_visit';
  136:     my $ondispkey = $ressymb.'_markondisp';
  137:     my $userpickkey = $ressymb.'_userpick';
  138:     my $toggkey = $ressymb.'_readtoggle';
  139:     my $readkey = $ressymb.'_read';
  140:     $ressymb=$encsymb;
  141:     my %dischash = &Apache::lonnet::get('nohist_'.$cid.'_discuss',[$lastkey,$showkey,$markkey,$visitkey,$ondispkey,$userpickkey,$toggkey,$readkey],$env{'user.domain'},$env{'user.name'});
  142:     my %discinfo = ();
  143:     my $showonlyunread = 0;
  144:     my $showunmark = 0; 
  145:     my $markondisp = 0;
  146:     my $prevread = 0;
  147:     my $previous = 0;
  148:     my $visit = 0;
  149:     my $newpostsflag = 0;
  150:     my @posters = split(/\&/,$dischash{$userpickkey});
  151: 
  152: # Retain identification of "NEW" posts identified in last display, if continuing 'previous' browsing of posts.
  153:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['previous','sortposts','rolefilter','statusfilter','sectionpick','grouppick','totposters']);
  154:     my $sortposts = $env{'form.sortposts'};
  155:     my $statusfilter = $env{'form.statusfilter'};
  156:     my @sectionpick = split(/,/,$env{'form.sectionpick'});
  157:     my @grouppick   = split(/,/,$env{'form.grouppick'});
  158:     my @rolefilter  = split(/,/,$env{'form.rolefilter'});
  159: 
  160:     my $totposters = $env{'form.totposters'};
  161:     $previous = $env{'form.previous'};
  162:     if ($previous > 0) {
  163:         $prevread = $previous;
  164:     } elsif (defined($dischash{$lastkey})) {
  165:         unless ($dischash{$lastkey} eq '') {
  166:             $prevread = $dischash{$lastkey};
  167:         }
  168:     }
  169: 
  170:     my $cdom = $env{'course.'.$cid.'.domain'};
  171:     my $cnum = $env{'course.'.$cid.'.num'};
  172: 
  173: # Get information about students and non-students in course for filtering display of posts
  174:     my %roleshash = ();
  175:     my %roleinfo = ();
  176:     my ($classgroups,$studentgroups);
  177:     if ($env{'form.rolefilter'}) {
  178:         %roleshash = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
  179:         foreach my $rolekey (keys(%roleshash)) {
  180:             my ($role,$uname,$udom,$sec) = split(/:/,$rolekey);
  181:             if ($role =~ /^cr/) {
  182:                 $role = 'cr';
  183:             }
  184:             my ($end,$start) = split(/:/,$roleshash{$rolekey});
  185:             my $now = time;
  186:             my $status = 'Active';
  187:             if (($now < $start) || ($end > 0 && $now > $end)) {
  188:                 $status = 'Expired';
  189:             }
  190:             if ($uname && $udom) { 
  191:                 push(@{$roleinfo{$uname.':'.$udom}}, $role.':'.$sec.':'.$status);
  192:             }
  193:         }
  194:         my ($classlist,$keylist) =
  195:                          &Apache::loncoursedata::get_classlist($cdom,$cnum);
  196:         my $sec_index = &Apache::loncoursedata::CL_SECTION();
  197:         my $status_index = &Apache::loncoursedata::CL_STATUS();
  198:         while (my ($student,$data) = each %$classlist) {
  199:             my ($section,$status) = ($data->[$sec_index],
  200:                                  $data->[$status_index]);
  201:             push(@{$roleinfo{$student}}, 'st:'.$section.':'.$status);
  202:         }
  203: 	($classgroups,$studentgroups) = 
  204: 	    &Apache::loncoursedata::get_group_memberships($classlist,$keylist,
  205: 							  $cdom,$cnum);
  206:     }
  207: 
  208: # Get discussion display default settings for user
  209:     if ($env{'environment.discdisplay'} eq 'unread') {
  210:         $showonlyunread = 1;
  211:     }
  212:     if ($env{'environment.discmarkread'} eq 'ondisp') {
  213:         $markondisp = 1;
  214:     }
  215: 
  216: # Override user's default if user specified display setting for this discussion
  217:     if (defined($dischash{$ondispkey})) {
  218:         unless ($dischash{$ondispkey} eq '') {
  219:             $markondisp = $dischash{$ondispkey};
  220:         }
  221:     }
  222:     if ($markondisp) {
  223:         $discinfo{$lastkey} = time;
  224:     }
  225: 
  226:     if (defined($dischash{$showkey})) {
  227:         unless ($dischash{$showkey} eq '') {
  228:             $showonlyunread = $dischash{$showkey};
  229:         }
  230:     }
  231: 
  232:     if (defined($dischash{$markkey})) {
  233:         unless ($dischash{$markkey} eq '') {
  234:             $showunmark = $dischash{$markkey};
  235:         }
  236:     }
  237: 
  238:     if (defined($dischash{$visitkey})) {
  239:         unless ($dischash{$visitkey} eq '') {
  240:             $visit = $dischash{$visitkey};
  241:         }
  242:     }
  243:     $visit ++;
  244: 
  245:     my $seeid;
  246:     if (($group ne '') && ($mode eq 'board') && 
  247:         ($ressymb =~ m|^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$|)) {
  248:         if (&check_group_priv($group,'dgp') eq 'ok') {
  249:             $seeid = 1;
  250:         }
  251:     } else {
  252:         $seeid=&Apache::lonnet::allowed('rin',$crs);
  253:     }
  254:     my @discussionitems=();
  255:     my %shown = ();
  256:     my @posteridentity=();
  257: 
  258:     my $current=0;
  259:     my $visible=0;
  260:     my @depth=();
  261:     my @replies = ();
  262:     my %alldiscussion=();
  263:     my %imsitems=();
  264:     my %imsfiles=();
  265:     my %notshown = ();
  266:     my %newitem = ();
  267:     my $maxdepth=0;
  268:     my %anonhash=();
  269:     my $anoncnt=0;
  270:     my $target='';
  271:     unless ($env{'browser.interface'} eq 'textual' ||
  272: 	    $env{'environment.remote'} eq 'off' ) {
  273: 	$target='target="LONcom"';
  274:     }
  275: 
  276:     my $now = time;
  277:     $discinfo{$visitkey} = $visit;
  278: 
  279:     &Apache::lonnet::put('nohist_'.$cid.'_discuss',\%discinfo,$env{'user.domain'},$env{'user.name'});
  280:     &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,$prevread,$sortposts,$encsymb,$target,$readkey,$showunmark,$showonlyunread,$totposters,\@rolefilter,\@sectionpick,\@grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,\%anonhash,$anoncnt,$group);
  281: 
  282:     my $discussion='';
  283:     my $manifestfile;
  284:     my $manifestok=0;
  285:     my $tempexport;
  286:     my $imsresources;
  287:     my $copyresult;
  288: 
  289:     my $function = &Apache::loncommon::get_users_function();
  290:     my $color = &Apache::loncommon::designparm($function.'.tabbg',
  291:                                                     $env{'user.domain'});
  292:     my %lt = &Apache::lonlocal::texthash(
  293:         'cuse' => 'Current discussion settings',
  294:         'allposts' => 'All posts',
  295:         'unread' => 'New posts only',
  296:         'unmark' => 'Unread only',
  297:         'ondisp' => 'Once displayed',
  298:         'onmark' => 'Once marked not NEW',
  299:         'toggoff' => 'Off',
  300:         'toggon' => 'On',
  301:         'disa' => 'Posts to be displayed',
  302:         'npce' => 'Posts cease to be marked "NEW"',
  303:         'epcb' => 'Each post can be toggled read/unread', 
  304:         'chgt' => 'Change',
  305:         'disp' => 'Display',
  306:         'nolo' => 'Not new',
  307:         'togg' => 'Toggle read/unread',
  308:         'aner' => 'An error occurred opening the manifest file.',
  309:         'difo' => 'Discussion for',
  310:         'aerr' => 'An error occurred opening the export file for posting',
  311:         'aysu' => 'Are you sure you want to delete this post?',
  312:         'dpwn' => 'Deleted posts will no longer be visible to you and other students',
  313:         'bwco' => 'but will continue to be visible to your instructor',
  314:         'depo' => 'Deleted posts will no longer be visible to you or anyone else.',
  315:     );
  316: 
  317:     my $currdisp = $lt{'allposts'};
  318:     my $currmark = $lt{'onmark'};
  319:     my $currtogg = $lt{'toggoff'};
  320:     my $dispchange = $lt{'unread'};
  321:     my $markchange = $lt{'ondisp'};
  322:     my $toggchange = $lt{'toggon'};
  323:     my $chglink = '/adm/feedback?modifydisp='.$ressymb;
  324:     my $displinkA = 'onlyunread';
  325:     my $displinkB = 'onlyunmark';
  326:     my $marklink = 'markondisp';
  327:     my $togglink = 'toggon';
  328: 
  329:     if ($markondisp) {
  330:         $currmark = $lt{'ondisp'};
  331:         $markchange = $lt{'onmark'};
  332:         $marklink = 'markonread';
  333:     }
  334: 
  335:     if ($showonlyunread) {
  336:         $currdisp = $lt{'unread'};
  337:         $dispchange = $lt{'allposts'};
  338:         $displinkA = 'allposts';
  339:     }
  340: 
  341:     if ($showunmark) {
  342:         $currdisp = $lt{'unmark'};
  343:         $dispchange = $lt{'unmark'};
  344:         $displinkA='allposts';
  345:         $displinkB='onlyunread';
  346:         $showonlyunread = 0;
  347:     }
  348: 
  349:     if ($dischash{$toggkey}) {
  350:         $currtogg = $lt{'toggon'};
  351:         $toggchange = $lt{'toggoff'};
  352:         $togglink = 'toggoff';
  353:     } 
  354:    
  355:     $chglink .= '&changes='.$displinkA.'_'.$displinkB.'_'.$marklink.'_'.$togglink;
  356: 
  357:     if ($newpostsflag) {
  358:         $chglink .= '&previous='.$prevread;
  359:     }
  360:     $chglink.=&group_args($group);
  361: 
  362:     if ($visible) {
  363: # Print the discusssion
  364:         if ($outputtarget eq 'tex') {
  365:             $discussion.='<tex>{\tiny \vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}'.
  366:                          '\textbf{DISCUSSIONS}\makebox[2 cm][b]{\hrulefill}'.
  367:                          '\vskip 0 mm\noindent\textbf{'.$lt{'cuse'}.'}:\vskip 0 mm'.
  368:                          '\noindent\textbf{'.$lt{'disa'}.'}: \textit{'.$currdisp.'}\vskip 0 mm'.
  369:                          '\noindent\textbf{'.$lt{'npce'}.'}: \textit{'.$currmark.'}}</tex>';
  370:         } elsif ($outputtarget eq 'export') {
  371: # Create temporary directory if this is an export
  372:             my $now = time;
  373:             if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  374:                 $tempexport = $$imsextras{'tempexport'};
  375:                 if (!-e $tempexport) {
  376:                     mkdir($tempexport,0700);
  377:                 }
  378:                 $tempexport .= '/'.$$imsextras{'count'};
  379:                 if (!-e $tempexport) {
  380:                     mkdir($tempexport,0700);
  381:                 }
  382:             } else {
  383:                 $tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';
  384:                 if (!-e $tempexport) {
  385:                     mkdir($tempexport,0700);
  386:                 }
  387:                 $tempexport .= '/'.$now;
  388:                 if (!-e $tempexport) {
  389:                     mkdir($tempexport,0700);
  390:                 }
  391:                 $tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'};
  392:             }
  393:             if (!-e $tempexport) {
  394:                 mkdir($tempexport,0700);
  395:             }
  396: # open manifest file
  397:             my $manifest = '/imsmanifest.xml';
  398:             my $manifestfilename = $tempexport.$manifest;
  399:             if ($manifestfile = Apache::File->new('>'.$manifestfilename)) {
  400:                 $manifestok=1;
  401:                 print $manifestfile qq|
  402: <?xml version="1.0" encoding="UTF-8"?>
  403: <manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" 
  404: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  405: identifier="MANIFEST-$ressymb" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 
  406: imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">
  407:   <organizations default="$ressymb">
  408:     <organization identifier="$ressymb">
  409:       <title>$lt{'difo'} $ressymb</title>\n|;
  410:             } else {
  411:                 $discussion .= $lt{'aner'}.'<br />';
  412:             }
  413: 	} else {
  414:             my $colspan=$maxdepth+1;
  415:             $discussion.= qq|
  416: <script>
  417:    function verifydelete (caller,symb,idx,newflag,previous,groupparm) {
  418:        var symbparm = symb+':::'+idx
  419:        var prevparm = ""
  420:        if (newflag == 1) {
  421:            prevparm = "&previous="+previous
  422:        }
  423:        if (caller == 'studentdelete') {
  424:            if (confirm("$lt{'aysu'}\\n$lt{'dpwn'},\\n$lt{'bwco'}")) {
  425:                document.location.href = "/adm/feedback?hide="+symbparm+prevparm+groupparm
  426:            }
  427:        } else {
  428:            if (caller == 'seeiddelete') {
  429:                if (confirm("$lt{'aysu'}\\n$lt{'depo'}")) {
  430:                    document.location.href = "/adm/feedback?deldisc="+symbparm+prevparm+groupparm
  431:                }
  432:            }
  433:        }
  434:    }
  435: </script>
  436:             |;
  437: 	    $discussion.='<form name="readchoices" method="post" action="/adm/feedback?chgreads='.$ressymb.'" ><table bgcolor="#AAAAAA" cellpadding="2" cellspacing="2" border="0">';
  438:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  439:                                              $newpostsflag,$group,
  440:                                              $prevread,$markondisp);
  441:             my $escsymb=&escape($ressymb);
  442:             my $numhidden = keys(%notshown);
  443:             if ($numhidden > 0) {
  444:                 my $colspan = $maxdepth+1;
  445:                 $discussion.="\n".'<tr><td bgcolor="#CCCCCC" colspan="'.$colspan.'">'.
  446:                          '<a href="/adm/feedback?allposts=1&amp;symb='.$escsymb;
  447:                 if ($newpostsflag) {
  448:                     $discussion .= '&previous='.$prevread;
  449:                 }
  450: 		$discussion .= &group_args($group);
  451:                 $discussion .= '">'.&mt('Show all posts').'</a> '.&mt('to display').' '.
  452:                          $numhidden.' ';
  453:                 if ($showunmark) {
  454:                     $discussion .= &mt('posts previously marked read');
  455:                 } else {
  456:                     $discussion .= &mt('previously viewed posts');
  457:                 }
  458:                 $discussion .= '<br/></td></tr>';
  459:             }
  460:         }
  461: 
  462: # Choose sort mechanism
  463:         my @showposts = ();
  464:         if ($sortposts eq 'descdate') {
  465:             @showposts = (sort { $b <=> $a } keys(%alldiscussion));
  466:         } elsif ($sortposts eq 'thread') {
  467:             @showposts = (sort { $a <=> $b } keys(%alldiscussion));
  468:         } elsif ($sortposts eq 'subject') {
  469:             foreach my $key (sort(keys(%subjectsort))) {
  470:                 push(@showposts, @{$subjectsort{$key}});
  471:             }
  472:         } elsif ($sortposts eq 'username') {
  473:             foreach my $domain (sort(keys(%usernamesort))) {
  474:                 foreach my $key (sort(keys(%{$usernamesort{$domain}}))) {
  475:                     push(@showposts, @{$usernamesort{$domain}{$key}});
  476:                 }
  477:             }
  478:         } elsif ($sortposts eq 'lastfirst') {
  479:             foreach my $last (sort(keys(%namesort))) {
  480:                  foreach my $key (sort(keys(%{$namesort{$last}}))) {
  481:                      push(@showposts, @{$namesort{$last}{$key}});
  482:                  }
  483:             }
  484:         } else {
  485:             @showposts =  (sort { $a <=> $b } keys(%alldiscussion));
  486:         }
  487:         my $currdepth = 0;
  488:         my $firstidx = $alldiscussion{$showposts[0]};
  489:         foreach my $post (@showposts) {
  490:             unless (($sortposts eq 'thread') || (($sortposts eq '') && ($env{'environment.threadeddiscussion'})) || ($outputtarget eq 'export')) {
  491:                 $alldiscussion{$post} = $post;
  492:             }
  493:             unless ( ($notshown{$alldiscussion{$post}} eq '1') || ($shown{$alldiscussion{$post}} == 0) ) {
  494:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  495: 		    $discussion.="\n<tr>";
  496: 		}
  497: 	        my $thisdepth=$depth[$alldiscussion{$post}];
  498:                 if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
  499: 		    for (1..$thisdepth) {
  500: 			$discussion.='<td>&nbsp;&nbsp;&nbsp;</td>';
  501: 		    }
  502: 		}
  503: 	        my $colspan=$maxdepth-$thisdepth+1;
  504:                 if ($outputtarget eq 'tex') {
  505: 		    #cleanup block
  506: 		    $discussionitems[$alldiscussion{$post}]=~s/<table([^>]*)>/<table TeXwidth="90 mm">/;
  507: 		    $discussionitems[$alldiscussion{$post}]=~s/<tr([^>]*)><td([^>]*)>/<tr><td TeXwidth="20 mm" align="left">/;
  508:                     my $threadinsert='';
  509:                     if ($thisdepth > 0) {
  510: 			$threadinsert='<br /><strong>Reply: '.$thisdepth.'</strong>';
  511: 		    }
  512: 		    $discussionitems[$alldiscussion{$post}]=~s/<\/td><td([^>]*)>/$threadinsert<\/td><td TeXwidth="65 mm" align="left">/;
  513: 		    $discussionitems[$alldiscussion{$post}]=~s/<a([^>]+)>(Edit|Hide|Delete|Reply|Submissions)<\/a>//g;
  514:                     $discussionitems[$alldiscussion{$post}]=~s/(<b>|<\/b>|<\/a>|<a([^>]+)>)//g;
  515: 
  516: 		    $discussionitems[$alldiscussion{$post}]='<tex>\vskip 0 mm\noindent\makebox[2 cm][b]{\hrulefill}</tex>'.$discussionitems[$alldiscussion{$post}];
  517: 		    $discussion.=$discussionitems[$alldiscussion{$post}];
  518: 		} elsif ($outputtarget eq 'export') {
  519:                     my $postfilename = $alldiscussion{$post}.'-'.$imsitems{$alldiscussion{$post}}{'timestamp'}.'.html';
  520:                     if ($manifestok) {
  521:                         if (($depth[$alldiscussion{$post}] <= $currdepth) && ($alldiscussion{$post} != $firstidx)) {
  522:                             print $manifestfile '  </item>'."\n";
  523:                         }
  524:                         $currdepth = $depth[$alldiscussion{$post}];
  525:                         print $manifestfile "\n". 
  526:       '<item identifier="ITEM-'.$ressymb.'-'.$alldiscussion{$post}.'" isvisible="'.
  527:         $imsitems{$alldiscussion{$post}}{'isvisible'}.'" identifieref="RES-'.$ressymb.'-'.$alldiscussion{$post}.'">'.
  528:         '<title>'.$imsitems{$alldiscussion{$post}}{'title'}.'</title>';
  529:                         $imsresources .= "\n".
  530:     '<resource identifier="RES-'.$ressymb.'-'.$alldiscussion{$post}.'" type="webcontent" href="'.$postfilename.'">'."\n".
  531:       '<file href="'.$postfilename.'">'."\n".
  532:       $imsfiles{$alldiscussion{$post}}{$imsitems{$alldiscussion{$post}}{'currversion'}}."\n".
  533:     '</resource>';
  534:                     }
  535:                     my $postingfile;
  536:                     my $postingfilename = $tempexport.'/'.$postfilename;
  537:                     if ($postingfile = Apache::File->new('>'.$postingfilename)) {
  538:                         print $postingfile '<html><head><title>Discussion Post</title></head><body>'.
  539:                                            $imsitems{$alldiscussion{$post}}{'title'}.' '.
  540:                                            $imsitems{$alldiscussion{$post}}{'sender'}.
  541:                                            $imsitems{$alldiscussion{$post}}{'timestamp'}.'<br /><br />'.
  542:                                            $imsitems{$alldiscussion{$post}}{'message'}.'<br />'.
  543:                                            $imsitems{$alldiscussion{$post}}{'attach'}.'</body></html>'."\n"; 
  544:                         close($postingfile);
  545:                     } else {
  546:                         $discussion .= $lt{'aerr'}.' '.$alldiscussion{$post}.'<br />';
  547:                     }
  548:                     $copyresult.=&replicate_attachments($imsitems{$alldiscussion{$post}}{'allattachments'},$tempexport);
  549:                 } else {
  550:                     $discussion.='<td  bgcolor="'.$bgcols[$newitem{$alldiscussion{$post}}].
  551:                        '" colspan="'.$colspan.'">'. $discussionitems[$alldiscussion{$post}].
  552:                        '</td></tr>';
  553:                 }
  554: 	    }
  555:         }
  556: 	unless ($outputtarget eq 'tex' || $outputtarget eq 'export') {
  557:             my $colspan=$maxdepth+1;
  558:             $discussion .= <<END;
  559:             <tr bgcolor="#FFFFFF">
  560:              <td colspan="$colspan" valign="top">
  561:               <table border="0" bgcolor="#FFFFFF" width="100%" cellspacing="2" cellpadding="2">
  562:                <tr>
  563:                 <td align="left">
  564:                  <table border="0" cellpadding="0" cellspacing="4">
  565:                   <tr>
  566:                    <td>
  567:                     <font size="-1"><b>$lt{'cuse'}</b>:</td>
  568:                    <td>&nbsp;</td>
  569:                    <td><font size="-1">
  570: END
  571:             if ($newpostsflag) {
  572:                 $discussion .= 
  573:                    '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;&nbsp;2.&nbsp;'.$lt{'nolo'}.'&nbsp;-&nbsp;<i>'.$currmark.'</i>';
  574:                 if ($dischash{$toggkey}) {
  575:                    $discussion .= '&nbsp;&nbsp;3.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  576:                 }
  577:             } else {
  578:                 if ($dischash{$toggkey}) {
  579:                    $discussion .= '1.&nbsp;'.$lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>&nbsp;2.&nbsp;'.$lt{'togg'}.'&nbsp;-&nbsp;<i>'.$currtogg.'</i>';
  580:                 } else {
  581:                     $discussion .=
  582:                          $lt{'disp'}.'&nbsp;-&nbsp;<i>'.$currdisp.'</i>';
  583:                 }
  584:             }
  585:             $discussion .= <<END;
  586:                    </font></td>
  587:                    <td>&nbsp;</td>
  588:                    <td align="left">
  589:                     <font size="-1"><b><a href="$chglink">$lt{'chgt'}</a>?</font></b>
  590:                    </td>
  591:                   </tr>
  592:                  </table>
  593:                 </td>
  594: END
  595:             if ($sortposts) {
  596:                 my %sort_types = ();
  597:                 my %role_types = ();
  598:                 my %status_types = ();
  599:                 &sort_filter_names(\%sort_types,\%role_types,\%status_types);
  600: 
  601:                 $discussion .= '<td><font size="-1"><b>'.&mt('Sorted by').'</b>: '.$sort_types{$sortposts}.'<br />';
  602:                 if (defined($env{'form.totposters'})) {
  603:                     $discussion .= &mt('Posts by').':';
  604:                     if ($totposters > 0) {
  605:                         foreach my $poster (@posters) {
  606:                             $discussion .= ' '.$poster.',';
  607:                         }
  608:                         $discussion =~ s/,$//;
  609:                     } else {
  610:                         $discussion .= &mt('None selected');
  611:                     }
  612:                 } else {
  613:                     my $filterchoice ='';
  614:                     if (@sectionpick > 0) {
  615:                         $filterchoice = '<i>'.&mt('sections').'</i>-&nbsp;'.$env{'form.sectionpick'};
  616:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  617:                     }
  618:                     if (@grouppick > 0) {
  619:                         $filterchoice = '<i>'.&mt('groups').'</i>-&nbsp;'.$env{'form.grouppick'};
  620:                         $filterchoice .= '&nbsp;&nbsp;&nbsp; ';
  621:                     }
  622:                     if (@rolefilter > 0) {
  623:                         $filterchoice .= '<i>'.&mt('roles').'</i>-';
  624:                         foreach my $role (@rolefilter) {
  625:                             $filterchoice .= '&nbsp;'.$role_types{$role}.',';
  626:                         }
  627:                         $filterchoice =~ s/,$//;
  628:                         $filterchoice .= '<br />&nbsp;&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp&nbsp;';
  629:                     }
  630:                     if ($statusfilter) {
  631:                         $filterchoice .= '<i>'.&mt('status').'</i>-&nbsp;'.$status_types{$statusfilter};
  632:                     }
  633:                     if ($filterchoice) {
  634:                         $discussion .= '<b>'.&mt('Filters').'</b>:&nbsp;'.$filterchoice;
  635:                     }
  636:                     $discussion .= '</font></td>';
  637:                 }
  638:             }
  639:             if ($dischash{$toggkey}) {
  640:                 my $storebutton = &mt('Save read/unread changes');
  641:                 $discussion.='<td align="right">'.
  642:               '<input type="hidden" name="discsymb" value="'.$ressymb.'">'."\n".
  643:               '<input type="button" name="readoptions" value="'.$storebutton.'"'.
  644:               ' onClick="this.form.submit();">'."\n".
  645:               '</td>';
  646:             }
  647:             $discussion .= (<<END);
  648:                </tr>
  649:               </table>
  650:              </td>
  651:             </tr>
  652: END
  653:             $discussion .= &action_links_bar($colspan,$ressymb,$visible,
  654:                                              $newpostsflag,$group,
  655:                                              $prevread,$markondisp);
  656:             $discussion .= "
  657:            </table>
  658:            <br /><br /></form>\n";
  659:         } 
  660:         if ($outputtarget eq 'export') {
  661:             if ($manifestok) {
  662:                 while ($currdepth > 0) {
  663:                     print $manifestfile "    </item>\n";
  664:                     $currdepth --;
  665:                 }
  666:                 print $manifestfile qq|
  667:     </organization>
  668:   </organizations>
  669:   <resources>
  670:     $imsresources
  671:   </resources>
  672: </manifest>
  673:                 |;
  674:                 close($manifestfile);
  675:                 if ((defined($imsextras)) && ($$imsextras{'caller'} eq 'imsexport')) {
  676:                     $discussion = $copyresult;
  677:                 } else {
  678: 
  679: #Create zip file in prtspool
  680: 
  681:                     my $imszipfile = '/prtspool/'.
  682:                     $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
  683:                          time.'_'.rand(1000000000).'.zip';
  684:                     my $cwd = &getcwd(); 
  685:                     my $imszip = '/home/httpd/'.$imszipfile;
  686:                     chdir $tempexport;
  687:                     open(OUTPUT, "zip -r $imszip *  2> /dev/null |");
  688:                     close(OUTPUT);
  689:                     chdir $cwd;
  690:                     $discussion .= &mt('Download the zip file from [_1]Discussion Posting Archive','<a href="'.$imszipfile.'">').'</a><br />';
  691:                     if ($copyresult) {
  692:                         $discussion .= &mt('The following errors occurred during export').' - <br />'.$copyresult;
  693:                     }
  694:                 }
  695:             } else {
  696:                 $discussion .= '<br />'.&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.').'<br />';
  697:             }
  698:             return $discussion;
  699:         }
  700:     }
  701:     if ($discussiononly) {
  702:         my $now = time;
  703:         my $attachnum = 0;
  704:         my $currnewattach = [];
  705:         my $currdelold = [];
  706:         my $comment = '';
  707:         my $subject = '';
  708:         if ($env{'form.origpage'}) {
  709:             &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['addnewattach','deloldattach','delnewattach','timestamp','idx','subject','comment']);
  710:             $subject = &unescape($env{'form.subject'});
  711:             $comment = &unescape($env{'form.comment'});
  712:             my @keepold = ();
  713:             &process_attachments($currnewattach,$currdelold,\@keepold);
  714:             if (@{$currnewattach} > 0) {
  715:                 $attachnum += @{$currnewattach};
  716:             }
  717:         }
  718: 	if (&discussion_open($status)) {
  719:             if (($group ne '') && ($mode eq 'board')) {  
  720:                 if (&check_group_priv($group,'pgd') eq 'ok') {
  721:                     $discussion .=
  722: 			&postingform_display($mode,$ressymb,$now,$subject,
  723: 					     $comment,$outputtarget,$attachnum,
  724: 					     $currnewattach,$currdelold,
  725: 					     $group);
  726:                 }
  727:             } else {
  728: 	        $discussion.= 
  729: 		    &postingform_display($mode,$ressymb,$now,$subject,
  730: 					 $comment,$outputtarget,$attachnum,
  731: 					 $currnewattach,$currdelold);
  732:             }
  733: 	}
  734:     } else {
  735:         $discussion.='<div class="LC_feedback_link">';
  736:         if (&discussion_open($status) &&
  737:             &Apache::lonnet::allowed('pch',
  738:     	        $env{'request.course.id'}.
  739: 	        ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
  740: 	    if ($outputtarget ne 'tex') {
  741: 		$discussion.= &send_feedback_link($ressymb,$target);
  742:             }
  743: 	}
  744:         if ($outputtarget ne 'tex') {
  745: 	    $discussion.= &send_message_link($ressymb);
  746:         }
  747:         $discussion.='</div>';
  748:     }
  749:     return $discussion;
  750: }
  751: 
  752: sub send_feedback_link {
  753:     my ($ressymb,$target) = @_;
  754:     my $output = '<span class="LC_feedback_link">'.
  755:                  ' <a href="/adm/feedback?replydisc='.
  756:                  &escape($ressymb).':::" '.$target.'>'.
  757:                  '<img alt="" src="'.
  758:                  &Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').
  759:                  '" border="0" />'.&mt('Post Discussion').'</a></span>';
  760:     return $output;
  761: }
  762: 
  763: sub send_message_link {
  764:     my ($ressymb) = @_;
  765:     my $output = '<span class="LC_message_link">'.
  766:                  '  <a href="/adm/feedback?sendmessageonly=1&amp;symb='.
  767:                  &escape($ressymb).'"><img alt="" src="'.
  768:                  &Apache::loncommon::lonhttpdurl('/adm/lonMisc/feedback.gif').
  769:                  '" border="0" />'.&mt('Send Message').'</a></span>';
  770:     return $output;
  771: }
  772: 
  773: sub action_links_bar {
  774:     my ($colspan,$ressymb,$visible,$newpostsflag,$group,$prevread,$markondisp) = @_;
  775:     my $discussion = '<tr><td bgcolor="#DDDDBB" colspan="'.$colspan.'">'.
  776:                      '<table border="0" width="100%" bgcolor="#DDDDBB"><tr>';
  777:     my $escsymb=&escape($ressymb);
  778:     if ($visible>2) {
  779:         $discussion .= '<td align="left">'.
  780:                        '<a href="/adm/feedback?cmd=threadedon&amp;symb='.$escsymb;
  781:         if ($newpostsflag) {
  782:             $discussion .= '&previous='.$prevread;
  783:         }
  784:         $discussion .= &group_args($group);
  785:         $discussion .='">'.&mt('Threaded View').'</a>&nbsp;&nbsp;'.
  786:                       '<a href="/adm/feedback?cmd=threadedoff&amp;symb='.$escsymb;
  787:         if ($newpostsflag) {
  788:             $discussion .= '&previous='.$prevread;
  789:         }
  790:         $discussion .= &group_args($group);
  791:         $discussion .='">'.&mt('Chronological View').'</a>&nbsp;&nbsp;
  792:                        <a href= "/adm/feedback?cmd=sortfilter&amp;symb='.$escsymb;
  793:         if ($newpostsflag) {
  794:             $discussion .= '&previous='.$prevread;
  795:         }
  796:         $discussion .= &group_args($group);
  797:         $discussion .='">'.&mt('Sorting/Filtering options').'</a>&nbsp;&nbsp';
  798:     } else {
  799:         $discussion .= '<td align="left">';
  800:     }
  801:     $discussion .='<a href= "/adm/feedback?export='.$escsymb;
  802:     if ($newpostsflag) {
  803:         $discussion .= '&previous='.$prevread;
  804:     }
  805:     $discussion .= &group_args($group);
  806:     $discussion .= '">'.&mt('Export').'?</a>&nbsp;&nbsp;</td>';
  807:     if ($newpostsflag) {
  808:         if (!$markondisp) {
  809:             $discussion .='<td align="right"><a href="/adm/preferences?action=changediscussions';
  810:             $discussion .= &group_args($group);
  811:             $discussion .= '">'.
  812:                            &mt('Preferences on what is marked as NEW').
  813:                            '</a><br /><a href="/adm/feedback?markread=1&amp;symb='.$escsymb;
  814:             $discussion .= &group_args($group);
  815:             $discussion .= '">'.&mt('Mark NEW posts no longer new').'</a>';
  816:         } else {
  817:             $discussion .= '<td>&nbsp;</td>';
  818:         }
  819:     } else {
  820:         $discussion .= '<td>&nbsp;</td>';
  821:     }
  822:     $discussion .= '</tr></table></td></tr>';
  823:     return $discussion;
  824: }
  825: 
  826: sub postingform_display {
  827:     my ($mode,$ressymb,$now,$subject,$comment,$outputtarget,$attachnum,
  828:         $currnewattach,$currdelold,$group) = @_;
  829:     my $newattachmsg;
  830:     my %lt = &Apache::lonlocal::texthash(
  831:               'note' => 'Note: in anonymous discussion, your name is visible only to course faculty',
  832:              'title' => 'Title',
  833:              'podi' => 'Post Discussion',
  834:              'poan' => 'Post Anonymous Discussion',
  835:              'newa' => 'New attachments',
  836:     );
  837:     my $postingform = (<<ENDDISCUSS);
  838: <form action="/adm/feedback" method="post" name="mailform" enctype="multipart/form-data"> <input type="submit" name="discuss" value="$lt{'podi'}" />
  839: <input type="submit" name="anondiscuss" value="$lt{'poan'}" /> <input type="hidden" name="symb" value="$ressymb" />
  840: <input type="hidden" name="sendit" value="true" />
  841: <input type="hidden" name="timestamp" value="$now" />
  842: <br /><a name="newpost"></a>
  843: <font size="1">$lt{'note'}</font><br />
  844: <b>$lt{'title'}:</b>&nbsp;<input type="text" name="subject" value="$subject" size="30" /><br /><br />
  845: <textarea name="comment" cols="80" rows="14" wrap="hard">$comment</textarea>
  846: ENDDISCUSS
  847:     if ($env{'form.origpage'}) {
  848:         $postingform .= '<input type="hidden" name="origpage" value="'.
  849:                         $env{'form.origpage'}.'" />'."\n";
  850:         foreach my $att (@{$currnewattach}) {
  851:             $postingform .= '<input type="hidden" name="currnewattach" '.
  852:                             'value="'.$att.'" />'."\n";
  853:         }
  854:     }
  855:     if (exists($env{'form.ref'})) {
  856:         $postingform .= '<input type="hidden" name="ref" value="'.
  857:                         $env{'form.ref'}.'" />';
  858:     }
  859:     if ($group ne '') {
  860:         $postingform .='<input type="hidden" name="group" value="'.$group.'" />';
  861:     }
  862:     my $blockblog = &Apache::loncommon::blocking_status('blogs');
  863:     if (!$blockblog) {
  864:         $postingform .= &add_blog_checkbox();
  865:     }
  866:     $postingform .= "</form>\n";
  867:     if ($outputtarget ne 'tex') {
  868:         $postingform .= &generate_attachments_button('',$attachnum,$ressymb,
  869:                                                      $now,$currnewattach,
  870:                                                      $currdelold,'',$mode,
  871:                                                      $blockblog);
  872:         if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
  873:             $newattachmsg = '<br /><b>'.$lt{'newa'}.'</b><br />';
  874:             if (@{$currnewattach} > 1) {
  875:                 $newattachmsg .= '<ol>';
  876:                 foreach my $item (@{$currnewattach}) {
  877:                     $item =~ m#.*/([^/]+)$#;
  878:                     $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
  879:                 }
  880:                 $newattachmsg .= '</ol>'."\n";
  881:             } else {
  882:                 $$currnewattach[0] =~ m#.*/([^/]+)$#;
  883:                 $newattachmsg .= '<a href="'.$$currnewattach[0].'">'.$1.'</a><br />'."\n";
  884:             }
  885:         }
  886:         $postingform .= $newattachmsg;
  887:         $postingform .= &generate_preview_button();
  888:     }
  889:     return $postingform;
  890: }
  891: 
  892: sub build_posting_display {
  893:     my ($usernamesort,$subjectsort,$namesort,$notshown,$newitem,$dischash,$shown,$alldiscussion,$imsitems,$imsfiles,$roleinfo,$discussionitems,$replies,$depth,$posters,$maxdepth,$visible,$newpostsflag,$current,$status,$viewgrades,$seeid,$prevread,$sortposts,$ressymb,$target,$readkey,$showunmark,$showonlyunread,$totposters,$rolefilter,$sectionpick,$grouppick,$classgroups,$statusfilter,$toggkey,$outputtarget,$anonhash,$anoncnt,$group) = @_;
  894:     my @original=();
  895:     my @index=();
  896:     my $skip_group_check = 0;
  897:     my $symb=&Apache::lonenc::check_decrypt($ressymb);
  898:     my $escsymb=&escape($ressymb);
  899:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
  900: 			  $env{'course.'.$env{'request.course.id'}.'.domain'},
  901: 			  $env{'course.'.$env{'request.course.id'}.'.num'});
  902: 
  903:     my $see_anonymous = 
  904: 	&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
  905: 
  906:     if ((@{$grouppick} == 0) || (grep(/^all$/,@{$grouppick}))) {
  907:         $skip_group_check = 1;
  908:     }
  909:     if ($contrib{'version'}) {
  910:         my $oldest = $contrib{'1:timestamp'};
  911:         if ($prevread eq '0') {
  912:             $prevread = $oldest-1;
  913:         }
  914:         my ($skiptest,$rolematch,$roleregexp,$secregexp,$statusregexp);
  915:         if ($sortposts) {
  916:             ($skiptest,$roleregexp,$secregexp,$statusregexp) = 
  917:                      &filter_regexp($rolefilter,$sectionpick,$statusfilter);
  918:             $rolematch = $roleregexp.':'.$secregexp.':'.$statusregexp;
  919:         } 
  920: 	for (my $id=1;$id<=$contrib{'version'};$id++) {
  921: 	    my $idx=$id;
  922:             my $posttime = $contrib{$idx.':timestamp'};
  923:             if ($prevread <= $posttime) {
  924:                 $$newpostsflag = 1;
  925:             }
  926: 	    my $hidden=($contrib{'hidden'}=~/\.$idx\./);
  927:             my $studenthidden=($contrib{'studenthidden'}=~/\.$idx\./);
  928: 	    my $deleted=($contrib{'deleted'}=~/\.$idx\./);
  929: 	    my $origindex='0.';
  930:             my $numoldver=0;
  931: 	    if ($contrib{$idx.':replyto'}) {
  932:                 if ( (($env{'environment.threadeddiscussion'}) && ($sortposts eq '')) || ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
  933: # this is a follow-up message
  934: 		    $original[$idx]=$original[$contrib{$idx.':replyto'}];
  935: 		    $$depth[$idx]=$$depth[$contrib{$idx.':replyto'}]+1;
  936: 		    $origindex=$index[$contrib{$idx.':replyto'}];
  937: 		    if ($$depth[$idx]>$$maxdepth) { $$maxdepth=$$depth[$idx]; }
  938:                 } else {
  939:                     $original[$idx]=0;
  940:                     $$depth[$idx]=0;
  941:                 }
  942: 	    } else {
  943: # this is an original message
  944: 		$original[$idx]=0;
  945: 		$$depth[$idx]=0;
  946: 	    }
  947: 	    if ($$replies[$$depth[$idx]]) {
  948: 		$$replies[$$depth[$idx]]++;
  949: 	    } else {
  950: 		$$replies[$$depth[$idx]]=1;
  951: 	    }
  952: 	    unless ((($hidden) && (!$seeid)) || ($deleted)) {
  953: 		$$visible++;
  954:                 if ($contrib{$idx.':history'}) {
  955:                     if ($contrib{$idx.':history'} =~ /:/) {
  956:                         my @oldversions = split(/:/,$contrib{$idx.':history'});
  957:                         $numoldver = @oldversions;
  958:                     } else {
  959:                         $numoldver = 1;
  960:                     } 
  961:                 }
  962:                 $$current = $numoldver;
  963: 		my %messages = ();
  964:                 my %subjects = ();
  965:                 my %attachtxt = ();
  966:                 my %allattachments = ();
  967:                 my ($screenname,$plainname);
  968:                 my $sender = &mt('Anonymous');
  969: # Anonymous users getting number within a discussion
  970: # Since idx is in static order, this should give the same sequence every time. 
  971: 		my $key=$contrib{$idx.':sendername'}.'@'.$contrib{$idx.':senderdomain'};
  972: 		unless ($$anonhash{$key}) {
  973:                     $anoncnt++;
  974: 		    $$anonhash{$key}=&mt('Anonymous').' '.$anoncnt;
  975: 		}
  976:                 my ($message,$subject,$vgrlink,$ctlink);
  977:                 &get_post_contents(\%contrib,$idx,$seeid,$outputtarget,\%messages,\%subjects,\%allattachments,\%attachtxt,$imsfiles,\$screenname,\$plainname,$numoldver);
  978: 
  979: 
  980: # Set up for sorting by subject
  981:                 unless ($outputtarget eq 'export') {
  982:                     $message=$messages{$numoldver};
  983:                     $message.=$attachtxt{$numoldver};
  984:                     $subject=$subjects{$numoldver};
  985:                     if ($message) {
  986: 	  	        if ($hidden) {
  987: 			    $message='<font color="#888888">'.$message.'</font>';
  988:                             if ($studenthidden) {
  989:                                 $message .='<br /><br />Deleted by poster (student).';
  990:                             }
  991: 		        }
  992: 
  993:                         if ($subject eq '') {
  994:                            if (defined($$subjectsort{'__No subject'})) {
  995:                                push(@{$$subjectsort{'__No subject'}}, $idx);
  996:                            } else {
  997:                                @{$$subjectsort{'__No subject'}} = ("$idx");
  998:                            }
  999:                         } else {
 1000:                             if (defined($$subjectsort{$subject})) {
 1001:                                push(@{$$subjectsort{$subject}}, $idx);
 1002:                             } else {
 1003:                                @{$$subjectsort{$subject}} = ("$idx");
 1004:                             }
 1005:                         }
 1006: 		        if (!$contrib{$idx.':anonymous'} || $see_anonymous) {
 1007: 			    $sender=&Apache::loncommon::aboutmewrapper(
 1008: 					 $plainname,
 1009: 					 $contrib{$idx.':sendername'},
 1010: 					 $contrib{$idx.':senderdomain'}).' ('.
 1011: 					 $contrib{$idx.':sendername'}.':'.
 1012: 					 $contrib{$idx.':senderdomain'}.')';
 1013: 			    if ($contrib{$idx.':anonymous'}) {
 1014: 			        $sender.=' <font color="red"><b>['.$$anonhash{$key}.']</b></font> '.
 1015: 				    $screenname;
 1016: 			    }
 1017: 			    if ($see_anonymous) {
 1018: 				$sender.=&Apache::loncommon::student_image_tag($contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 1019: 			    }
 1020: # Set up for sorting by domain, then username
 1021:                             unless (defined($$usernamesort{$contrib{$idx.':senderdomain'}})) {
 1022:                                 %{$$usernamesort{$contrib{$idx.':senderdomain'}}} = ();
 1023:                             }
 1024:                             if (defined($$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}})) {
 1025:                                 push(@{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}}, $idx);
 1026:                             } else {
 1027:                                 @{$$usernamesort{$contrib{$idx.':senderdomain'}}{$contrib{$idx.':sendername'}}} = ("$idx");
 1028:                             }
 1029: # Set up for sorting by last name, then first name
 1030:                             my %names = &Apache::lonnet::get('environment',
 1031:                                  ['firstname','lastname'],$contrib{$idx.':senderdomain'},
 1032:                                   ,$contrib{$idx.':sendername'});
 1033:                             my $lastname = $names{'lastname'};
 1034:                             my $firstname = $names{'firstname'};
 1035:                             if ($lastname eq '') {
 1036:                                 $lastname = '_';
 1037:                             }
 1038:                             if ($firstname eq '') {
 1039:                                 $firstname = '_';
 1040:                             }
 1041:                             unless (defined($$namesort{$lastname})) {
 1042:                                 %{$$namesort{$lastname}} = ();
 1043:                             }
 1044:                             if (defined($$namesort{$lastname}{$firstname})) {
 1045:                                 push(@{$$namesort{$lastname}{$firstname}}, $idx);
 1046:                             } else {
 1047:                                 @{$$namesort{$lastname}{$firstname}} = ("$idx");
 1048:                             }
 1049:                             if (&editing_allowed($escsymb.':::'.$idx,$group)) {
 1050:                                 if (($env{'user.domain'} eq $contrib{$idx.':senderdomain'}) && ($env{'user.name'} eq $contrib{$idx.':sendername'})) {
 1051:                                     $sender.=' <a href="/adm/feedback?editdisc='.
 1052:                                          $escsymb.':::'.$idx;
 1053:                                     if ($$newpostsflag) {
 1054:                                         $sender .= '&previous='.$prevread;
 1055:                                     }
 1056: 				    $sender .= &group_args($group);
 1057:                                     $sender .= '" '.$target.'>'.&mt('Edit').'</a>';
 1058:                                     
 1059:                                     unless ($seeid) {
 1060:                                         my $grpargs = &group_args($group);
 1061:                                         $sender.=" <a href=\"javascript:verifydelete('studentdelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')";
 1062:                                         $sender .= '">'.&mt('Delete').'</a>';
 1063:                                     }
 1064:                                 }
 1065:                             } 
 1066: 			    if ($seeid) {
 1067: 			        if ($hidden) {
 1068:                                     unless ($studenthidden) {
 1069: 			                $sender.=' <a href="/adm/feedback?unhide='.
 1070: 				                $escsymb.':::'.$idx;
 1071:                                         if ($$newpostsflag) {
 1072:                                             $sender .= '&previous='.$prevread;
 1073:                                         }
 1074:                                         $sender .= '">'.&mt('Make Visible').'</a>';
 1075:                                     }
 1076: 			        } else {
 1077: 				    $sender.=' <a href="/adm/feedback?hide='.
 1078: 				        $escsymb.':::'.$idx;
 1079:                                     if ($$newpostsflag) {
 1080:                                         $sender .= '&previous='.$prevread;
 1081:                                     }
 1082: 				    $sender .= &group_args($group);
 1083:                                     $sender .= '">'.&mt('Hide').'</a>';
 1084: 			        }
 1085:                                 my $grpargs = &group_args($group);
 1086: 			        $sender.= 
 1087:                                     " <a href=\"javascript:verifydelete('seeiddelete','$escsymb','$idx','$$newpostsflag','$prevread','$grpargs')\">";
 1088:                                 $sender .= &mt('Delete').'</a>';
 1089:                             }
 1090: 		        } else {
 1091: 			    if ($screenname) {
 1092: 			        $sender='<i>'.$screenname.'</i>';
 1093: 			    } else {
 1094: 				$sender='<i>'.$$anonhash{$key}.'</i>';
 1095: 			    }
 1096: # Set up for sorting by domain, then username for anonymous
 1097:                             unless (defined($$usernamesort{'__anon'})) {
 1098:                                 %{$$usernamesort{'__anon'}} = ();
 1099:                             }
 1100:                             if (defined($$usernamesort{'__anon'}{'__anon'})) {
 1101:                                 push(@{$$usernamesort{'__anon'}{'__anon'}}, $idx);
 1102:                             } else {
 1103:                                 @{$$usernamesort{'__anon'}{'__anon'}} = ("$idx");
 1104:                             }
 1105: # Set up for sorting by last name, then first name for anonymous
 1106:                             unless (defined($$namesort{'__anon'})) {
 1107:                                 %{$$namesort{'__anon'}} = ();
 1108:                             }
 1109:                             if (defined($$namesort{'__anon'}{'__anon'})) {
 1110:                                 push(@{$$namesort{'__anon'}{'__anon'}}, $idx);
 1111:                             } else {
 1112:                                 @{$$namesort{'__anon'}{'__anon'}} = ("$idx");
 1113:                             }
 1114: 		        }
 1115: 		        if (&discussion_open($status)) {
 1116:                             if (($group ne '') && 
 1117:                                 (&check_group_priv($group,'pgd') eq 'ok')) {
 1118:                                  $sender.=' <a href="/adm/feedback?replydisc='.
 1119:                                           $escsymb.':::'.$idx;
 1120:                                 if ($$newpostsflag) {
 1121:                                     $sender .= '&previous='.$prevread;
 1122:                                 }
 1123:                                 $sender .= &group_args($group);
 1124:                                 $sender .= '" '.$target.'>'.&mt('Reply').'</a>';
 1125:                             } elsif (&Apache::lonnet::allowed('pch', 
 1126: 				 $env{'request.course.id'}.
 1127: 				 ($env{'request.course.sec'}?'/'.
 1128:                                   $env{'request.course.sec'}:''))) {
 1129: 			         $sender.=' <a href="/adm/feedback?replydisc='.
 1130: 			                  $escsymb.':::'.$idx;
 1131:                                 if ($$newpostsflag) {
 1132:                                     $sender .= '&previous='.$prevread;
 1133:                                 }
 1134:                                 $sender .= '" '.$target.'>'.&mt('Reply').'</a>';
 1135:                             }
 1136:                         }
 1137: 		        if ($viewgrades) {
 1138: 			        $vgrlink=&Apache::loncommon::submlink('Submissions',
 1139:                             $contrib{$idx.':sendername'},$contrib{$idx.':senderdomain'},$ressymb);
 1140: 		        }
 1141:                         if ($$dischash{$readkey}=~/\.$idx\./) { 
 1142:                             $ctlink = '<label><b>'.&mt('Mark unread').'?</b>&nbsp;<input type="checkbox" name="postunread_'.$idx.'" /></label>';
 1143:                         } else {
 1144:                             $ctlink = '<label><b>'.&mt('Mark read').'?</b>&nbsp;<input type="checkbox" name="postread_'.$idx.'" /></label>';
 1145:                         }
 1146:                     }
 1147: #figure out at what position this needs to print
 1148:                 }
 1149:                 if ($outputtarget eq 'export' || $message) {
 1150: 		    my $thisindex=$idx;
 1151: 		    if ( (($env{'environment.threadeddiscussion'}) && ($sortposts eq '')) || ($sortposts eq 'thread') || ($outputtarget eq 'export')) {
 1152: 			$thisindex=$origindex.substr('00'.$$replies[$$depth[$idx]],-2,2);
 1153: 		    }
 1154: 		    $$alldiscussion{$thisindex}=$idx;
 1155:                     $$shown{$idx} = 0;
 1156:                     $index[$idx]=$thisindex;
 1157:                 }
 1158:                 if ($outputtarget eq 'export') {
 1159:                     %{$$imsitems{$idx}} = ();
 1160:                     $$imsitems{$idx}{'isvisible'}='true';
 1161:                     if ($hidden) {
 1162:                         $$imsitems{$idx}{'isvisible'}='false';
 1163:                     }
 1164:                     $$imsitems{$idx}{'title'}=$subjects{$numoldver};
 1165:                     $$imsitems{$idx}{'message'}=$messages{$numoldver};
 1166:                     $$imsitems{$idx}{'attach'}=$attachtxt{$numoldver};
 1167:                     $$imsitems{$idx}{'timestamp'}=$contrib{$idx.':timestamp'};
 1168:                     $$imsitems{$idx}{'sender'}=$plainname.' ('.
 1169:                                          $contrib{$idx.':sendername'}.' at '.
 1170:                                          $contrib{$idx.':senderdomain'}.')';
 1171:                     $$imsitems{$idx}{'isanonymous'}='false';
 1172:                     if ($contrib{$idx.':anonymous'}) {
 1173:                         $$imsitems{$idx}{'isanonymous'}='true';
 1174:                     }
 1175:                     $$imsitems{$idx}{'currversion'}=$numoldver;
 1176:                     %{$$imsitems{$idx}{'allattachments'}}=%allattachments;
 1177:                     unless ($messages{$numoldver} eq '' && $attachtxt{$numoldver} eq '') {
 1178:                         $$shown{$idx} = 1;
 1179:                     }
 1180:                 } else {
 1181:                     if ($message) {
 1182:                         my $spansize = 2;
 1183:                         if ($showonlyunread && $prevread > $posttime) {
 1184:                             $$notshown{$idx} = 1;
 1185:                         } elsif ($showunmark && $$dischash{$readkey}=~/\.$idx\./) {
 1186:                             $$notshown{$idx} = 1;
 1187:                         } else {
 1188: # apply filters
 1189:                             my $uname = $contrib{$idx.':sendername'};
 1190:                             my $udom = $contrib{$idx.':senderdomain'};
 1191:                             my $poster = $uname.':'.$udom;
 1192:                             if ($env{'form.totposters'} ne '') {
 1193:                                 if ($totposters == 0) {
 1194:                                     $$shown{$idx} = 0;
 1195:                                 } elsif ($totposters > 0) {
 1196:                                     if (grep/^$poster$/,@{$posters}) {
 1197:                                         $$shown{$idx} = 1;
 1198:                                     }
 1199:                                 }
 1200:                             } elsif ($sortposts) {
 1201:                                 if ($skiptest) {
 1202:                                     $$shown{$idx} = 1;
 1203:                                 } else {
 1204:                                     foreach my $role (@{$$roleinfo{$poster}}) {
 1205:                                         if ($role =~ /^cc:/) {
 1206:                                             my $cc_regexp = $roleregexp.':[^:]*:'.$statusregexp;
 1207:                                             if ($role =~ /$cc_regexp/) {
 1208:                                                 $$shown{$idx} = 1;
 1209:                                                 last;
 1210:                                             }
 1211:                                         } elsif ($role =~ /^$rolematch$/) {
 1212:                                             $$shown{$idx} = 1;
 1213:                                             last;
 1214:                                         }
 1215:                                     }
 1216:                                 }
 1217:                                 if ($$shown{$idx} && !$skip_group_check) {
 1218:                                     my $showflag = 0;
 1219:                                     if (ref($$classgroups{$poster}{active}) eq 'HASH') {
 1220:                                         foreach my $grp (@{$grouppick}) {
 1221:                                             if (grep/^\Q$grp\E$/,
 1222:                                  keys(%{$$classgroups{$poster}{active}})) {
 1223:                                                 $showflag = 1;
 1224:                                                 last;
 1225:                                             }
 1226:                                         }
 1227:                                     }
 1228:                                     if ($showflag) {
 1229:                                         $$shown{$idx} = 1;
 1230:                                     } else {
 1231:                                         $$shown{$idx} = 0;
 1232:                                     }
 1233:                                 }
 1234:                             } else {
 1235:                                 $$shown{$idx} = 1;
 1236:                             }
 1237:                         }
 1238:                         unless ($$notshown{$idx} == 1) {
 1239:                             if ($prevread > 0 && $prevread <= $posttime) {
 1240:                                 $$newitem{$idx} = 1;
 1241:                                 $$discussionitems[$idx] .= '
 1242:                                  <p><table border="0" width="100%">
 1243:                                   <tr><td align="left"><font color="#FF0000"><b>'.&mt('NEW').'</b></font></td>';
 1244:                             } else {
 1245:                                 $$newitem{$idx} = 0;
 1246:                                 $$discussionitems[$idx] .= '
 1247:                                  <p><table border="0" width="100%">
 1248:                                   <tr><td align="left">&nbsp;</td>';
 1249:                             }
 1250:                             $$discussionitems[$idx] .= '<td align ="left">&nbsp;&nbsp;'.
 1251:                                 '<b>'.$subject.'</b>&nbsp;&nbsp;'.
 1252:                                 $sender.'</b> '.$vgrlink.' ('.
 1253:                                 &Apache::lonlocal::locallocaltime($posttime).')</td>';
 1254:                             if ($$dischash{$toggkey}) {
 1255:                                 $$discussionitems[$idx].='<td align="right">&nbsp;&nbsp;'.
 1256:                                   $ctlink.'</td>';
 1257:                             }
 1258:                             $$discussionitems[$idx].= '</tr></table><blockquote>'.
 1259:                                     $message.'</blockquote></p>';
 1260:                             if ($contrib{$idx.':history'}) {
 1261:                                 my @postversions = ();
 1262:                                 $$discussionitems[$idx] .= &mt('This post has been edited by the author.');
 1263:                                 if ($seeid) {
 1264:                                     $$discussionitems[$idx] .= '&nbsp;&nbsp;<a href="/adm/feedback?allversions='.$escsymb.':::'.$idx;
 1265: 				    $$discussionitems[$idx] .= &group_args($group);
 1266:                                     $$discussionitems[$idx] .= '">'.&mt('Display all versions').'</a>';
 1267:                                 }
 1268:                                 $$discussionitems[$idx].='<br/>'.&mt('Earlier version(s) were posted on: ');
 1269:                                 if ($contrib{$idx.':history'} =~ m/:/) {
 1270:                                     @postversions = split(/:/,$contrib{$idx.':history'});
 1271:                                 } else {
 1272:                                     @postversions = ("$contrib{$idx.':history'}");
 1273:                                 }
 1274:                                 for (my $i=0; $i<@postversions; $i++) {
 1275:                                     my $version = $i+1;
 1276:                                     $$discussionitems[$idx] .= '<b>'.$version.'.</b> - '.&Apache::lonlocal::locallocaltime($postversions[$i]).'  ';
 1277:                                 }
 1278:                             }
 1279:                         }
 1280:                     }
 1281:                 }
 1282:             }
 1283: 	}
 1284:     }
 1285: }
 1286: 
 1287: sub filter_regexp {
 1288:     my ($rolefilter,$sectionpick,$statusfilter) = @_;
 1289:     my ($roleregexp,$secregexp,$statusregexp);
 1290:     my $skiptest = 1;
 1291:     if (@{$rolefilter} > 0) {
 1292:         my @okrolefilter = ();
 1293:         foreach my $role (@{$rolefilter}) {
 1294:             unless ($role eq '') {
 1295:                 push(@okrolefilter, $role);
 1296:             }
 1297:         }
 1298:         if (@okrolefilter > 0) {
 1299:             if (grep/^all$/,@okrolefilter) {
 1300:                 $roleregexp='[^:]+';
 1301:             } else {
 1302:                 if (@okrolefilter == 1) {
 1303:                     $roleregexp=$okrolefilter[0];
 1304:                 } else {
 1305:                     $roleregexp='('.join('|',@okrolefilter).')';
 1306:                 }
 1307:                 $skiptest = 0;
 1308:             }
 1309:         }
 1310:     }
 1311:     if (@{$sectionpick} > 0) {
 1312:         my @oksectionpick = ();
 1313:         foreach my $sec (@{$sectionpick}) {
 1314:             unless ($sec eq '') {
 1315:                  push(@oksectionpick, $sec);
 1316:             }
 1317:         }
 1318:         if ((@oksectionpick > 0) && (!grep/^all$/,@oksectionpick)) {
 1319:             if (@oksectionpick == 1) {
 1320:                 $secregexp = $oksectionpick[0];
 1321:             } else {
 1322:                 $secregexp .= '('.join('|',@oksectionpick).')';
 1323:             }
 1324:             $skiptest = 0;
 1325:         } else {
 1326:             $secregexp .= '[^:]*';
 1327:         }
 1328:     }
 1329: 
 1330:     if (defined($statusfilter) && $statusfilter ne '') {
 1331:         if ($statusfilter eq 'all') {
 1332:             $statusregexp = '[^:]+';
 1333:         } else {
 1334:             $statusregexp = $statusfilter;
 1335:             $skiptest = 0;
 1336:         }
 1337:     }
 1338:     return ($skiptest,$roleregexp,$secregexp,$statusregexp);
 1339: }
 1340: 
 1341: 
 1342: sub get_post_contents {
 1343:     my ($contrib,$idx,$seeid,$type,$messages,$subjects,$allattachments,$attachtxt,$imsfiles,$screenname,$plainname,$numver) = @_;
 1344:     my $discussion = '';
 1345:     my $start=$numver;
 1346:     my $end=$numver + 1;
 1347:     %{$$imsfiles{$idx}}=();
 1348:     if ($type eq 'allversions') {
 1349:        unless($seeid) {
 1350:            $discussion=&mt('You do not have privileges to view all versions of posts.').' '.&mt('Please select a different role.');
 1351:            return $discussion;
 1352:        } 
 1353:     }
 1354: #    $$screenname=&Apache::loncommon::screenname(
 1355: #                                        $$contrib{$idx.':sendername'},
 1356: #                                        $$contrib{$idx.':senderdomain'});
 1357:     $$plainname=&Apache::loncommon::nickname(
 1358:                                         $$contrib{$idx.':sendername'},
 1359:                                         $$contrib{$idx.':senderdomain'});
 1360:     $$screenname=$$contrib{$idx.':screenname'};
 1361: 
 1362:     my $sender=&Apache::loncommon::aboutmewrapper(
 1363:                                  $$plainname,
 1364:                                  $$contrib{$idx.':sendername'},
 1365:                                  $$contrib{$idx.':senderdomain'}).' ('.
 1366:                                  $$contrib{$idx.':sendername'}.' at '.
 1367:                                  $$contrib{$idx.':senderdomain'}.')';
 1368:     my $attachmenturls = $$contrib{$idx.':attachmenturl'};
 1369:     my @postversions = ();
 1370:     if ($type eq 'allversions' || $type eq 'export') {
 1371:         $start = 0;
 1372:         if ($$contrib{$idx.':history'}) {
 1373: 	    @postversions = split(/:/,$$contrib{$idx.':history'});
 1374:         }
 1375:         &get_post_versions($messages,$$contrib{$idx.':message'},1);
 1376:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1);
 1377:         push(@postversions,$$contrib{$idx.':timestamp'});
 1378:         $end = @postversions;
 1379:     } else {
 1380:         &get_post_versions($messages,$$contrib{$idx.':message'},1,$numver);
 1381:         &get_post_versions($subjects,$$contrib{$idx.':subject'},1,$numver);
 1382:     }
 1383: 
 1384:     if ($$contrib{$idx.':anonymous'}) {
 1385:         $sender.=' ['.&mt('anonymous').'] '.$$screenname;
 1386:     }
 1387:     if ($type eq 'allversions') {
 1388:         $discussion=('<b>'.$sender.'</b><br /><ul>');
 1389:     }
 1390:     for (my $i=$start; $i<$end; $i++) {
 1391:         my ($timesent,$attachmsg);
 1392:         my %currattach = ();
 1393:         $timesent = &Apache::lonlocal::locallocaltime($postversions[$i]);
 1394: 	&newline_to_br(\$messages->{$i});
 1395:         $$messages{$i}=&Apache::lontexconvert::msgtexconverted($$messages{$i});
 1396:         $$subjects{$i}=~s/\n/\<br \/\>/g;
 1397:         $$subjects{$i}=&Apache::lontexconvert::msgtexconverted($$subjects{$i});
 1398:         if ($attachmenturls) {
 1399:             &extract_attachments($attachmenturls,$idx,$i,\$attachmsg,$allattachments,\%currattach);
 1400:         }
 1401:         if ($type eq 'export') {
 1402:             $$imsfiles{$idx}{$i} = '';
 1403:             if ($attachmsg) {
 1404:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':<br />';
 1405:                 foreach my $key (sort(keys(%currattach))) {
 1406:                     if ($$allattachments{$key}{'filename'} =~ m-^/uploaded/([^/]+/[^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1407:                         my $fname = $1.$3.'/'.$4;
 1408:                         $$imsfiles{$idx}{$i} .= '<file href="'.$fname.'">'."\n";
 1409:                         $$attachtxt{$i}.= '<a href="'.$fname.'">'.$4.'</a><br />';
 1410:                     }
 1411:                 }
 1412:             }
 1413:         } else {
 1414:             if ($attachmsg) {
 1415:                 $$attachtxt{$i} = '<br />'.&mt('Attachments').':'.$attachmsg.'<br />';
 1416:             } else {
 1417:                 $$attachtxt{$i} = '';
 1418:             }
 1419:         }
 1420:         if ($type eq 'allversions') {
 1421:             $discussion.= <<"END";
 1422: <li><b>$$subjects{$i}</b>, $timesent<br />
 1423: $$messages{$i}<br />
 1424: $$attachtxt{$i}</li>
 1425: END
 1426:         }
 1427:     }
 1428:     if ($type eq 'allversions') {
 1429:         $discussion.='</ul>';
 1430:         return $discussion;
 1431:     } else {
 1432:         return;
 1433:     }
 1434: }
 1435: 
 1436: sub replicate_attachments {
 1437:     my ($attachrefs,$tempexport) = @_;
 1438:     my $response;
 1439:     foreach my $id (keys(%{$attachrefs})) {
 1440:         if ($$attachrefs{$id}{'filename'} =~ m-^/uploaded/([^/]+)/([^/]+)(/feedback)?(/?\d*)/([^/]+)$-) {
 1441:             my $path = $tempexport;
 1442:             my $tail = $1.'/'.$2.$4;
 1443:             my @extras = split(/\//,$tail);
 1444:             my $destination = $tempexport.'/'.$1.'/'.$2.$4.'/'.$5;
 1445:             if (!-e $destination) {
 1446:                 my $i= 0;
 1447:                 while ($i<@extras) {
 1448:                     $path .= '/'.$extras[$i];
 1449:                     if (!-e $path) {
 1450:                         mkdir($path,0700);
 1451:                     }
 1452:                     $i ++;
 1453:                 }
 1454:                 my ($content,$rtncode);
 1455:                 my $uploadreply = &Apache::lonnet::getuploaded('GET',$$attachrefs{$id}{'filename'},$1,$2,$content,$rtncode);
 1456:                 if ($uploadreply eq 'ok') {
 1457:                     my $attachcopy;
 1458:                     if ($attachcopy = Apache::File->new('>'.$destination)) {
 1459:                         print $attachcopy $content;
 1460:                         close($attachcopy);
 1461:                     } else {
 1462:                         $response .= &mt('Error copying file attachment - [_1] to IMS package',$5).': '.$!.'<br />'."\n";
 1463:                     }
 1464:                 } else {
 1465:                     &Apache::lonnet::logthis("Replication of attachment failed when building IMS export of discussion posts - domain: $1, course: $2, file: $$attachrefs{$id}{'filename'} -error: $rtncode");
 1466:                     $response .= &mt('Error copying file attachment - [_1] to IMS package: ',$5).$rtncode.'<br />'."\n";
 1467:                 }
 1468:             }
 1469:         }
 1470:     }
 1471:     return $response;
 1472: }
 1473: 
 1474: sub mail_screen {
 1475:   my ($r,$feedurl,$options,$caller_symb,$attachmaxtext) = @_;
 1476:   if (exists($env{'form.origpage'})) {
 1477:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','currnewattach','addnewattach','deloldattach','delnewattach','timestamp','idx','anondiscuss','discuss','blog','group','ref']);
 1478:   }
 1479: 
 1480:   my %lt = &Apache::lonlocal::texthash(
 1481:             'plch' => 'Please check at least one of the following feedback types:',
 1482:             'myqu' => 'My question/comment/feedback:',
 1483:             'title' => 'Title',
 1484:             'reta' => 'Retained attachments',
 1485:             'atta' => 'Attachment',
 1486:            );
 1487:   my $restitle = &get_resource_title($caller_symb,$feedurl);
 1488:   my $quote='';
 1489:   my $subject = '';
 1490:   my $comment = '';
 1491:   my $prevtag = '';
 1492:   my $parentmsg = '';
 1493:   my ($symb,$idx,$attachmenturls);
 1494:   my $numoldver = 0;
 1495:   my $attachmsg = '';
 1496:   my $newattachmsg = '';
 1497:   my @currnewattach = ();
 1498:   my @currdelold = ();
 1499:   my @keepold = ();
 1500:   my %attachments = ();
 1501:   my %currattach = ();
 1502:   my $attachnum = 0;
 1503:   my $anonchk = (<<END);
 1504:   function anonchk() {
 1505:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1506: 	  if (document.mailform.discuss[i].checked) {
 1507: 	      document.attachment.discuss.value = 
 1508: 		  document.mailform.discuss[i].value;
 1509: 	  }
 1510:       }
 1511:       if (document.mailform.blog.checked) {
 1512: 	  document.attachment.blog.value = 1;
 1513:       }
 1514:      return
 1515:    }
 1516: END
 1517:   my $anonscript;
 1518:   if (exists($env{'form.origpage'})) {
 1519:       $anonscript = (<<END);
 1520:   function setposttype() {
 1521:       var disc = "$env{'form.discuss'}";
 1522:       for (var i=0; i < document.mailform.discuss.length; i++) {
 1523: 	  if (disc == document.mailform.discuss[i].value) {
 1524: 	      document.mailform.discuss[i].checked = 1;
 1525: 	  }
 1526:       }
 1527:       var blog = "$env{'form.blog'}";
 1528:       if (blog == 1) {
 1529:           document.mailform.blog.checked=1;
 1530:       }
 1531:       return
 1532:   }
 1533: END
 1534:   } else {
 1535:       $anonscript = (<<END);
 1536:   function setposttype() {
 1537:       return
 1538:   }
 1539: END
 1540:   }
 1541:   if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 1542:       if ($env{'form.replydisc'}) {
 1543:           ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 1544:       } else {
 1545:           ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 1546:       }
 1547:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 1548: 					   $env{'course.'.$env{'request.course.id'}.'.domain'},
 1549: 					   $env{'course.'.$env{'request.course.id'}.'.num'});
 1550:       unless (($contrib{'hidden'}=~/\.$idx\./) || ($contrib{'deleted'}=~/\.$idx\./)) {
 1551:           if ($contrib{$idx.':history'}) {
 1552:               if ($contrib{$idx.':history'} =~ /:/) {
 1553:                   my @oldversions = split(/:/,$contrib{$idx.':history'});
 1554:                   $numoldver = @oldversions;
 1555:               } else {
 1556:                   $numoldver = 1;
 1557:               }
 1558:           }
 1559:           if ($env{'form.replydisc'}) {
 1560:               if ($contrib{$idx.':history'}) {
 1561:                   if ($contrib{$idx.':history'} =~ /:/) {
 1562:                       my @oldversions = split(/:/,$contrib{$idx.':history'});
 1563:                       $numoldver = @oldversions;
 1564:                   } else {
 1565:                       $numoldver = 1;
 1566:                   }
 1567:               }
 1568:               if ($idx > 0) {
 1569:                   my %msgversions = ();
 1570:                   &get_post_versions(\%msgversions,$contrib{$idx.':message'},0,$numoldver);
 1571:                   $quote = $msgversions{$numoldver};
 1572:               }
 1573:               if ($idx > 0) {
 1574:                   my %subversions = ();
 1575:                   &get_post_versions(\%subversions,$contrib{$idx.':subject'},1,$numoldver);
 1576:                   $subject = &mt('Re: ').$subversions{$numoldver};
 1577:               }
 1578:               $subject = &HTML::Entities::encode($subject,'<>&"');
 1579:           } else {
 1580:               $attachmenturls = $contrib{$idx.':attachmenturl'};
 1581:               if ($idx > 0) {
 1582:                   my %msgversions = ();
 1583:                   &get_post_versions(\%msgversions,$contrib{$idx.':message'},0,$numoldver);
 1584:                   $comment = $msgversions{$numoldver};
 1585:                   my %subversions = ();
 1586:                   &get_post_versions(\%subversions,$contrib{$idx.':subject'},0,$numoldver);
 1587:                   $subject = $subversions{$numoldver}; 
 1588:               }
 1589:               if (defined($contrib{$idx.':replyto'})) {
 1590:                   $parentmsg = $contrib{$idx.':replyto'};
 1591:               }
 1592:               unless (exists($env{'form.origpage'})) {
 1593:                   my $anonflag = 'nonanon';
 1594:                   if ($contrib{$idx.':anonymous'}) {
 1595:                       $anonflag = 'anon';
 1596:                   }
 1597:                   $anonscript = (<<END);
 1598:   function setposttype () {
 1599:       var currtype = "$anonflag";
 1600:       for (var i=0; i<document.mailform.discuss.length; i++) {
 1601: 	  if (document.mailform.elements.discuss[i].value == currtype ) {
 1602: 	      document.mailform.elements.discuss[i].checked=1;
 1603: 	  } 
 1604:       }
 1605:       return
 1606:   }
 1607: END
 1608:               }
 1609:           }
 1610:       }
 1611:       if ($env{'form.previous'}) {
 1612:           $prevtag = '<input type="hidden" name="previous" value="'.$env{'form.previous'}.'" />';
 1613:       }
 1614:   }
 1615: 
 1616:   if ($env{'form.origpage'}) {
 1617:       $subject = &unescape($env{'form.subject'});
 1618:       $comment = &unescape($env{'form.comment'});
 1619:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 1620:   }
 1621:   my $latexHelp=&Apache::loncommon::helpLatexCheatsheet();
 1622:   my $send=&mt('Send');
 1623:   my $alert = &mt('Please select a feedback type.');
 1624:   my $js= <<END;
 1625: <script type="text/javascript">
 1626: //<!--
 1627:     function gosubmit() {
 1628:         var rec=0;
 1629:         if (typeof(document.mailform.elements.discuss)!="undefined") {
 1630: 	    if (typeof(document.mailform.elements.discuss.length) == "undefined") {
 1631: 		if (document.mailform.elements.discuss.checked ) {
 1632: 		    rec=1;
 1633: 		}
 1634: 	    } else {
 1635: 		for (var i=0; i<document.mailform.elements.discuss.length; i++) {
 1636: 		    if (document.mailform.elements.discuss[i].checked ) {
 1637: 			rec=1;
 1638: 		    } 
 1639: 		}
 1640: 	    }
 1641: 	}
 1642:         if (typeof(document.mailform.elements.blog)!="undefined") {
 1643:           if (document.mailform.elements.blog.checked) {
 1644:              rec=1;
 1645:           } 
 1646:         }
 1647: 
 1648:         if (rec) {
 1649:             if (typeof(document.mailform.onsubmit)=='function') {
 1650: 		document.mailform.onsubmit();
 1651: 	    }
 1652: 	    document.mailform.submit();
 1653:         } else {
 1654:             alert('$alert');
 1655: 	}
 1656:     }
 1657:     $anonchk
 1658:     $anonscript
 1659: //-->
 1660: </script>
 1661: END
 1662: 
 1663:   my %onload = ('onload' => 'window.focus();setposttype();');
 1664:   my $start_page=
 1665:       &Apache::loncommon::start_page('Resource Feedback and Discussion',$js,
 1666: 				     {'add_entries' => \%onload});
 1667: 
 1668:   if ($quote ne '') {
 1669:       &newline_to_br(\$quote);
 1670:       $quote='<blockquote>'.&Apache::lontexconvert::msgtexconverted($quote).'</blockquote>';
 1671:   }
 1672: 
 1673:   $r->print(<<END);
 1674: $start_page
 1675: <h2><tt>$restitle</tt></h2>
 1676: <form action="/adm/feedback" method="post" name="mailform"
 1677: enctype="multipart/form-data">
 1678: $prevtag
 1679: <input type="hidden" name="postdata" value="$feedurl" />
 1680: END
 1681:   if ($env{'form.replydisc'}) {
 1682:       $r->print(<<END);
 1683: <input type="hidden" name="replydisc" value="$env{'form.replydisc'}" />
 1684: END
 1685:   } elsif ($env{'form.editdisc'}) {
 1686:      $r->print(<<END);
 1687: <input type="hidden" name="editdisc" value ="$env{'form.editdisc'}" />
 1688: <input type="hidden" name="parentmsg" value ="$parentmsg" />
 1689: END
 1690:   }
 1691:   $r->print(<<END);
 1692: $lt{'plch'}
 1693: $options<hr />
 1694: $quote
 1695: <p>$lt{'myqu'}</p>
 1696: <p>
 1697: $latexHelp
 1698: $lt{'title'}: <input type="text" name="subject" size="30" value="$subject" /></p>
 1699: <p>
 1700: <textarea name="comment" id="comment" cols="60" rows="10" wrap="hard">$comment
 1701: </textarea></p>
 1702: <p>
 1703: END
 1704:     if ( ($env{'form.editdisc'}) || ($env{'form.replydisc'}) ) {
 1705:         if ($env{'form.origpage'}) {
 1706:             foreach my $attach (@currnewattach) {
 1707:                 $r->print('<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n");
 1708:             }
 1709:             foreach my $oldatt (@currdelold) {
 1710:                 $r->print('<input type="hidden" name="deloldattach" value="'.$oldatt.'" />'."\n");
 1711:             }
 1712:         }
 1713:         if ($env{'form.editdisc'}) {
 1714:             if ($attachmenturls) {
 1715:                 &extract_attachments($attachmenturls,$idx,$numoldver,\$attachmsg,\%attachments,\%currattach,\@currdelold);
 1716:                 $attachnum = scalar(keys(%currattach));
 1717:                 foreach my $key (keys(%currattach)) {
 1718:                     $r->print('<input type="hidden" name="keepold" value="'.$key.'" />'."\n");
 1719:                 }
 1720:             }
 1721:         }
 1722:     } else {
 1723:         $r->print(<<END);
 1724: $lt{'atta'} $attachmaxtext: <input type="file" name="attachment" />
 1725: </p>
 1726: END
 1727:     }
 1728:     if (exists($env{'form.group'})) {
 1729:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 1730:     }
 1731:     if (exists($env{'form.ref'})) {
 1732:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 1733:     }
 1734:     $r->print(<<END);
 1735: <p>
 1736: <input type="hidden" name="sendit" value="1" />
 1737: <input type="button" value="$send" onClick='gosubmit();' />
 1738: </p>
 1739: </form>
 1740: END
 1741:     if ($env{'form.editdisc'} || $env{'form.replydisc'}) {
 1742:         my $now = time;
 1743:         my $ressymb = $symb;
 1744:         &Apache::lonenc::check_encrypt(\$ressymb);
 1745:         my $postidx = '';
 1746:         if ($env{'form.editdisc'}) {
 1747:             $postidx = $idx;
 1748:         }
 1749:         if (@currnewattach > 0) {
 1750:             $attachnum += @currnewattach;
 1751:         }
 1752:         my $blockblog = &Apache::loncommon::blocking_status('blogs');
 1753:         $r->print(&generate_attachments_button($postidx,$attachnum,$ressymb,$now,\@currnewattach,\@currdelold,$numoldver,'',$blockblog));
 1754:         if ($attachnum > 0) {
 1755:             if (@currnewattach > 0) {
 1756:                 $newattachmsg .= '<br /><b>'.&mt('New attachments').'</b><br />';
 1757:                 if (@currnewattach > 1) {
 1758:                     $newattachmsg .= '<ol>';
 1759:                     foreach my $item (@currnewattach) {
 1760:                         $item =~ m#.*/([^/]+)$#;
 1761:                         $newattachmsg .= '<li><a href="'.$item.'">'.$1.'</a></li>'."\n";
 1762:                     }
 1763:                     $newattachmsg .= '</ol>'."\n";
 1764:                 } else {
 1765:                     $currnewattach[0] =~ m#.*/([^/]+)$#;
 1766:                     $newattachmsg .= '<a href="'.$currnewattach[0].'">'.$1.'</a><br />'."\n";
 1767:                 }
 1768:             }
 1769:             if ($attachmsg) {
 1770:                 $r->print("<br /><b>$lt{'reta'}</b>:$attachmsg<br />\n");
 1771:             }
 1772:             if ($newattachmsg) {
 1773:                 $r->print("$newattachmsg<br />");
 1774:             }
 1775:         }
 1776:     }
 1777:     $r->print(&generate_preview_button().
 1778:               &Apache::lonhtmlcommon::htmlareaselectactive('comment').
 1779: 	      &Apache::loncommon::end_page());
 1780: 
 1781: }
 1782: 
 1783: sub print_display_options {
 1784:     my ($r,$symb,$previous,$dispchgA,$dispchgB,$markchg,$toggchg,$feedurl) = @_;
 1785:     &Apache::loncommon::content_type($r,'text/html');
 1786:     $r->send_http_header;
 1787: 
 1788:     my $function = &Apache::loncommon::get_users_function();
 1789:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 1790:                                                     $env{'user.domain'});
 1791: 
 1792:     my %lt = &Apache::lonlocal::texthash(
 1793:         'pref' => 'Display Preference',
 1794:         'curr' => 'Current setting ',
 1795:         'actn' => 'Action',
 1796:         'deff' => 'Default for all discussions',
 1797:         'prca' => 'Preferences can be set for this discussion that determine ....',
 1798:         'whpo' => 'Which posts are displayed when you display this bulletin board or resource, and',
 1799:         'unwh' => 'Under what circumstances posts are identified as "NEW", and',
 1800:         'wipa' => 'Whether individual posts can be marked as read/unread',
 1801:         'allposts' => 'All posts',
 1802:         'unread' => 'New posts only',
 1803:         'unmark' => 'Posts not marked read',
 1804:         'ondisp' => 'Once displayed',
 1805:         'onmark' => 'Once marked not NEW',
 1806:         'toggon' => 'Shown',
 1807:         'toggoff' => 'Not shown',
 1808:         'disa' => 'Posts displayed?',
 1809:         'npmr' => 'New posts cease to be identified as "NEW"?',
 1810:         'dotm' => 'Option to mark each post as read/unread?',  
 1811:         'chgt' => 'Change to ',
 1812:         'mkdf' => 'Set to ',
 1813:         'yhni' => 'You have not indicated that you wish to change any of the discussion settings',
 1814:         'ywbr' => 'You will be returned to the previous page if you click OK.'
 1815:     );
 1816: 
 1817:     my $dispchangeA = $lt{'unread'};
 1818:     my $dispchangeB = $lt{'unmark'};
 1819:     my $markchange = $lt{'ondisp'};
 1820:     my $toggchange = $lt{'toggon'};
 1821:     my $currdisp = $lt{'allposts'};
 1822:     my $currmark = $lt{'onmark'};
 1823:     my $discdisp = 'allposts';
 1824:     my $discmark = 'onmark';
 1825:     my $currtogg = $lt{'toggoff'};
 1826:     my $disctogg = 'toggoff';
 1827:                                                                                       
 1828:     if ($dispchgA eq 'allposts') {
 1829:         $dispchangeA = $lt{'allposts'};
 1830:         $currdisp = $lt{'unread'};
 1831:         $discdisp = 'unread';
 1832:     }
 1833: 
 1834:     if ($markchg eq 'markonread') {
 1835:         $markchange = $lt{'onmark'};
 1836:         $currmark = $lt{'ondisp'};
 1837:         $discmark = 'ondisp';
 1838:     }
 1839: 
 1840:     if ($dispchgB eq 'onlyunread') {
 1841:         $dispchangeB = $lt{'unread'};
 1842:         $currdisp = $lt{'unmark'};
 1843:         $discdisp = 'unmark';
 1844:     }
 1845:     if ($toggchg eq 'toggoff') {
 1846:         $toggchange = $lt{'toggoff'};
 1847:         $currtogg = $lt{'toggon'};
 1848:         $disctogg = 'toggon';
 1849:     }
 1850: 
 1851:     my $js = <<END;
 1852: <script type="text/javascript">
 1853: function discdispChk(caller) {
 1854:     var disctogg = '$toggchg'
 1855:     if (caller == 0) {
 1856:         if (document.modifydisp.discdisp[0].checked == true) {
 1857:             if (document.modifydisp.discdisp[1].checked == true) {
 1858:                 document.modifydisp.discdisp[1].checked = false
 1859:             }
 1860:         }
 1861:     }
 1862:     if (caller == 1) {
 1863:         if (document.modifydisp.discdisp[1].checked == true) {
 1864:             if (document.modifydisp.discdisp[0].checked == true) {
 1865:                 document.modifydisp.discdisp[0].checked = false
 1866:             }
 1867:             if (disctogg == 'toggon') {
 1868:                 document.modifydisp.disctogg.checked = true
 1869:             }
 1870:             if (disctogg == 'toggoff') {
 1871:                 document.modifydisp.disctogg.checked = false
 1872:             }
 1873:         }
 1874:     }
 1875:     if (caller == 2) {
 1876:         var dispchgB = '$dispchgB'
 1877:         if (disctogg == 'toggoff') {
 1878:             if (document.modifydisp.disctogg.checked == true) {
 1879:                 if (dispchgB == 'onlyunmark') {
 1880:                     document.modifydisp.discdisp[1].checked = false
 1881:                 }
 1882:             }
 1883:         }
 1884:     }  
 1885: }
 1886: 
 1887: function setDisp() {
 1888:     var prev = "$previous"
 1889:     var chktotal = 0
 1890:     if (document.modifydisp.discdisp[0].checked == true) {
 1891:         document.modifydisp.$dispchgA.value = "$symb"
 1892:         chktotal ++
 1893:     }
 1894:     if (document.modifydisp.discdisp[1].checked == true) {
 1895:         document.modifydisp.$dispchgB.value = "$symb"
 1896:         chktotal ++
 1897:     }
 1898:     if (document.modifydisp.discmark.checked == true) {
 1899:         document.modifydisp.$markchg.value = "$symb"
 1900:         chktotal ++
 1901:     }
 1902:     if (document.modifydisp.disctogg.checked == true) {
 1903:         document.modifydisp.$toggchg.value = "$symb"
 1904:         chktotal ++
 1905:     }
 1906:     if (chktotal > 0) { 
 1907:         document.modifydisp.submit()
 1908:     } else {
 1909:         if(confirm("$lt{'yhni'}. \\n$lt{'ywbr'}"))      {
 1910:             if (prev > 0) {
 1911:                 location.href = "$feedurl?previous=$previous"
 1912:             } else {
 1913:                 location.href = "$feedurl"
 1914:             }
 1915:         }
 1916:     }
 1917: }
 1918: </script>
 1919: END
 1920: 
 1921: 
 1922:     my $start_page =
 1923: 	&Apache::loncommon::start_page('Discussion display options',$js);
 1924:     my $end_page =
 1925: 	&Apache::loncommon::end_page();
 1926:     $r->print(<<END);
 1927: $start_page
 1928: <form name="modifydisp" method="POST" action="/adm/feedback">
 1929: $lt{'sdpf'}<br/> $lt{'prca'}  <ol><li>$lt{'whpo'}</li><li>$lt{'unwh'}</li><li>$lt{'wipa'}</li></ol>
 1930: <br />
 1931: END
 1932:     $r->print(&Apache::loncommon::start_data_table());
 1933:     $r->print(<<END);
 1934:        <tr>
 1935:         <th>$lt{'pref'}</td>
 1936:         <th>$lt{'curr'}</td>
 1937:         <th>$lt{'actn'}?</td>
 1938:        </tr>
 1939: END
 1940:     $r->print(&Apache::loncommon::start_data_table_row());
 1941:     $r->print(<<END);
 1942:        <td>$lt{'disa'}</td>
 1943:        <td>$lt{$discdisp}</td>
 1944:        <td><label><input type="checkbox" name="discdisp" onClick="discdispChk('0')" />&nbsp;$lt{'chgt'} "$dispchangeA"</label>
 1945:            <br />
 1946:            <label><input type="checkbox" name="discdisp" onClick="discdispChk('1')" />&nbsp;$lt{'chgt'} "$dispchangeB"</label>
 1947:        </td>
 1948: END
 1949:     $r->print(&Apache::loncommon::end_data_table_row());
 1950:     $r->print(&Apache::loncommon::start_data_table_row());
 1951:     $r->print(<<END);
 1952:        <td>$lt{'npmr'}</td>
 1953:        <td>$lt{$discmark}</td>
 1954:        <td><label><input type="checkbox" name="discmark" />$lt{'chgt'} "$markchange"</label></td>
 1955: END
 1956:     $r->print(&Apache::loncommon::end_data_table_row());
 1957:     $r->print(&Apache::loncommon::start_data_table_row());
 1958:     $r->print(<<END);
 1959:        <td>$lt{'dotm'}</td>
 1960:        <td>$lt{$disctogg}</td>
 1961:        <td><label><input type="checkbox" name="disctogg" onClick="discdispChk('2')" />$lt{'chgt'} "$toggchange"</label></td>
 1962: END
 1963:     my $save = &mt('Save Changes');
 1964:     $r->print(&Apache::loncommon::end_data_table_row());
 1965:     $r->print(&Apache::loncommon::end_data_table());
 1966:     $r->print(<<END);
 1967: <br />
 1968: <br />
 1969: <input type="hidden" name="symb" value="$symb" />
 1970: <input type="hidden" name="previous" value="$previous" />
 1971: <input type="hidden" name="$dispchgA" value=""/>
 1972: <input type="hidden" name="$dispchgB" value=""/>
 1973: <input type="hidden" name="$markchg" value=""/>
 1974: <input type="hidden" name="$toggchg" value="" />
 1975: <input type="button" name="sub" value="$save" onClick="javascript:setDisp()" />
 1976: END
 1977:     if (exists($env{'form.group'})) {
 1978:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 1979:     }
 1980:     if (exists($env{'form.ref'})) {
 1981:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 1982:     }
 1983:     $r->print("
 1984: <br />
 1985: <br />
 1986: </form>
 1987: $end_page
 1988:     ");
 1989:     return;
 1990: }
 1991: 
 1992: sub print_sortfilter_options {
 1993:     my ($r,$symb,$previous,$feedurl) = @_;
 1994: 
 1995:     &Apache::loncommon::content_type($r,'text/html');
 1996:     $r->send_http_header;
 1997: 
 1998:     &Apache::lonenc::check_encrypt(\$symb);
 1999:     my @sections;
 2000:     my $section_sel = '';
 2001:     my $numvisible = 5;
 2002:     my @groups;
 2003:     my $group_sel = '';
 2004:     my $numgroupvis = 5;
 2005:     my %sectioncount = &Apache::loncommon::get_sections();
 2006: 
 2007:     if ($env{'request.course.sec'} !~ /^\s*$/) {  #Restrict section choice to current section 
 2008:         @sections = ('all',$env{'request.course.sec'});
 2009:         $numvisible = 2;
 2010:     } else {
 2011:         @sections = sort {$a cmp $b} keys(%sectioncount);
 2012:         if (scalar(@sections) < 4) {
 2013:             $numvisible = scalar(@sections) + 1;
 2014:         }
 2015:         unshift(@sections,'all'); # Put 'all' at the front of the list
 2016: 
 2017:     }
 2018:     foreach my $sec (@sections) {
 2019:         $section_sel .= "  <option value=\"$sec\">$sec</option>\n";
 2020:     }
 2021: 
 2022:     if (&check_group_priv() eq 'ok') {
 2023:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2024:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; 
 2025:         my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
 2026:         @groups = sort {$a cmp $b} keys(%curr_groups);
 2027:         if (scalar(@groups) < 4) {
 2028:             $numgroupvis = scalar(@groups) + 1;
 2029:         }
 2030:         unshift(@groups,'all'); # Put 'all' at the front of the list
 2031:     } else { 
 2032:         my @coursegroups = split(/:/,$env{'request.course.groups'});
 2033:         if (@coursegroups > 0) {
 2034:             @coursegroups = sort {$a cmp $b} @coursegroups;
 2035:             @groups = ('all',@coursegroups);
 2036:             if (scalar(@groups) < 4) {
 2037:                 $numgroupvis = scalar(@groups) + 1;
 2038:             }
 2039:         } else {
 2040:             @groups = ('all');
 2041:             $numgroupvis = 1;
 2042:         }
 2043:     }
 2044:     foreach my $group (@groups) {
 2045:         $group_sel .= "  <option value=\"$group\">$group</option>\n";
 2046:     }
 2047: 
 2048:     my $function = &Apache::loncommon::get_users_function();
 2049:     my $tabcolor = &Apache::loncommon::designparm($function.'.tabbg',
 2050:                                                     $env{'user.domain'});
 2051:     my %lt = &Apache::lonlocal::texthash(
 2052:         'diop' => 'Display Options',
 2053:         'curr' => 'Current setting ',
 2054:         'actn' => 'Action',
 2055:         'prca' => 'Set options that control the sort order of posts, and/or which posts are displayed.',
 2056:         'soor' => 'Sort order',
 2057:         'spur' => 'Specific user roles',
 2058:         'sprs' => 'Specific role status',
 2059:         'spse' => 'Specific sections',
 2060:         'spgr' => 'Specific groups',
 2061:         'psub' => 'Pick specific users (by name)',
 2062:         'shal' => 'Show a list of current posters',
 2063:         'stor' => 'Save changes',
 2064:     );
 2065: 
 2066:     my %sort_types = ();
 2067:     my %role_types = ();
 2068:     my %status_types = ();
 2069:     &sort_filter_names(\%sort_types,\%role_types,\%status_types);
 2070: 
 2071:     my $js = <<END;
 2072: <script type="text/javascript">
 2073: function verifyFilter() {
 2074:     var rolenum = 0
 2075:     for (var i=0; i<document.modifyshown.rolefilter.length; i++) {
 2076:         if (document.modifyshown.rolefilter.options[i].selected == true) {
 2077:             rolenum ++
 2078:         }
 2079:     }
 2080:     if (rolenum == 0) {
 2081:         document.modifyshown.rolefilter.options[0].selected = true
 2082:     }
 2083: 
 2084:     var secnum = 0
 2085:     for (var i=0; i<document.modifyshown.sectionpick.length; i++) {
 2086:         if (document.modifyshown.sectionpick.options[i].selected == true) {
 2087:             secnum ++
 2088:         }
 2089:     }
 2090:     if (secnum == 0) {
 2091:         document.modifyshown.sectionpick.options[0].selected = true
 2092:     }
 2093: 
 2094:     var grpnum = 0
 2095:     for (var i=0; i<document.modifyshown.grouppick.length; i++) {
 2096:         if (document.modifyshown.grouppick.options[i].selected == true) {
 2097:             grpnum ++
 2098:         }
 2099:     }
 2100:     if (grpnum == 0) {
 2101:         document.modifyshown.grouppick.options[0].selected = true
 2102:     }
 2103: 
 2104:     document.modifyshown.submit();
 2105: }
 2106: </script>
 2107: END
 2108: 
 2109:     my $start_page=
 2110: 	&Apache::loncommon::start_page('Discussion options',$js);
 2111:     my $end_page=
 2112: 	&Apache::loncommon::end_page();
 2113: 
 2114:     $r->print(<<END);
 2115: $start_page
 2116: <form name="modifyshown" method="POST" action="/adm/feedback">
 2117: <b>$lt{'diso'}</b><br/> $lt{'prca'}
 2118: <br /><br />
 2119: <table border="0">
 2120:  <tr>
 2121:   <td><b>$lt{'soor'}</b></td>
 2122:   <td>&nbsp;</td>
 2123:   <td><b>$lt{'sprs'}</b></td>
 2124:   <td>&nbsp;</td>
 2125:   <td><b>$lt{'spur'}</b></td>
 2126:   <td>&nbsp;</td>
 2127:   <td><b>$lt{'spse'}</b></td>
 2128:   <td>&nbsp;</td>
 2129:   <td><b>$lt{'spgr'}</b></td>
 2130:   <td>&nbsp;</td>
 2131:   <td><b>$lt{'psub'}</b></td>
 2132:  </tr>
 2133:  <tr>
 2134:   <td align="center" valign="top">
 2135:    <select name="sortposts">
 2136:     <option value="ascdate" selected="selected">$sort_types{'ascdate'}</option>
 2137:     <option value="descdate">$sort_types{'descdate'}</option>
 2138:     <option value="thread">$sort_types{'thread'}</option>
 2139:     <option value="subject">$sort_types{'subject'}</option>
 2140:     <option value="username">$sort_types{'username'}</option>
 2141:     <option value="lastfirst">$sort_types{'lastfirst'}</option>
 2142:    </select>
 2143:   </td>
 2144:   <td>&nbsp;</td>
 2145:   <td align="center" valign="top">
 2146:    <select name="statusfilter">
 2147:     <option value="all" selected="selected">$status_types{'all'}</option>
 2148:     <option value="Active">$status_types{'Active'}</option>
 2149:     <option value="Expired">$status_types{'Expired'}</option>
 2150:     <option value="Future">$status_types{'Future'}</option>
 2151:    </select>
 2152:   </td>
 2153:   <td>&nbsp;</td>
 2154:   <td align="center" valign="top">
 2155:    <select name="rolefilter" multiple="true" size="5">
 2156:     <option value="all">$role_types{'all'}</option>
 2157:     <option value="st">$role_types{'st'}</option>
 2158:     <option value="cc">$role_types{'cc'}</option>
 2159:     <option value="in">$role_types{'in'}</option>
 2160:     <option value="ta">$role_types{'ta'}</option>
 2161:     <option value="ep">$role_types{'ep'}</option>
 2162:     <option value="cr">$role_types{'cr'}</option>
 2163:    </select>
 2164:   </td>
 2165:   <td>&nbsp;</td>
 2166:   <td align="center" valign="top">
 2167:    <select name="sectionpick" multiple="true" size="$numvisible">
 2168:     $section_sel
 2169:    </select>
 2170:   </td>
 2171:   <td>&nbsp;</td>
 2172:   <td align="center" valign="top">
 2173:    <select name="grouppick" multiple="true" size="$numvisible">
 2174:     $group_sel
 2175:    </select>
 2176:   </td>
 2177:   <td>&nbsp;</td>
 2178:   <td valign="top"><label><input type="checkbox" name="posterlist" value="$symb" />$lt{'shal'}</label></td>
 2179:  </tr>
 2180: </table>
 2181: <br />
 2182: <br />
 2183: <input type="hidden" name="previous" value="$previous" />
 2184: <input type="hidden" name="applysort" value="$symb" />
 2185: <input type="button" name="sub" value="$lt{'stor'}" onClick="verifyFilter()" />
 2186: END
 2187:     if (exists($env{'form.group'})) {
 2188:         $r->print('<input type="hidden" name="group" value="'.$env{'form.group'}.'" />');
 2189:     }
 2190:     if (exists($env{'form.ref'})) {
 2191:         $r->print('<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />');
 2192:     }
 2193:     $r->print("
 2194: <br />
 2195: <br />
 2196: </form>
 2197: $end_page
 2198: ");
 2199: }
 2200: 
 2201: sub print_showposters {
 2202:     my ($r,$symb,$previous,$feedurl,$sortposts) = @_;
 2203: 
 2204:     &Apache::loncommon::content_type($r,'text/html');
 2205:     $r->send_http_header;
 2206: 
 2207:     &Apache::lonenc::check_encrypt(\$symb);
 2208:     my $crs='/'.$env{'request.course.id'};
 2209:     if ($env{'request.course.sec'}) {
 2210:         $crs.='_'.$env{'request.course.sec'};
 2211:     }
 2212:     $crs=~s/\_/\//g;
 2213:     my $seeid;
 2214:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2215:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2216:     my $group = $env{'form.group'};
 2217:     my $ressymb = &wrap_symb($symb);
 2218:     if (($group ne '') &&
 2219:         ($ressymb =~ m|^bulletin___ \d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$|)) {
 2220:         if (&check_group_priv($group,'dgp') eq 'ok') {
 2221:             $seeid = 1;
 2222:         }
 2223:     } else {
 2224:         $seeid=&Apache::lonnet::allowed('rin',$crs);
 2225:     }
 2226:     my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 2227:                                          $cdom,$cnum);
 2228:     my %namesort = ();
 2229:     my %postcounts = ();
 2230: 
 2231:     my %lt = &Apache::lonlocal::texthash(
 2232:                                           sele => 'Select',
 2233:                                           full => 'Fullname',
 2234:                                           usdo => 'Username:domain',
 2235:                                           post => 'Posts',
 2236:                                         );
 2237:     if ($contrib{'version'}) {
 2238:         for (my $idx=1;$idx<=$contrib{'version'};$idx++) {
 2239:             my $hidden=($contrib{'hidden'}=~/\.$idx\./);
 2240:             my $deleted=($contrib{'deleted'}=~/\.$idx\./);
 2241:             unless ((($hidden) && (!$seeid)) || ($deleted)) {
 2242:                 if ((!$contrib{$idx.':anonymous'}) || (&Apache::lonnet::allowed('rin',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
 2243:                     my %names = &Apache::lonnet::get('environment',['firstname','lastname'],$contrib{$idx.':senderdomain'},$contrib{$idx.':sendername'});
 2244:                     my $lastname = $names{'lastname'};
 2245:                     my $firstname = $names{'firstname'};
 2246:                     if ($lastname eq '') {
 2247:                         $lastname = '_';
 2248:                     }
 2249:                     if ($firstname eq '') {
 2250:                         $firstname = '_';
 2251:                     }
 2252:                     unless (defined($namesort{$lastname})) {
 2253:                         %{$namesort{$lastname}} = ();
 2254:                     }
 2255:                     my $poster =  $contrib{$idx.':sendername'}.':'.$contrib{$idx.':senderdomain'};
 2256:                     $postcounts{$poster} ++;
 2257:                     if (defined($namesort{$lastname}{$firstname})) {
 2258:                         if (!grep/^$poster$/,@{$namesort{$lastname}{$firstname}}) {
 2259:                             push(@{$namesort{$lastname}{$firstname}}, $poster);
 2260:                         }
 2261:                     } else {
 2262:                         @{$namesort{$lastname}{$firstname}} = ("$poster");
 2263:                     }
 2264:                 }
 2265:             }
 2266:         }
 2267:     }
 2268: 
 2269:     my $start_page = &Apache::loncommon::start_page('Discussion options');
 2270:     my $table_start =&Apache::loncommon::start_data_table();
 2271:     $r->print(<<END);
 2272: $start_page
 2273:  <form name="pickpostersform" method="post">
 2274:  <br />
 2275:     $table_start
 2276:       <tr>
 2277:        <th>#</th>
 2278:        <th>$lt{'sele'}</th>
 2279:        <th>$lt{'full'} <font color="#999999">($lt{'usdo'})</font></th>
 2280:        <th>$lt{'post'}</th>
 2281:       </tr>
 2282: END
 2283:     my $count = 0;
 2284:     foreach my $last (sort(keys(%namesort))) {
 2285:         foreach my $first (sort(keys(%{$namesort{$last}}))) {
 2286:             foreach my $user (sort(@{$namesort{$last}{$first}})) {
 2287:                 my ($uname,$udom) = split(/:/,$user);
 2288:                 if (!$uname || !$udom) { 
 2289:                     next;
 2290:                 } else {
 2291:                     $count ++;
 2292:                     $r->print(&Apache::loncommon::start_data_table_row().
 2293: 			      '<td align="right">'.$count.'</td>
 2294:                                <td align="center"><label><input name="stuinfo" type="checkbox" value="'.$user.'" /></td>
 2295:                                <td>'.$last.', '.$first.' ('.$uname.':'.$udom.')</label></td>
 2296:                                <td>'.$postcounts{$user}.'</td>'.
 2297: 			      &Apache::loncommon::end_data_table_row());
 2298:                 }
 2299:             }
 2300:         }
 2301:     }
 2302:     $r->print(&Apache::loncommon::end_data_table());
 2303:     my $end_page   = &Apache::loncommon::end_page();
 2304:     $r->print(<<END);
 2305: <br />
 2306: <input type="hidden" name="sortposts" value="$sortposts" />
 2307: <input type="hidden" name="userpick" value="$symb" />
 2308: <input type="button" name="store" value="Display posts" onClick="javascript:document.pickpostersform.submit()" />
 2309: </form>
 2310: $end_page
 2311: END
 2312: }
 2313: 
 2314: sub get_post_versions {
 2315:     my ($versions,$incoming,$htmldecode,$numver) = @_;
 2316:     if ($incoming =~ /^<version num="0">/) {
 2317:         my $p = HTML::LCParser->new(\$incoming);
 2318:         my $done = 0; 
 2319: 
 2320:         while ( (my $token = $p->get_tag("version")) && (!$done)) {
 2321:             my $num = $token->[1]{num};
 2322:             my $text = $p->get_text("/version");
 2323:             if (defined($numver)) {
 2324:                 if ($num == $numver) {
 2325:                     if ($htmldecode) {
 2326:                         $text = &HTML::Entities::decode($text);
 2327:                     }
 2328:                     $$versions{$numver}=$text;
 2329:                     $done = 1;
 2330:                 }
 2331:             } else {
 2332:                 if ($htmldecode) {
 2333:                     $text = &HTML::Entities::decode($text);
 2334:                 }
 2335:                 $$versions{$num}=$text;
 2336:             }
 2337:         }
 2338:     } else {
 2339:         if (!defined($numver)) {
 2340:             $numver = 0;
 2341:         }
 2342:         if ($htmldecode) {
 2343:             $$versions{$numver} = $incoming;
 2344:         } else {
 2345:             $$versions{$numver} = &HTML::Entities::encode($incoming,'<>&"');
 2346:         }
 2347:     }
 2348:     return;
 2349: }
 2350: 
 2351: sub get_post_attachments {
 2352:     my ($attachments,$attachmenturls) = @_;
 2353:     my $num;
 2354:     if ($attachmenturls =~ m/^<attachment id="0">/) {
 2355:         my $p = HTML::LCParser->new(\$attachmenturls);
 2356:         while (my $token = $p->get_tag("attachment","filename","post"))  {
 2357:             if ($token->[0] eq "attachment") {
 2358:                 $num = $token->[1]{id};
 2359:                 %{$$attachments{$num}} =();
 2360:             } elsif ($token->[0] eq "filename") {
 2361:                 $$attachments{$num}{'filename'} = $p->get_text("/filename");
 2362:             } elsif ($token->[0] eq "post") {
 2363:                 my $id = $token->[1]{id};
 2364:                 $$attachments{$num}{$id} = $p->get_text("/post");
 2365:             }
 2366:         }
 2367:     } else {
 2368:         %{$$attachments{'0'}} = ();
 2369:         $$attachments{'0'}{'filename'} = $attachmenturls;
 2370:         $$attachments{'0'}{'0'} = 'n';
 2371:     }
 2372: 
 2373:     return;
 2374: }
 2375: 
 2376: sub fail_redirect {
 2377:   my ($r,$feedurl) = @_;
 2378:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2379:   my %lt = &Apache::lonlocal::texthash(
 2380:                  'sorr' => 'Sorry, no recipients  ...',
 2381:   );
 2382:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2383:   $r->print(&Apache::loncommon::start_page('Feedback not sent',undef,
 2384: 					   {'redirect'  => [2,$feedurl],
 2385: 					    'only_body' => 1,}));
 2386:   $r->print(<<ENDFAILREDIR);
 2387: <img align="right" src="$logo" />
 2388: <b>$lt{'sorr'}</b>
 2389: ENDFAILREDIR
 2390:   $r->print(&Apache::loncommon::end_page());
 2391: }
 2392: 
 2393: sub redirect_back {
 2394:   my ($r,$feedurl,$typestyle,$sendsomething,$sendposts,$blog,$status,$previous,$sort,$rolefilter,$statusfilter,$sectionpick,$grouppick,$numpicks,$group,$toolarge) = @_;
 2395:   my $sorttag = '';
 2396:   my $roletag = '';
 2397:   my $statustag = '';
 2398:   my $sectag = '';
 2399:   my $grptag = '';
 2400:   my $userpicktag = '';
 2401:   my $qrystr = '';
 2402:   my $prevtag = '';
 2403: 
 2404:   &Apache::loncommon::content_type($r,'text/html');
 2405:   $r->send_http_header;
 2406:   &dewrapper(\$feedurl);
 2407:   if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
 2408:   if ($previous > 0) {
 2409:       $qrystr = 'previous='.$previous;
 2410:       if ($feedurl =~ /\?register=1/) {
 2411:           $feedurl .= '&'.$qrystr;
 2412:       } else {
 2413:           $feedurl .= '?'.$qrystr;
 2414:       }
 2415:       $prevtag = '<input type="hidden" name="previous" value="'.$previous.'" />';
 2416:   }
 2417:   if (defined($sort)) {
 2418:       my $sortqry = 'sortposts='.$sort;
 2419:       if (($feedurl =~ /\?register=1/) || ($feedurl =~ /\?previous=/)) {
 2420:           $feedurl .= '&'.$sortqry;
 2421:       } else {
 2422:           $feedurl .= '?'.$sortqry;
 2423:       }
 2424:       $sorttag = '<input type="hidden" name="sortposts" value="'.$sort.'" />';
 2425:       if (defined($numpicks)) {
 2426:           my $userpickqry = 'totposters='.$numpicks;
 2427:           $feedurl .= '&'.$userpickqry;
 2428:           $userpicktag = '<input type="hidden" name="totposters" value="'.$numpicks.'" />';
 2429:       } else {
 2430:           if (ref($sectionpick) eq 'ARRAY') {
 2431:               $feedurl .= '&sectionpick=';
 2432:               $sectag .=  '<input type="hidden" name="sectionpick" value="';
 2433:               foreach my $sec (@{$sectionpick}) {
 2434:                   $feedurl .= $sec.',';
 2435:                   $sectag .= $sec.',';
 2436:               }
 2437:               $feedurl =~ s/,$//;
 2438:               $sectag =~ s/,$//;
 2439:               $sectag .= '" />';
 2440:           } else {
 2441:               $feedurl .= '&sectionpick='.$sectionpick;
 2442:               $sectag = '<input type="hidden" name="sectionpick" value="'.$sectionpick.'" />';
 2443:           }
 2444:           if (ref($grouppick) eq 'ARRAY') {
 2445:               $feedurl .= '&grouppick=';
 2446:               $sectag .=  '<input type="hidden" name="grouppick" value="';
 2447:               foreach my $grp (@{$grouppick}) {
 2448:                   $feedurl .= $grp.',';
 2449:                   $grptag .= $grp.',';
 2450:               }
 2451:               $feedurl =~ s/,$//;
 2452:               $grptag =~ s/,$//;
 2453:               $grptag .= '" />';
 2454:           } else {
 2455:               $feedurl .= '&grouppick='.$grouppick;
 2456:               $grptag = '<input type="hidden" name="grouppick" value="'.$grouppick.'" />';
 2457:           }
 2458:           if (ref($rolefilter) eq 'ARRAY') {
 2459:               $feedurl .= '&rolefilter=';
 2460:               $roletag .=  '<input type="hidden" name="rolefilter" value="';
 2461:               foreach my $role (@{$rolefilter}) {
 2462:                   $feedurl .= $role.',';
 2463:                   $roletag .= $role.',';
 2464:               }
 2465:               $feedurl =~ s/,$//;
 2466:               $roletag =~ s/,$//;
 2467:               $roletag .= '" />';
 2468:           } else {
 2469:               $feedurl .= '&rolefilter='.$rolefilter;
 2470:               $roletag = '<input type="hidden" name="rolefilter" value="'.$rolefilter.'" />';
 2471:           }
 2472:           $feedurl .= '&statusfilter='.$statusfilter;
 2473:           $statustag ='<input type="hidden" name="statusfilter" value="'.$statusfilter.'" />';
 2474:       }
 2475:   }
 2476:   my $grouptag;
 2477:   if ($group ne '') {
 2478:       $grouptag = '<input type="hidden" name="group" value="'.$group.'" />';      my $refarg;
 2479:       if (exists($env{'form.ref'})) {
 2480:           $refarg = '&amp;ref='.$env{'form.ref'};
 2481:           $grouptag .= '<input type="hidden" name="ref" value="'.$env{'form.ref'}.'" />';
 2482:       }
 2483:       if ($feedurl =~ /\?/) {
 2484:           $feedurl .= '&amp;group='.$group.$refarg;
 2485:       } else {
 2486:           $feedurl .= '?group='.$group.$refarg;
 2487:       }
 2488:   } 
 2489:   &Apache::lonenc::check_encrypt(\$feedurl);
 2490:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2491:   my %onload;
 2492:   if ($env{'environment.remote'} ne 'off') {
 2493:       $onload{'onload'} =
 2494: 	  "if (window.name!='loncapaclient') { this.document.reldt.submit(); self.window.close(); }";
 2495:   }
 2496:   my $start_page=
 2497:       &Apache::loncommon::start_page('Feedback sent',undef,
 2498: 				     {'redirect'    => [0,$feedurl],
 2499: 				      'only_body'   => 1,
 2500: 				      'add_entries' => \%onload});
 2501:   my $end_page = &Apache::loncommon::end_page();
 2502:   $r->print(<<ENDREDIR);
 2503: $start_page
 2504: <img align="right" src="$logo" />
 2505: $typestyle
 2506: <b>Sent $sendsomething message(s), and $sendposts post(s).</b>
 2507: $blog
 2508: $toolarge
 2509: <font color="red">$status</font>
 2510: <form name="reldt" action="$feedurl" target="loncapaclient">
 2511: $prevtag
 2512: $sorttag
 2513: $statustag
 2514: $roletag
 2515: $sectag
 2516: $grptag
 2517: $userpicktag
 2518: $grouptag
 2519: </form>
 2520: $end_page
 2521: ENDREDIR
 2522: }
 2523: 
 2524: sub no_redirect_back {
 2525:   my ($r,$feedurl) = @_;
 2526:   my $nofeed=&mt('Sorry, no feedback possible on this resource  ...');
 2527:  
 2528:   my %onload;
 2529:   if ($env{'environment.remote'} ne 'off') {
 2530:       $onload{'onload'} = 
 2531: 	  "if (window.name!='loncapaclient') { self.window.close(); }";
 2532:   }
 2533: 
 2534:   my %body_options = ('only_body'   => 1,
 2535: 		      'bgcolor'     => '#FFFFFF',
 2536: 		      'add_entries' => \%onload,);
 2537: 
 2538:   if ($feedurl !~ m{^/adm/feedback}) { 
 2539:       $body_options{'rediect'} = [2,$feedurl];
 2540:   }
 2541:   my $start_page=
 2542:       &Apache::loncommon::start_page('Feedback not sent',undef,
 2543: 				     \%body_options);
 2544: 				      
 2545:   my $end_page = &Apache::loncommon::end_page();
 2546: 
 2547:   &Apache::lonenc::check_encrypt(\$feedurl);
 2548:   my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 2549:   $r->print (<<ENDNOREDIRTWO);
 2550: $start_page
 2551: <img align="right" src="$logo" />
 2552: <b>$nofeed</b>
 2553: <br />
 2554: $end_page
 2555: ENDNOREDIRTWO
 2556: }
 2557: 
 2558: sub screen_header {
 2559:     my ($feedurl,$symb) = @_;
 2560:     my $msgoptions='';
 2561:     my $discussoptions='';
 2562:     unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 2563: 	if (($feedurl=~/^\/res\//) && ($feedurl!~/^\/res\/adm/) && ($env{'user.adv'})) {
 2564: 	    $msgoptions= 
 2565: 		'<p><label><input type="radio" name="discuss" value="author" /> '.
 2566: 		&mt('Feedback to resource author').'</label></p>';
 2567: 	}
 2568:         my %optionhash=();
 2569:         foreach my $type ('question','comment','policy') {
 2570: 	    $optionhash{$type}=$env{'course.'.$env{'request.course.id'}.'.'.$type.'.email.text'};
 2571: 	}
 2572: 	if (&feedback_available(1)) {
 2573: 	    $msgoptions.=
 2574: 		'<p><label><input type="radio" name="discuss" value="question" /> '.
 2575: 		($optionhash{'question'}?$optionhash{'question'}:&mt('Question about resource content')).'</label></p>';
 2576: 	}
 2577: 	if (&feedback_available(0,1)) {
 2578: 	    $msgoptions.=
 2579: 		'<p><label><input type="radio" name="discuss" value="course" /> '.
 2580: 		($optionhash{'comment'}?$optionhash{'comment'}:&mt('Question/Comment/Feedback about course content')).
 2581: 		'</label></p>';
 2582: 	}
 2583: 	if (&feedback_available(0,0,1)) {
 2584: 	    $msgoptions.=
 2585: 		'<p><label><input type="radio" name="discuss" value="policy" /> '.
 2586: 		($optionhash{'policy'}?$optionhash{'policy'}:&mt('Question/Comment/Feedback about course policy')).
 2587: 		'</label></p>';
 2588: 	}
 2589:     }
 2590:     if (($env{'request.course.id'}) && (!$env{'form.sendmessageonly'})) {
 2591:         my ($blocked,$blocktext) = &Apache::loncommon::blocking_status('boards');
 2592:         if (!$blocked && &discussion_open(undef,$symb) && 
 2593: 	    &Apache::lonnet::allowed('pch',
 2594: 				     $env{'request.course.id'}.
 2595: 				     ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 2596: 	    $discussoptions='<label><input type="radio" name="discuss" value="nonanon" checked="checked" /> '.
 2597: 		&mt('Contribution to course discussion of resource');
 2598: 	        $discussoptions.='</label><br /><label><input type="radio" name="discuss" value="anon" /> '.
 2599: 		&mt('Anonymous contribution to course discussion of resource').
 2600: 		' <i>('.&mt('name only visible to course faculty').')</i></label> '.
 2601: 		'<a href="/adm/preferences?action=changescreenname">'.&mt('Change Screenname').'</a>';
 2602:             my $blockblog = &Apache::loncommon::blocking_status('blogs');
 2603:             if (!$blockblog) {
 2604:                 $discussoptions.= &add_blog_checkbox();
 2605:             }
 2606:         }
 2607:     }
 2608:     if ($msgoptions) { $msgoptions='<h2><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/feedback.gif').'" />'.&mt('Sending Messages').'</h2>'.$msgoptions; }
 2609:     if ($discussoptions) { 
 2610: 	$discussoptions='<h2><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').'" />'.&mt('Discussion Contributions').'</h2>'.$discussoptions; }
 2611:     return $msgoptions.$discussoptions;
 2612: }
 2613: 
 2614: sub resource_output {
 2615:   my ($feedurl) = @_;
 2616:   my $usersaw=&Apache::lonnet::ssi_body($feedurl);
 2617:   $usersaw=~s/\<body[^\>]*\>//gi;
 2618:   $usersaw=~s/\<\/body\>//gi;
 2619:   $usersaw=~s/\<html\>//gi;
 2620:   $usersaw=~s/\<\/html\>//gi;
 2621:   $usersaw=~s/\<head\>//gi;
 2622:   $usersaw=~s/\<\/head\>//gi;
 2623:   $usersaw=~s/action\s*\=/would_be_action\=/gi;
 2624:   return $usersaw;
 2625: }
 2626: 
 2627: sub clear_out_html {
 2628:   my ($message,$override,$ignore_htmlarea)=@_;
 2629:   if (!$ignore_htmlarea
 2630:       && !&Apache::lonhtmlcommon::htmlareablocked()) { return $message; }
 2631: # Always allow the <m>-tag
 2632:   my %html=(M=>1);
 2633: # Check if more is allowed
 2634:   my $cid=$env{'request.course.id'};
 2635:   if (($env{"course.$cid.allow_limited_html_in_feedback"} =~ m/yes/i) ||
 2636:       ($override)) {
 2637:       # allows <B> <I> <P> <A> <LI> <OL> <UL> <EM> <BR> <TT> <STRONG> 
 2638:       # <BLOCKQUOTE> <DIV .*> <DIV> <IMG> <M> <SPAN> <H1> <H2> <H3> <H4> <SUB>
 2639:       # <SUP>
 2640:       %html=(B=>1, I=>1, P=>1, A=>1, LI=>1, OL=>1, UL=>1, EM=>1,
 2641: 	     BR=>1, TT=>1, STRONG=>1, BLOCKQUOTE=>1, DIV=>1, IMG=>1,
 2642: 	     M=>1, ALGEBRA=>1, SUB=>1, SUP=>1, SPAN=>1, 
 2643: 	     H1=>1, H2=>1, H3=>1, H4=>1, H5=>1);
 2644:   }
 2645: # Do the substitution of everything that is not explicitly allowed
 2646:   $message =~ s/\<(\/?\s*(\w+)[^\>\<]*)/
 2647: 	  {($html{uc($2)}&&(length($1)<1000))?"\<$1":"\&lt;$1"}/ge;
 2648:   $message =~ s/(\<?\s*(\w+)[^\<\>]*)\>/
 2649: 	  {($html{uc($2)}&&(length($1)<1000))?"$1\>":"$1\&gt;"}/ge;
 2650:   return $message;
 2651: }
 2652: 
 2653: sub assemble_email {
 2654:   my ($message,$prevattempts,$usersaw,$useranswer)=@_;
 2655:   my %lt = &Apache::lonlocal::texthash(
 2656:              'prev' => 'Previous attempts of student (if applicable)',
 2657:              'orig' => 'Original screen output (if applicable)',
 2658:              'corr' => 'Correct Answer(s) (if applicable)',
 2659:   );
 2660:   my $email=<<"ENDEMAIL";
 2661: $message
 2662: ENDEMAIL
 2663:     my $citations=<<"ENDCITE";
 2664: <h2>$lt{'prev'}</h2>
 2665: $prevattempts
 2666: <br /><hr />
 2667: <h2>$lt{'orig'}</h2>
 2668: $usersaw
 2669: <h2>$lt{'corr'}</h2>
 2670: $useranswer
 2671: ENDCITE
 2672:   return ($email,$citations);
 2673: }
 2674: 
 2675: 
 2676: sub feedback_available {
 2677:     my ($question,$course,$policy)=@_;
 2678:     my ($typestyle,%to)=&Apache::lonmsg::decide_receiver('',0,$question,
 2679: 							 $course,$policy);
 2680:     return scalar(%to);
 2681: }
 2682: 
 2683: sub send_msg {
 2684:     my ($title,$feedurl,$email,$citations,$attachmenturl,$symb,%to)=@_;
 2685:     my $status='';
 2686:     my $sendsomething=0;
 2687:     my $restitle = &get_resource_title($symb,$feedurl);
 2688:     if ($title=~/^Error/) { $title=&mt('Feedback').': '.$title; }
 2689:     unless ($title=~/\w/) { $title=&mt('Feedback'); }
 2690:     foreach my $key (keys(%to)) {
 2691: 	if ($key) {
 2692: 	    my ($user,$domain) = split(/\:/,$key,2);
 2693: 	    if (!defined($user)) {
 2694: 		$status.='<br />'.&mt('Error sending message to [_1], no user specified.',$key);
 2695: 	    } elsif (!defined($domain)) {
 2696: 		$status.='<br />'.&mt('Error sending message to [_1], no domain specified.',$key);
 2697: 	    } else {
 2698: 		unless (&Apache::lonmsg::user_normal_msg($user,$domain,
 2699: 							 $title.' ['.$restitle.']',$email,$citations,$feedurl,
 2700: 							 $attachmenturl,undef,undef,$symb,$restitle)=~/ok/) {
 2701: 		    $status.='<br />'.&mt('Error sending message to').' '.$key.'<br />';
 2702: 		} else {
 2703: 		    $sendsomething++;
 2704: 		}
 2705: 	    }
 2706: 	}
 2707:     }
 2708: 
 2709: 
 2710:     my %record=&Apache::lonnet::restore('_feedback');
 2711:     my ($temp)=keys(%record);
 2712:     unless ($temp=~/^error\:/) {
 2713: 	my %newrecord=();
 2714: 	$newrecord{'resource'}=$feedurl;
 2715: 	$newrecord{'subnumber'}=$record{'subnumber'}+1;
 2716: 	unless (&Apache::lonnet::cstore(\%newrecord,'_feedback') eq 'ok') {
 2717: 	    $status.='<br />'.&mt('Not registered').'<br />';
 2718: 	}
 2719:     }
 2720:     
 2721:     return ($status,$sendsomething);
 2722: }
 2723: 
 2724: sub adddiscuss {
 2725:     my ($symb,$email,$anon,$attachmenturl,$subject)=@_;
 2726:     my $status='';
 2727:     my $realsymb;
 2728:     if ($symb=~/^bulletin___/) {
 2729: 	my $filename=(&Apache::lonnet::decode_symb($symb))[2];
 2730: 	$filename=~s|^adm/wrapper/||;
 2731: 	$realsymb=&Apache::lonnet::symbread($filename);
 2732:     }
 2733:     if (&discussion_open(undef,$realsymb) &&
 2734: 	&Apache::lonnet::allowed('pch',$env{'request.course.id'}.
 2735:         ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
 2736: 
 2737:     my %contrib=('message'      => $email,
 2738:                  'sendername'   => $env{'user.name'},
 2739:                  'senderdomain' => $env{'user.domain'},
 2740:                  'screenname'   => $env{'environment.screenname'},
 2741:                  'plainname'    => $env{'environment.firstname'}.' '.
 2742: 		                   $env{'environment.middlename'}.' '.
 2743:                                    $env{'environment.lastname'}.' '.
 2744:                                    $env{'enrironment.generation'},
 2745:                  'attachmenturl'=> $attachmenturl,
 2746:                  'subject'      => $subject);
 2747:     if ($env{'form.replydisc'}) {
 2748: 	$contrib{'replyto'}=(split(/\:\:\:/,$env{'form.replydisc'}))[1];
 2749:     }
 2750:     if ($anon) {
 2751: 	$contrib{'anonymous'}='true';
 2752:     }
 2753:     if (($symb) && ($email)) {
 2754:         my $now = time;
 2755:         if ($env{'form.editdisc'}) {
 2756:             $contrib{'ip'}=$ENV{'REMOTE_ADDR'};
 2757:             $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};
 2758:             $contrib{'timestamp'} = $now;
 2759:             $contrib{'history'} = '';
 2760:             my $numoldver = 0;
 2761:             my ($oldsymb,$oldidx)=split(/\:\:\:/,$env{'form.editdisc'});
 2762: 	    &Apache::lonenc::check_decrypt(\$oldsymb);
 2763:             $oldsymb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 2764: # get timestamp for last post and history
 2765:             my %oldcontrib=&Apache::lonnet::restore($oldsymb,$env{'request.course.id'},
 2766:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 2767:                      $env{'course.'.$env{'request.course.id'}.'.num'});
 2768:             if (defined($oldcontrib{$oldidx.':replyto'})) {
 2769:                 $contrib{'replyto'} = $oldcontrib{$oldidx.':replyto'};
 2770:             }
 2771:             if (defined($oldcontrib{$oldidx.':history'})) {
 2772:                 if ($oldcontrib{$oldidx.':history'} =~ /:/) {
 2773:                     my @oldversions = split(/:/,$oldcontrib{$oldidx.':history'});
 2774:                     $numoldver = @oldversions;
 2775:                 } else {
 2776:                     $numoldver = 1;
 2777:                 }
 2778:                 $contrib{'history'} = $oldcontrib{$oldidx.':history'}.':';
 2779:             }
 2780:             my $numnewver = $numoldver + 1;
 2781:             if (defined($oldcontrib{$oldidx.':subject'})) {
 2782:                 if ($oldcontrib{$oldidx.':subject'} =~ /^<version num="0">/) {
 2783:                     $contrib{'subject'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 2784:                     $contrib{'subject'} = $oldcontrib{$oldidx.':subject'}.$contrib{'subject'};
 2785:                 } else {
 2786:                     $contrib{'subject'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':subject'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
 2787:                 }
 2788:             } 
 2789:             if (defined($oldcontrib{$oldidx.':message'})) {
 2790:                 if ($oldcontrib{$oldidx.':message'} =~ /^<version num="0">/) {
 2791:                     $contrib{'message'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 2792:                     $contrib{'message'} = $oldcontrib{$oldidx.':message'}.$contrib{'message'};
 2793:                 } else {
 2794:                     $contrib{'message'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':message'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
 2795:                 }
 2796:             }
 2797:             $contrib{'history'} .= $oldcontrib{$oldidx.':timestamp'};
 2798:             my $put_reply = &Apache::lonnet::putstore($env{'request.course.id'},
 2799:                   $oldsymb,$oldidx,\%contrib,
 2800:                   $env{'course.'.$env{'request.course.id'}.'.domain'},
 2801:                   $env{'course.'.$env{'request.course.id'}.'.num'});
 2802:             $status='Editing class discussion'.($anon?' (anonymous)':'');
 2803:         } else {
 2804:            $status='Adding to class discussion'.($anon?' (anonymous)':'').': '.
 2805:            &Apache::lonnet::store(\%contrib,$symb,$env{'request.course.id'},
 2806:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 2807: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 2808:         }
 2809:         my %storenewentry=($symb => $now);
 2810:         $status.='<br />'.&mt('Updating discussion time').': '.
 2811:         &Apache::lonnet::put('discussiontimes',\%storenewentry,
 2812:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 2813: 		     $env{'course.'.$env{'request.course.id'}.'.num'});
 2814:     }
 2815:     my %record=&Apache::lonnet::restore('_discussion');
 2816:     my ($temp)=keys(%record);
 2817:     unless ($temp=~/^error\:/) {
 2818:        my %newrecord=();
 2819:        $newrecord{'resource'}=$symb;
 2820:        $newrecord{'subnumber'}=$record{'subnumber'}+1;
 2821:        $status.='<br />'.&mt('Registering').': '.
 2822:                &Apache::lonnet::cstore(\%newrecord,'_discussion');
 2823:     }
 2824:     } else {
 2825: 	$status.='Failed.';
 2826:     }
 2827:     return $status.'<br />';   
 2828: }
 2829: 
 2830: sub get_discussion_info {
 2831:     my ($idx,%contrib) = @_;
 2832:     my $changelast = 0;
 2833:     my $count = 0;
 2834:     my $hiddenflag = 0;
 2835:     my $deletedflag = 0;
 2836:     my ($hidden,$deleted,%info,$newlastdisc);
 2837:     my $version = $contrib{'version'};
 2838:     if ($version) {
 2839:         for (my $id=$version; $id>0; $id--) {
 2840:             my $vkeys=$contrib{$id.':keys'};
 2841:             my @keys=split(/:/,$vkeys);
 2842:             if (grep(/^hidden$/,@keys)) {
 2843:                 if (!$hiddenflag) {
 2844:                     $hidden = $contrib{$id.':hidden'};
 2845:                     $hiddenflag = 1;
 2846:                 }
 2847:             } elsif (grep(/^deleted$/,@keys)) {
 2848:                 if (!$deletedflag) {
 2849:                     $deleted = $contrib{$id.':deleted'};
 2850:                     $deletedflag = 1;
 2851:                 }
 2852:             } else {
 2853:                 if (($hidden !~/\.$id\./) && ($deleted !~/\.$id\./)) {
 2854:                     $count++;
 2855:                     $info{$count}{'id'} = $id;
 2856:                     $info{$count}{'timestamp'}=$contrib{$id.':timestamp'}; 
 2857:                 }
 2858:             }
 2859:         }
 2860:         if ($info{'1'}{'id'} == $idx) {
 2861:             $changelast = 1;
 2862:             if ($count > 1) { 
 2863:                 $newlastdisc =  $info{'2'}{'timestamp'};
 2864:             } else {
 2865:                 $newlastdisc = 0;
 2866:             }
 2867:         }
 2868:     }
 2869:     return ($changelast,$newlastdisc);
 2870: }
 2871: 
 2872: # ----------------------------------------------------------- Preview function
 2873: 
 2874: sub show_preview {
 2875:     my ($r) = @_;
 2876:     &Apache::loncommon::content_type($r,'text/html');
 2877:     $r->send_http_header;
 2878:     my $start_page=
 2879: 	&Apache::loncommon::start_page('Preview',undef,
 2880: 				       {'only_body'   => 1,});
 2881: 
 2882:     my $message=&clear_out_html($env{'form.comment'});
 2883:     &newline_to_br(\$message);
 2884:     $message=&Apache::lonspeller::markeduptext($message);
 2885:     $message=&Apache::lontexconvert::msgtexconverted($message);
 2886:     my $subject=&clear_out_html($env{'form.subject'},undef,1);
 2887:     $subject=~s/\n/\<br \/\>/g;
 2888:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 2889: 					
 2890:     my $end_page = &Apache::loncommon::end_page();
 2891: 
 2892:     $r->print($start_page.'<table border="2"><tr><td>'.
 2893: 	      '<b>'.&mt('Subject').':</b> '.$subject.'<br /><br />'.
 2894: 	      $message.'</td></tr></table>'.$end_page);
 2895: }
 2896: 
 2897: 
 2898: sub newline_to_br {
 2899:     my ($message)=@_;
 2900:     my $newmessage;
 2901:     my $parser=HTML::LCParser->new($message);
 2902:     while (my $token=$parser->get_token()) {
 2903: 	if ($token->[0] eq 'T') {
 2904: 	    my $text=$token->[1];
 2905: 	    $text=~s/\n/\<br \/\>/g;
 2906: 	    $newmessage.=$text;
 2907: 	} elsif ($token->[0] eq 'D' || $token->[0] eq 'C') {
 2908: 	    $newmessage.=$token->[1];
 2909: 	} elsif ($token->[0] eq 'PI' || $token->[0] eq 'E') {
 2910: 	    $newmessage.=$token->[2];
 2911: 	} elsif ($token->[0] eq 'S') {
 2912: 	    $newmessage.=$token->[4];
 2913: 	}
 2914: 	    
 2915:     }
 2916:     $$message=$newmessage;
 2917: }
 2918: 
 2919: sub generate_preview_button {
 2920:     my ($formname,$fieldname)=@_;
 2921:     unless ($formname) { $formname='mailform'; }
 2922:     unless ($fieldname) { $fieldname='comment'; }
 2923:     my $pre=&mt("Show Preview and Check Spelling");
 2924:     return(<<ENDPREVIEW);
 2925: <br />
 2926: <form name="preview" action="/adm/feedback?preview=1" method="post" target="preview">
 2927: <input type="hidden" name="subject">
 2928: <input type="hidden" name="comment" />
 2929: <input type="button" value="$pre"
 2930: 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();" />
 2931: </form>
 2932: ENDPREVIEW
 2933: }
 2934: 
 2935: sub modify_attachments {
 2936:     my ($r,$currnewattach,$currdelold,$symb,$idx,$attachmenturls,
 2937:         $attachmaxtext,$toolarge)=@_;
 2938: 
 2939:     my %lt = &Apache::lonlocal::texthash(
 2940:                'subj' => 'Subject',
 2941:                'thfo' => 'The following attachments were part of the most recent saved version of this posting.',
 2942:                'chth' => 'Check the checkboxes for any you wish to remove.',
 2943:                'thef' => 'The following attachments have been uploaded for inclusion with this posting.',
 2944:                'adda' => 'Add a new attachment to this post.',
 2945:                'stch' => 'Save Changes',
 2946:              );
 2947:     my $js = <<END;
 2948: <script type="text/javascript">
 2949:  function setAction () {
 2950:    document.modattachments.action = document.modattachments.origpage.value;
 2951:    document.modattachments.submit();
 2952:  }
 2953: </script> 
 2954: END
 2955: 
 2956:     my $start_page = 
 2957: 	&Apache::loncommon::start_page('Discussion Post Attachments',$js);
 2958: 
 2959:     my $orig_subject = &unescape($env{'form.subject'});
 2960:     my $subject=&clear_out_html($orig_subject,undef,1);
 2961:     $subject=~s/\n/\<br \/\>/g;
 2962:     $subject=&Apache::lontexconvert::msgtexconverted($subject);
 2963:     my $timestamp=$env{'form.timestamp'};
 2964:     my $numoldver=$env{'form.numoldver'};
 2965: 
 2966:     my $msg = '';
 2967:     my %attachments = ();
 2968:     my %currattach = ();
 2969:     if ($idx) {
 2970:         &extract_attachments($attachmenturls,$idx,$numoldver,\$msg,\%attachments,\%currattach,$currdelold);
 2971:     }
 2972:     &Apache::lonenc::check_encrypt(\$symb);
 2973: 
 2974:     my $end_page = 
 2975: 	&Apache::loncommon::end_page();
 2976: 				       
 2977:     $r->print(<<END);
 2978: $start_page
 2979: $toolarge
 2980: <form name="modattachments" method="post" enctype="multipart/form-data" action="/adm/feedback?attach=$symb">
 2981:  <br />
 2982:  <table class="LC_data_table">
 2983:   <tr>
 2984:    <td colspan="2">
 2985:     <b>Subject:</b> $subject</b><br /><br />
 2986: END
 2987:     if ($idx) {
 2988:         if ($attachmenturls) {
 2989:             my @currold = keys(%currattach);
 2990:             if (@currold > 0) {
 2991:                 $r->print($lt{'thfo'}.'<br />'.$lt{'chth'}.'<br />'."\n");  
 2992:                 foreach my $id (@currold) {
 2993:                     my $attachurl = &HTML::Entities::decode($attachments{$id}{'filename'}); 
 2994:                     $attachurl =~ m#/([^/]+)$#;
 2995:                     $r->print('<label><input type="checkbox" name="deloldattach" value="'.$id.'" />&nbsp;'.$1.'</label><br />'."\n");
 2996:                 }
 2997:                 $r->print("<br />");
 2998:             }
 2999:         }
 3000:     }
 3001:     if ((ref($currnewattach) eq 'ARRAY') && (@{$currnewattach} > 0)) {
 3002:         $r->print($lt{'thef'}.'<br />'.$lt{'chth'}.'<br />'."\n");
 3003:         foreach my $attach (@{$currnewattach}) {
 3004:             $attach =~ m#/([^/]+)$#;
 3005:             $r->print('<label><input type="checkbox" name="delnewattach" value="'.$attach.'" />&nbsp;'.$1.'</label><br />'."\n");
 3006:         }
 3007:         $r->print("<br />"); 
 3008:     }
 3009:     $r->print(<<END);
 3010:    </td></tr>
 3011:    <tr>
 3012:     <td>
 3013:    $lt{'adda'}</td><td><input type="file" name="addnewattach" /><input type="button" name="upload" value="Upload" onClick="this.form.submit()" />    
 3014:    </td>
 3015:   </tr>
 3016:   <tr>
 3017:    <td colspan="2">$attachmaxtext</td>
 3018:   </tr>
 3019:  </table>
 3020: <input type="hidden" name="subject" value="$env{'form.subject'}" />
 3021: <input type="hidden" name="comment" value="$env{'form.comment'}" />
 3022: <input type="hidden" name="timestamp" value="$env{'form.timestamp'}" />
 3023: <input type="hidden" name="idx" value="$env{'form.idx'}" />
 3024: <input type="hidden" name="numoldver" value="$env{'form.numoldver'}" />
 3025: <input type="hidden" name="origpage" value="$env{'form.origpage'}" />
 3026: <input type="hidden" name="blog" value="$env{'form.blog'}" />
 3027: <input type="hidden" name="discuss" value="$env{'form.discuss'}" />
 3028: END
 3029:     foreach my $item (@{$currnewattach}) {
 3030:         $r->print('<input type="hidden" name="currnewattach" value="'.$item.'" />'."\n");
 3031:     }
 3032:     foreach my $item (@{$currdelold}) {
 3033:         $r->print('<input type="hidden" name="deloldattach" value="'.$item.'" />'."\n");
 3034:     }
 3035:     $r->print(<<END);
 3036:  <input type="button" name="rtntoedit" value="$lt{'stch'}" onClick="setAction()"/>
 3037: </form>
 3038: $end_page
 3039: END
 3040:     return;
 3041: }
 3042: 
 3043: sub process_attachments {
 3044:     my ($currnewattach,$currdelold,$keepold) = @_;
 3045: 
 3046:     @{$currnewattach}=
 3047: 	&Apache::loncommon::get_env_multiple('form.currnewattach');
 3048:     @{$currdelold}=
 3049: 	&Apache::loncommon::get_env_multiple('form.deloldattach');
 3050:     if (exists($env{'form.delnewattach'})) {
 3051:         my @currdelnew =
 3052: 	    &Apache::loncommon::get_env_multiple('form.delnewattach');
 3053:         my @currnew = ();
 3054:         foreach my $newone (@{$currnewattach}) {
 3055:             my $delflag = 0;
 3056:             foreach my $item (@currdelnew) {
 3057:                 if ($newone eq $item) {
 3058:                     $delflag = 1;
 3059:                     last;
 3060:                 }
 3061:             }
 3062:             unless ($delflag) {
 3063:                 push(@currnew, $newone);
 3064:             }
 3065:         }
 3066:         @{$currnewattach} = @currnew;
 3067:     }
 3068:     @{$keepold} = &Apache::loncommon::get_env_multiple('form.keepold');
 3069: }
 3070: 
 3071: sub generate_attachments_button {
 3072:     my ($idx,$attachnum,$ressymb,$now,$currnewattach,$deloldattach,
 3073:         $numoldver,$mode,$blockblog) = @_;
 3074:     my $origpage = $ENV{'REQUEST_URI'};
 3075:     my $att=$attachnum.' '.&mt("attachments");
 3076:     my %lt = &Apache::lonlocal::texthash(
 3077:                 'clic' => 'Click to add/remove attachments',
 3078:     ); 
 3079:     my $response = (<<END);
 3080: <br />
 3081: <form name="attachment" action="/adm/feedback?attach=$ressymb" method="post">
 3082: $lt{'clic'}:&nbsp;<input type="button" value="$att"
 3083: 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);
 3084: END
 3085:     if (!$blockblog) {
 3086:         $response .= 'setblogvalue();';
 3087:     }
 3088:     unless ($mode eq 'board') {
 3089:         $response .= 'javascript:anonchk();';
 3090:     }
 3091:     $response .= (<<ENDATTACH);
 3092: this.form.submit();" />
 3093: <input type="hidden" name="origpage" value="$origpage" />
 3094: <input type="hidden" name="idx" value="$idx" />
 3095: <input type="hidden" name="timestamp" value="$now" />
 3096: <input type="hidden" name="subject" />
 3097: <input type="hidden" name="comment" />
 3098: <input type="hidden" name="blog" value = "0" />
 3099: <input type="hidden" name="discuss" value = "0" />
 3100: <input type="hidden" name="numoldver" value="$numoldver" />
 3101: ENDATTACH
 3102:     if (defined($deloldattach)) {
 3103:         if (@{$deloldattach} > 0) {
 3104:             foreach my $delatt (@{$deloldattach}) {
 3105:                 $response .= '<input type="hidden" name="deloldattach" value="'.$delatt.'" />'."\n";
 3106:             }
 3107:         }
 3108:     }
 3109:     if (defined($currnewattach)) {
 3110:         if (@{$currnewattach} > 0) {
 3111:             foreach my $attach (@{$currnewattach}) {
 3112:                 $response .= '<input type="hidden" name="currnewattach" value="'.$attach.'" />'."\n";
 3113:             }
 3114:         }
 3115:     }
 3116:     $response .= '</form>';
 3117:     return $response;
 3118: }
 3119: 
 3120: sub extract_attachments {
 3121:     my ($attachmenturls,$idx,$numoldver,$message,$attachments,$currattach,$currdelold) = @_;
 3122:     %{$attachments}=();
 3123:     &get_post_attachments($attachments,$attachmenturls);
 3124:     foreach my $id (sort(keys(%{$attachments}))) {
 3125:         if (exists($$attachments{$id}{$numoldver})) {
 3126:             if (defined($currdelold)) {
 3127:                 if (@{$currdelold} > 0) {
 3128:                     unless (grep/^$id$/,@{$currdelold}) {
 3129:                         $$currattach{$id} = $$attachments{$id}{$numoldver}; 
 3130:                     }
 3131:                 } else {
 3132:                     $$currattach{$id} = $$attachments{$id}{$numoldver};
 3133:                 }
 3134:             } else {
 3135:                 $$currattach{$id} = $$attachments{$id}{$numoldver};
 3136:             }
 3137:         }
 3138:     }
 3139:     my @attached = (sort { $a <=> $b } keys(%{$currattach}));
 3140:     if (@attached == 1) {
 3141:         my $id = $attached[0];
 3142:         my $attachurl;
 3143:         if ($attachmenturls =~ m/^<attachment id="0">/) {
 3144:             $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3145:         } else {
 3146:             $attachurl = $$attachments{$id}{'filename'};
 3147:         }
 3148:         $attachurl=~m|/([^/]+)$|;
 3149:         $$message.='<br /><a href="'.$attachurl.'"><tt>'.
 3150:         $1.'</tt></a><br />';
 3151:         &Apache::lonnet::allowuploaded('/adm/feedback',
 3152:                                $attachurl);
 3153:     } elsif (@attached > 1) {
 3154:         $$message.='<ol>';
 3155:         foreach my $attach (@attached) {
 3156:             my $id = $attach;
 3157:             my $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
 3158:             my ($fname)
 3159:               =($attachurl=~m|/([^/]+)$|);
 3160:             $$message .= '<li><a href="'.$attachurl.
 3161:               '"><tt>'.
 3162:               $fname.'</tt></a></li>';
 3163:             &Apache::lonnet::allowuploaded('/adm/feedback',
 3164:                              $attachurl);
 3165:         }
 3166:         $$message .= '</ol>';
 3167:     }
 3168: }
 3169: 
 3170: sub construct_attachmenturl {
 3171:     my ($currnewattach,$keepold,$symb,$idx)=@_;
 3172:     my $oldattachmenturl;
 3173:     my $newattachmenturl;
 3174:     my $startnum = 0;
 3175:     my $currver = 0;
 3176:     if (($env{'form.editdisc'}) && ($idx)) {
 3177:         my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3178:                        $env{'course.'.$env{'request.course.id'}.'.domain'},
 3179:                        $env{'course.'.$env{'request.course.id'}.'.num'});
 3180:         $oldattachmenturl = $contrib{$idx.':attachmenturl'};
 3181:         if ($contrib{$idx.':history'}) {
 3182:             if ($contrib{$idx.':history'} =~ /:/) {
 3183:                 my @oldversions = split(/:/,$contrib{$idx.':history'});
 3184:                 $currver = 1 + scalar(@oldversions);
 3185:             } else {
 3186:                 $currver = 2;
 3187:             }
 3188:         } else {
 3189:             $currver = 1;
 3190:         }
 3191:         if ($oldattachmenturl) {
 3192:             if ($oldattachmenturl =~ m/^<attachment id="0">/) {
 3193:                 my %attachments = ();
 3194:                 my $prevver = $currver-1;
 3195:                 &get_post_attachments(\%attachments,$oldattachmenturl);
 3196:                 my $numattach = scalar(keys(%attachments));
 3197:                 $startnum += $numattach;
 3198:                 foreach my $num (sort {$a <=> $b} keys(%attachments)) {
 3199:                     $newattachmenturl .= '<attachment id="'.$num.'"><filename>'.$attachments{$num}{'filename'}.'</filename>';
 3200:                     foreach my $item (sort {$a <=> $b} keys(%{$attachments{$num}})) {
 3201:                         unless ($item eq 'filename') {
 3202:                             $newattachmenturl .= '<post id="'.$item.'">'.$attachments{$num}{$item}.'</post>';
 3203:                         }
 3204:                     }
 3205:                     if (grep/^$num$/,@{$keepold}) {
 3206:                         $newattachmenturl .= '<post id="'.$currver.'">'.$attachments{$num}{$prevver}.'</post>';
 3207:                     }
 3208:                     $newattachmenturl .= '</attachment>';
 3209:                 }
 3210:             } else {
 3211:                 $newattachmenturl = '<attachment id="0"><filename>'.&HTML::Entities::encode($oldattachmenturl).'</filename><post id="0">n</post>';
 3212:                 unless (grep/^0$/,@{$keepold}) {
 3213:                     $newattachmenturl .= '<post id="1">n</post>';
 3214:                 }
 3215:                 $newattachmenturl .= '</attachment>';
 3216:                 $startnum ++;
 3217:             }
 3218:         }
 3219:     }
 3220:     for (my $i=0; $i<@{$currnewattach}; $i++) {
 3221:         my $attachnum = $startnum + $i;
 3222:         $newattachmenturl .= '<attachment id="'.$attachnum.'"><filename>'.&HTML::Entities::encode($$currnewattach[$i]).'</filename><post id="'.$currver.'">n</post></attachment>';
 3223:     }
 3224:     return $newattachmenturl; 
 3225: }
 3226: 
 3227: sub add_blog_checkbox {
 3228:     my ($checkstatus);
 3229:     if ($env{'form.blog'}) {
 3230:         $checkstatus = 'checked="checked"';
 3231:     }
 3232:     my $output = '
 3233: <script type="text/javascript">
 3234: function setblogvalue() {
 3235:     if (document.mailform.blog.checked) {
 3236:         document.attachment.blog.value = 1;
 3237:     } else {
 3238:         document.attachment.blog.value = 0;
 3239:     }
 3240: }
 3241: </script><br />
 3242: <label><input type="checkbox" name="blog" '.$checkstatus.' /> '.
 3243: &mt('Add to my public course blog').'</label><br />'."\n";
 3244:     return $output;
 3245: }
 3246: 
 3247: sub has_discussion {
 3248:     my $resourcesref = shift;
 3249:     my $navmap = Apache::lonnavmaps::navmap->new();
 3250:     my @allres=$navmap->retrieveResources();
 3251:     foreach my $resource (@allres) {
 3252:         if ($resource->hasDiscussion()) {
 3253:             my $ressymb = $resource->wrap_symb();
 3254:             push(@{$resourcesref}, $ressymb);
 3255:         }
 3256:     }
 3257:     return;
 3258: }
 3259: 
 3260: sub sort_filter_names {
 3261:     my ($sort_types,$role_types,$status_types) = @_;
 3262:     %{$sort_types} = (
 3263:                      ascdate => 'Date order - oldest first',
 3264:                      descdate => 'Date order - newest first',
 3265:                      thread => 'Threaded',
 3266:                      subject => 'By subject',
 3267:                      username => 'By domain and username',
 3268:                      lastfirst => 'By last name, first name'
 3269:                    );
 3270:     %{$role_types} = (
 3271:                      all => 'All roles',
 3272:                      st  => 'Students',
 3273:                      cc  => 'Course Coordinators',
 3274:                      in  => 'Instructors',
 3275:                      ta  => 'TAs',
 3276:                      ep  => 'Exam proctors',
 3277:                      ad  => 'Administrators',
 3278:                      cr  => 'Custom roles'
 3279:                    );
 3280:     %{$status_types} = (
 3281:                      all     => 'Roles of any status',
 3282:                      Active  => 'Only active roles',
 3283:                      Expired => 'Only past roles',
 3284:                      Future  => 'Only future roles',
 3285:                    );
 3286: }
 3287:   
 3288: sub handler {
 3289:   my $r = shift;
 3290:   if ($r->header_only) {
 3291:      &Apache::loncommon::content_type($r,'text/html');
 3292:      $r->send_http_header;
 3293:      return OK;
 3294:   }
 3295: 
 3296: # --------------------------- Get query string for limited number of parameters
 3297: 
 3298:   &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 3299:          ['hide','unhide','deldisc','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']);
 3300:   my $group = $env{'form.group'};
 3301:   my %attachmax = (
 3302:                     text => '(128 KB max size)',
 3303:                     num  => 131072,
 3304:                   );
 3305:   if ($env{'form.editdisc'}) {
 3306:       if (!(&editing_allowed($env{'form.editdisc'},$env{'form.group'}))) {
 3307:           my $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 3308:           my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
 3309:           my $feedurl=&Apache::lonnet::clutter($url);
 3310:           &redirect_back($r,$feedurl,&mt('Editing not permitted').'<br />',                     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3311:                     undef,undef,undef,$group);
 3312:           return OK;
 3313:       }
 3314:   } 
 3315:   if ($env{'form.discsymb'}) {
 3316:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.discsymb'});
 3317:       my $readkey = $symb.'_read';
 3318:       my $chgcount = 0;
 3319:       my %readinghash = &Apache::lonnet::get('nohist_'.$env{'request.course.id'}.'_discuss',[$readkey],$env{'user.domain'},$env{'user.name'});
 3320:       foreach my $key (keys(%env)) {
 3321:           if ($key =~ m/^form\.postunread_(\d+)/) {
 3322:               if ($readinghash{$readkey} =~ /\.$1\./) {
 3323:                   $readinghash{$readkey} =~ s/\.$1\.//;
 3324:                   $chgcount ++;
 3325:               }
 3326:           } elsif ($key =~ m/^form\.postread_(\d+)/) {
 3327:               unless ($readinghash{$readkey} =~ /\.$1\./) {
 3328:                   $readinghash{$readkey} .= '.'.$1.'.';
 3329:                   $chgcount ++;
 3330:               }
 3331:           }
 3332:       }
 3333:       if ($chgcount > 0) {
 3334:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3335: 			  \%readinghash,$env{'user.domain'},$env{'user.name'});
 3336:       }
 3337:       &redirect_back($r,$feedurl,&mt('Marked postings read/unread').'<br />',
 3338: 		     '0','0','','',$env{'form.previous'},'','','',
 3339:                      undef,undef,undef,$group);
 3340:       return OK;
 3341:   }
 3342:   if ($env{'form.allversions'}) {
 3343:       &Apache::loncommon::content_type($r,'text/html');
 3344:       &Apache::loncommon::no_cache($r);
 3345:       $r->send_http_header;
 3346: 
 3347:       $r->print(&Apache::loncommon::start_page('Discussion Post Versions'));
 3348: 
 3349:       my $crs='/'.$env{'request.course.id'};
 3350:       if ($env{'request.course.sec'}) {
 3351:           $crs.='_'.$env{'request.course.sec'};
 3352:       }
 3353:       $crs=~s|_|/|g;
 3354:       my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3355:       my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3356:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.allversions'});
 3357:       ($symb)=&get_feedurl_and_clean_symb($symb);
 3358:       my $ressymb = &wrap_symb($symb);
 3359:       my $group = $env{'form.group'};
 3360:       my $seeid;
 3361:       if (($group ne '') && (($ressymb =~ m|^bulletin___\d+___adm/wrapper/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard$|))) {
 3362:           if (&check_group_priv($group,'dgp') eq 'ok') {
 3363:               $seeid = 1;
 3364:           }
 3365:       } else {
 3366:           $seeid = &Apache::lonnet::allowed('rin',$crs);
 3367:       }
 3368:       if ($idx > 0) {
 3369:           my %messages = ();
 3370:           my %subjects = ();
 3371:           my %attachmsgs = ();
 3372:           my %allattachments = ();
 3373:           my %imsfiles = ();
 3374:           my ($screenname,$plainname);
 3375:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3376:                            $env{'course.'.$env{'request.course.id'}.'.domain'},
 3377:                            $env{'course.'.$env{'request.course.id'}.'.num'});
 3378:           $r->print(&get_post_contents(\%contrib,$idx,$seeid,'allversions',\%messages,\%subjects,\%allattachments,\%attachmsgs,\%imsfiles,\$screenname,\$plainname));
 3379:       }
 3380:       $r->print(&Apache::loncommon::end_page());
 3381:       return OK;
 3382:   }
 3383:   if ($env{'form.posterlist'}) {
 3384:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3385:       &print_showposters($r,$symb,$env{'form.previous'},$feedurl,
 3386: 			 $env{'form.sortposts'});
 3387:       return OK;
 3388:   }
 3389:   if ($env{'form.userpick'}) {
 3390:       my @posters = &Apache::loncommon::get_env_multiple('form.stuinfo');
 3391:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.userpick'});
 3392:       my $numpicks = @posters;
 3393:       my %discinfo;
 3394:       $discinfo{$symb.'_userpick'} = join('&',@posters);
 3395:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3396: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 3397:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3398: 		     '',$env{'form.previous'},$env{'form.sortposts'},'','','',
 3399: 		     '',$numpicks,$group);
 3400:       return OK;
 3401:   }
 3402:   if ($env{'form.applysort'}) {
 3403:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.applysort'});
 3404:       &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0','',
 3405: 		     '',$env{'form.previous'},$env{'form.sortposts'},
 3406: 		     $env{'form.rolefilter'},$env{'form.statusfilter'},
 3407: 		     $env{'form.sectionpick'},$env{'form.grouppick'},
 3408:                      undef,$group);
 3409:       return OK;
 3410:   } elsif ($env{'form.cmd'} eq 'sortfilter') {
 3411:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 3412:       &print_sortfilter_options($r,$symb,$env{'form.previous'},$feedurl);
 3413:       return OK;
 3414:   } elsif ($env{'form.navtime'}) {
 3415:       my %discinfo = ();
 3416:       my @resources = ();
 3417:       if (defined($env{'form.navmaps'})) {
 3418:           if ($env{'form.navmaps'} =~ /:/) {
 3419:               @resources = split(/:/,$env{'form.navmaps'});
 3420:           } else {
 3421:               @resources = ("$env{'form.navmaps'}");
 3422:           }
 3423:       } else {
 3424:           &has_discussion(\@resources);
 3425:       }
 3426:       my $numitems = @resources;
 3427:       my $feedurl = '/adm/navmaps';
 3428:       if ($env{'form.navurl'}) { $feedurl .= '?'.$env{'form.navurl'}; }
 3429:       my %lt = &Apache::lonlocal::texthash(
 3430:           'mnpa' => 'Marked "New" posts as read in a total of',
 3431:           'robb' => 'resources/bulletin boards.',
 3432:           'twnp' => 'There are currently no resources or bulletin boards with unread discussion postings.'
 3433:       );       
 3434:       foreach my $res (@resources) {
 3435:           my $ressymb=$res;
 3436: 	  &Apache::lonenc::check_decrypt(\$ressymb);
 3437:           my $lastkey = $ressymb.'_lastread';
 3438:           $discinfo{$lastkey} = $env{'form.navtime'};
 3439:       }
 3440:       my $textline = "<b>$lt{'mnpa'} $numitems $lt{'robb'}</b>";
 3441:       if ($numitems > 0) {
 3442:           &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3443: 			     \%discinfo,$env{'user.domain'},$env{'user.name'});
 3444:       } else {
 3445:           $textline = "<b>$lt{'twnp'}</b>";
 3446:       }
 3447:       &Apache::loncommon::content_type($r,'text/html');
 3448:       $r->send_http_header;
 3449:       my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
 3450:       my %onload;
 3451:       if ($env{'environment.remote'} ne 'off') {
 3452: 	  $onload{'onload'} =
 3453: 	      "if (window.name!='loncapaclient') { this.document.reldt.submit(); self.window.close(); }";
 3454:       }
 3455: 
 3456:       my $start_page=
 3457: 	  &Apache::loncommon::start_page('New posts marked as read',undef,
 3458: 					 {'redirect'    => [2,$feedurl],
 3459: 					  'only_body'   => 1,
 3460: 					  'add_entries' => \%onload});
 3461:       my $end_page = &Apache::loncommon::end_page();
 3462:       $r->print (<<ENDREDIR);
 3463: $start_page
 3464: <img align="right" src="$logo" />
 3465: $textline
 3466: <form name="reldt" action="$feedurl" target="loncapaclient">
 3467: </form>
 3468: <br />
 3469: $end_page
 3470: ENDREDIR
 3471:       return OK;
 3472:   } elsif ($env{'form.modifydisp'}) {
 3473:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.modifydisp'});
 3474:       my ($dispchgA,$dispchgB,$markchg,$toggchg) = 
 3475: 	  split(/_/,$env{'form.changes'});
 3476:       &print_display_options($r,$symb,$env{'form.previous'},$dispchgA,
 3477: 			     $dispchgB,$markchg,$toggchg,$feedurl);
 3478:       return OK;
 3479:   } elsif ($env{'form.markondisp'} || $env{'form.markonread'} ||
 3480: 	   $env{'form.allposts'}   || $env{'form.onlyunread'} ||
 3481: 	   $env{'form.onlyunmark'} || $env{'form.toggoff'}    ||
 3482: 	   $env{'form.toggon'}     || $env{'form.markread'}) {
 3483:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 3484:       my %discinfo;
 3485: # ------------------------ Modify setting for read/unread toggle for each post 
 3486:       if ($env{'form.toggoff'}) { $discinfo{$symb.'_readtoggle'}=0; }
 3487:       if ($env{'form.toggon'})  { $discinfo{$symb.'_readtoggle'}=1; }
 3488: # --------- Modify setting for identification of 'NEW' posts in this discussion
 3489:       if ($env{'form.markondisp'}) {
 3490: 	  $discinfo{$symb.'_lastread'} = time;
 3491: 	  $discinfo{$symb.'_markondisp'} = 1;
 3492:       }
 3493:       if ($env{'form.markonread'}) {
 3494: 	  if ( $env{'form.previous'} > 0 ) {
 3495: 	      $discinfo{$symb.'_lastread'} = $env{'form.previous'};
 3496: 	  }
 3497: 	  $discinfo{$symb.'_markondisp'} = 0;
 3498:       }
 3499: # --------------------------------- Modify display setting for this discussion 
 3500:       if ($env{'form.allposts'}) {
 3501: 	  $discinfo{$symb.'_showonlyunread'} = 0;
 3502: 	  $discinfo{$symb.'_showonlyunmark'} = 0;
 3503:       }
 3504:       if ($env{'form.onlyunread'}) { $discinfo{$symb.'_showonlyunread'} = 1;  }
 3505:       if ($env{'form.onlyunmark'}) { $discinfo{$symb.'_showonlyunmark'} = 1;  }
 3506: # ----------------------------------------------------- Mark new posts not NEW 
 3507:       if ($env{'form.markread'})   { $discinfo{$symb.'_lastread'} = time; }
 3508:       &Apache::lonnet::put('nohist_'.$env{'request.course.id'}.'_discuss',
 3509: 			   \%discinfo,$env{'user.domain'},$env{'user.name'});
 3510:       my $previous=$env{'form.previous'};
 3511:       if ($env{'form.markondisp'}) { $previous=undef; }
 3512:       &redirect_back($r,$feedurl,&mt('Changed display status').'<br />',
 3513: 		     '0','0','','',$previous,'','','','','','',$group);
 3514:       return OK;
 3515:   } elsif (($env{'form.hide'}) || ($env{'form.unhide'})) {
 3516: # ----------------------------------------------------------------- Hide/unhide
 3517:       my $entry=$env{'form.hide'}?$env{'form.hide'}:$env{'form.unhide'};
 3518:       my ($symb,$idx)=split(/\:\:\:/,$entry);
 3519:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 3520: 
 3521:       my $crs='/'.$env{'request.course.id'};
 3522:       if ($env{'request.course.sec'}) {
 3523:           $crs.='_'.$env{'request.course.sec'};
 3524:       }
 3525:       $crs=~s/\_/\//g;
 3526:       my $seeid=&Apache::lonnet::allowed('rin',$crs);
 3527: 
 3528:       if ($env{'form.hide'} && !$seeid && !(&editing_allowed($env{'form.hide'},$env{'form.group'}))) {
 3529:           &redirect_back($r,$feedurl,&mt('Deletion not permitted').'<br />',                 '0','0','','',$env{'form.previous'},'','','','',
 3530:                  undef,undef,$group,);
 3531:           return OK;
 3532:       }
 3533: 
 3534:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3535:                           $env{'course.'.$env{'request.course.id'}.'.domain'},
 3536: 		          $env{'course.'.$env{'request.course.id'}.'.num'});
 3537: 
 3538:       my $currenthidden=$contrib{'hidden'};
 3539:       my $currentstudenthidden=$contrib{'studenthidden'};
 3540: 
 3541:       if ($env{'form.hide'}) {
 3542: 	  $currenthidden.='.'.$idx.'.';
 3543: 	  unless ($seeid) {
 3544: 	      $currentstudenthidden.='.'.$idx.'.';
 3545: 	  }
 3546:       } else {
 3547: 	  $currenthidden=~s/\.$idx\.//g;
 3548:       }
 3549:       my %newhash=('hidden' => $currenthidden);
 3550:       if ( ($env{'form.hide'}) && (!$seeid) ) {
 3551: 	  $newhash{'studenthidden'} = $currentstudenthidden;
 3552:       }
 3553:       if ($env{'form.hide'}) {
 3554:           my $changelast = 0;
 3555:           my $newlast;
 3556:           ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 3557:           if ($changelast) {
 3558:               &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 3559:                      $env{'course.'.$env{'request.course.id'}.'.domain'},
 3560:                      $env{'course.'.$env{'request.course.id'}.'.num'});
 3561:           }
 3562:       }
 3563:       &Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 3564:                            $env{'course.'.$env{'request.course.id'}.'.domain'},
 3565: 			   $env{'course.'.$env{'request.course.id'}.'.num'});
 3566: 
 3567:       &redirect_back($r,$feedurl,&mt('Changed discussion status').'<br />',
 3568: 		     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3569:                      undef,undef,undef,$group);
 3570:       return OK;
 3571:   } elsif ($env{'form.cmd'}=~/^(threadedoff|threadedon)$/) {
 3572:       my ($symb,$feedurl)=&get_feedurl_and_clean_symb($env{'form.symb'});
 3573:       if ($env{'form.cmd'} eq 'threadedon') {
 3574: 	  &Apache::lonnet::put('environment',{'threadeddiscussion' => 'on'});
 3575: 	  &Apache::lonnet::appenv({'environment.threadeddiscussion' => 'on'});
 3576:       } else {
 3577:  	  &Apache::lonnet::del('environment',['threadeddiscussion']);
 3578: 	  &Apache::lonnet::delenv('environment\.threadeddiscussion');
 3579:       }
 3580:       &redirect_back($r,$feedurl,&mt('Changed discussion view mode').'<br />',
 3581: 		     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3582:                      undef,undef,undef,$group);
 3583:       return OK;
 3584:   } elsif ($env{'form.deldisc'}) {
 3585: # --------------------------------------------------------------- Hide for good
 3586:       my ($symb,$idx)=split(/\:\:\:/,$env{'form.deldisc'});
 3587:       ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
 3588:       my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3589:                           $env{'course.'.$env{'request.course.id'}.'.domain'},
 3590: 		          $env{'course.'.$env{'request.course.id'}.'.num'});
 3591:       my ($changelast,$newlast) = &get_discussion_info($idx,%contrib);
 3592:       if ($changelast) {
 3593:           &Apache::lonnet::put('discussiontimes',{$symb => $newlast},
 3594:                    $env{'course.'.$env{'request.course.id'}.'.domain'},                   $env{'course.'.$env{'request.course.id'}.'.num'});
 3595:       }
 3596:       my %newhash=('deleted' => $contrib{'deleted'}.".$idx.");
 3597:       &Apache::lonnet::store(\%newhash,$symb,$env{'request.course.id'},
 3598: 			   $env{'course.'.$env{'request.course.id'}.'.domain'},
 3599: 			   $env{'course.'.$env{'request.course.id'}.'.num'});
 3600:       &redirect_back($r,$feedurl,&mt('Changed discussion status').'<br />',
 3601: 		     '0','0','','',$env{'form.previous'},undef,undef,undef,
 3602:                      undef,undef,undef,$group);
 3603:       return OK;
 3604:   } elsif ($env{'form.preview'}) {
 3605: # -------------------------------------------------------- User wants a preview
 3606:       &show_preview($r);
 3607:       return OK;
 3608:   } elsif ($env{'form.attach'}) {
 3609: # -------------------------------------------------------- Work on attachments
 3610:       &Apache::loncommon::content_type($r,'text/html');
 3611:       $r->send_http_header;
 3612:       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','addnewattach','delnewattach','timestamp','numoldver','idx','discuss','blog']);
 3613:       my (@currnewattach,@currdelold,@keepold,$toolarge);
 3614:       &process_attachments(\@currnewattach,\@currdelold,\@keepold);
 3615:       if (exists($env{'form.addnewattach.filename'})) {
 3616:           if (length($env{'form.addnewattach'})<=$attachmax{'num'}) {
 3617:               my $subdir = 'feedback/'.$env{'form.timestamp'};
 3618:               my $newattachment=&Apache::lonnet::userfileupload('addnewattach',undef,$subdir);
 3619: 	      push(@currnewattach, $newattachment);
 3620:           } else {
 3621:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 3622:           }
 3623:       }
 3624:       my $attachmenturls;
 3625:       my ($symb) = &get_feedurl_and_clean_symb($env{'form.attach'});
 3626:       my $idx = $env{'form.idx'};
 3627:       if ($idx) {
 3628:           my %contrib=&Apache::lonnet::restore($symb,$env{'request.course.id'},
 3629:                          $env{'course.'.$env{'request.course.id'}.'.domain'},
 3630:                          $env{'course.'.$env{'request.course.id'}.'.num'});
 3631:           $attachmenturls = $contrib{$idx.':attachmenturl'};
 3632:       }
 3633:       &modify_attachments($r,\@currnewattach,\@currdelold,$symb,$idx,
 3634: 			  $attachmenturls,$attachmax{'text'},$toolarge);
 3635:       return OK;
 3636:   } elsif ($env{'form.export'}) {
 3637:       &Apache::loncommon::content_type($r,'text/html');
 3638:       $r->send_http_header;
 3639:       my ($symb,$feedurl) = &get_feedurl_and_clean_symb($env{'form.export'});
 3640:       my $mode='board';
 3641:       my $status='OPEN';
 3642:       my $previous=$env{'form.previous'};
 3643:       if ($feedurl =~ /\.(problem|exam|quiz|assess|survey|form|library|task)$/) {
 3644:           $mode='problem';
 3645:           $status=$Apache::inputtags::status[-1];
 3646:       }
 3647:       my $discussion = &list_discussion($mode,$status,$symb); 
 3648:       my $start_page = 
 3649: 	  &Apache::loncommon::start_page('Resource Feedback and Discussion');
 3650:       my $end_page = 
 3651: 	  &Apache::loncommon::end_page();
 3652:       $r->print($start_page.$discussion.$end_page);
 3653:       return OK;
 3654:   } else {
 3655: # ------------------------------------------------------------- Normal feedback
 3656:       my $feedurl=$env{'form.postdata'};
 3657:       $feedurl=~s/^http\:\/\///;
 3658:       $feedurl=~s/^$ENV{'SERVER_NAME'}//;
 3659:       $feedurl=~s/^$ENV{'HTTP_HOST'}//;
 3660:       $feedurl=~s/\?.+$//;
 3661: 
 3662:       my $symb;
 3663:       if ($env{'form.replydisc'}) {
 3664: 	  $symb=(split(/\:\:\:/,$env{'form.replydisc'}))[0];
 3665:       } elsif ($env{'form.editdisc'}) {
 3666: 	  $symb=(split(/\:\:\:/,$env{'form.editdisc'}))[0];
 3667:       } elsif ($env{'form.origpage'}) {
 3668: 	  $symb=""; 
 3669:       } else {
 3670: 	  $symb=&Apache::lonnet::symbread($feedurl);
 3671:       }
 3672:       unless ($symb) {
 3673: 	  $symb=$env{'form.symb'};
 3674:       }
 3675:       if (defined($symb)) {
 3676:           ($symb,$feedurl)=&get_feedurl_and_clean_symb($symb);
 3677:       } else {
 3678:           # backward compatibility (bulletin boards used to be 'wrapped')
 3679:           &Apache::lonenc::check_decrypt(\$feedurl);
 3680:           &dewrapper(\$feedurl);
 3681:       }
 3682:       my $goahead=1;
 3683:       if ($feedurl=~/\.(problem|exam|quiz|assess|survey|form|task)$/) {
 3684: 	  unless ($symb) { $goahead=0; }
 3685:       }
 3686:       if (!$goahead) {
 3687:           # Ambiguous Problem Resource
 3688: 	  $r->internal_redirect('/adm/ambiguous');
 3689: 	  return OK;
 3690:       }
 3691: # Go ahead with feedback, no ambiguous reference
 3692:       unless (
 3693: 	  (
 3694: 	   ($feedurl=~m:^/res:) && ($feedurl!~m:^/res/adm:)
 3695: 	   ) 
 3696: 	  || 
 3697: 	  ($env{'request.course.id'} && ($feedurl!~m:^/adm:))
 3698: 	  ||
 3699: 	  ($env{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
 3700: 	  ) {
 3701: 	  &Apache::loncommon::content_type($r,'text/html');
 3702: 	  $r->send_http_header;
 3703: # Unable to give feedback
 3704:           &Apache::lonenc::check_encrypt(\$feedurl);
 3705: 	  &no_redirect_back($r,$feedurl);
 3706: 	  return OK;
 3707:       }
 3708: # --------------------------------------------------- Print login screen header
 3709:       unless ($env{'form.sendit'}) {
 3710:           &Apache::lonenc::check_encrypt(\$feedurl);
 3711: 	  &Apache::loncommon::content_type($r,'text/html');
 3712: 	  $r->send_http_header;
 3713:           if (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
 3714:               my ($blocked,$blocktext) = 
 3715:                      &Apache::loncommon::blocking_status('boards');
 3716:               if ($blocked) {
 3717:                   $r->print(&blocked_reply_or_edit($blocktext));
 3718:                   return OK;
 3719:               }
 3720:           }
 3721: 	  my $options=&screen_header($feedurl,$symb);
 3722: 	  if ($options) {
 3723: 	      &mail_screen($r,$feedurl,$options,$symb,$attachmax{'text'});
 3724: 	  } else {
 3725: 	      &fail_redirect($r,$feedurl);
 3726: 	  }
 3727: 	  return OK;
 3728:       }
 3729:       
 3730: # Get previous user input
 3731:       my $prevattempts=&Apache::loncommon::get_previous_attempt(
 3732:                                    $symb,$env{'user.name'},$env{'user.domain'},
 3733: 				   $env{'request.course.id'});
 3734: 
 3735: # Get output from resource
 3736:       &Apache::lonenc::check_encrypt(\$feedurl);
 3737:       my $usersaw=&resource_output($feedurl);
 3738: 
 3739: # Get resource answer (need to allow student to view grades for this to work)
 3740:       &Apache::lonnet::appenv({'allowed.vgr'=>'F'});
 3741:       my $usersymb = &Apache::lonenc::check_encrypt($symb);
 3742:       my $useranswer=
 3743:           &Apache::loncommon::get_student_answers(
 3744:               $usersymb,$env{'user.name'},$env{'user.domain'},
 3745:               $env{'request.course.id'});
 3746:       &Apache::lonnet::delenv('allowed.vgr');
 3747: # Get attachments, if any, and not too large
 3748:       my $attachmenturl='';
 3749:       my $toolarge='';
 3750:       if (($env{'form.origpage'}) || ($env{'form.editdisc'}) ||
 3751: 	  ($env{'form.replydisc'})) {
 3752: 	  my ($symb,$idx);
 3753: 	  if ($env{'form.replydisc'}) {
 3754: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.replydisc'});
 3755: 	  } elsif ($env{'form.editdisc'}) {
 3756: 	      ($symb,$idx)=split(/\:\:\:/,$env{'form.editdisc'});
 3757: 	  } elsif ($env{'form.origpage'}) {
 3758: 	      $symb = $env{'form.symb'};
 3759: 	  }
 3760: 	  &Apache::lonenc::check_decrypt(\$symb);
 3761: 	  my @currnewattach = ();
 3762: 	  my @deloldattach = ();
 3763: 	  my @keepold = ();
 3764: 	  &process_attachments(\@currnewattach,\@deloldattach,\@keepold);
 3765: 	  $symb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
 3766: 	  $attachmenturl=&construct_attachmenturl(\@currnewattach,\@keepold,$symb,$idx);
 3767:       } elsif ($env{'form.attachment.filename'}) {
 3768: 	  if (length($env{'form.attachment'})<=$attachmax{'num'}) {
 3769:               my $now = time;
 3770:               my $subdir = 'feedback/'.$now;
 3771: 	      $attachmenturl=&Apache::lonnet::userfileupload('attachment',undef,$subdir);
 3772: 	  } else {
 3773:               $toolarge = '<p><span class="LC_warning">'.&mt('Attachment not included - exceeded permitted length').'</span><br /></p>';
 3774:           }
 3775:       }
 3776: # Filter HTML out of message (could be nasty)
 3777:       my $message=&clear_out_html($env{'form.comment'});
 3778: 
 3779: # Assemble email
 3780:       my ($email,$citations)=&assemble_email($message,$prevattempts,
 3781: 					     $usersaw,$useranswer);
 3782:  
 3783: # Who gets this?
 3784:       my ($typestyle,%to) = &Apache::lonmsg::decide_receiver($feedurl);
 3785: 
 3786: # Actually send mail
 3787:       my ($status,$numsent)=&send_msg(&clear_out_html($env{'form.subject'},
 3788: 						      undef,1),
 3789: 				      $feedurl,$email,$citations,
 3790: 				      $attachmenturl,$usersymb,%to);
 3791: 
 3792: # Discussion? Store that.
 3793:       my $numpost=0;
 3794:       if (  ($env{'form.discuss'} ne ''
 3795: 	     && $env{'form.discuss'} !~ /^(?:author|question|course|policy)/)
 3796: 	   || $env{'form.anondiscuss'} ne '') {
 3797: 	  my $subject = &clear_out_html($env{'form.subject'},undef,1);
 3798: 	  my $anonmode=($env{'form.discuss'} eq 'anon' || $env{'form.anondiscuss'} );
 3799: 	  $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
 3800: 				  $subject);
 3801: 	  $numpost++;
 3802:       }
 3803: 
 3804: # Add to blog?
 3805: 
 3806:       my $blog='';
 3807:       if ($env{'form.blog'}) {
 3808: 	  my $subject = &clear_out_html($env{'form.subject'},undef,1);
 3809: 	  $status.=&Apache::lonrss::addentry($env{'user.name'},
 3810: 				    $env{'user.domain'},
 3811: 				    'CourseBlog_'.$env{'request.course.id'},
 3812: 				    $subject,$message,$feedurl,'public');
 3813: 	  $blog='<br />'.&mt('Added to my course blog').'<br />';
 3814:       }
 3815: 	  
 3816: # Receipt screen and redirect back to where came from
 3817:       &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$blog,$status,$env{'form.previous'},undef,undef,undef,undef,undef,undef,$group,$toolarge);
 3818:   }
 3819:   return OK;
 3820: }
 3821: 
 3822: sub blocked_reply_or_edit {
 3823:     my ($blocktext) = @_;
 3824:     return 
 3825:       &Apache::loncommon::start_page('Resource Feedback and Discussion').
 3826:       $blocktext.'<br /><br /><a href="javascript:history.go(-1)">'.
 3827:       &mt('Back to previous page').
 3828:       &Apache::loncommon::end_page();
 3829: } 
 3830: 
 3831: sub wrap_symb {
 3832:     my ($ressymb)=@_;
 3833:     if ($ressymb =~ /bulletin___\d+___/) {
 3834:         unless ($ressymb =~ m|bulletin___\d+___adm/wrapper|) {
 3835:             $ressymb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 3836:         }
 3837:     }
 3838:     return $ressymb;
 3839: }
 3840: sub dewrapper {
 3841:     my ($feedurl)=@_;
 3842:     if ($$feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
 3843:         $$feedurl=~s|^/adm/wrapper||;
 3844:     }
 3845: }
 3846: 
 3847: sub get_feedurl {
 3848:     my ($symb)=@_;
 3849:     my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
 3850:     my $feedurl = &Apache::lonnet::clutter($url);
 3851:     &dewrapper(\$feedurl);
 3852:     return $feedurl;
 3853: }
 3854: 
 3855: sub get_feedurl_and_clean_symb {
 3856:     my ($symb)=@_;
 3857:     &Apache::lonenc::check_decrypt(\$symb);
 3858: # backward compatibility (bulletin boards used to be 'wrapped')
 3859:     unless ($symb =~ m|bulletin___\d+___adm/wrapper|) {
 3860: 	$symb=~s|(bulletin___\d+___)|$1adm/wrapper|;
 3861:     }
 3862:     my $feedurl = &get_feedurl($symb);
 3863:     return ($symb,$feedurl);
 3864: }
 3865: 
 3866: sub editing_allowed {
 3867:     my ($postid,$group) = @_;
 3868:     $postid = &unescape($postid);
 3869:     my $can_edit = 0;
 3870:     if ($group ne '') {
 3871:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3872:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3873:         if ($postid =~ m|^bulletin___\d+___adm/wrapper(/adm/\Q$cdom\E/\Q$cnum\E/\d+/bulletinboard)|) {
 3874:             if (&check_group_priv($group,'egp') eq 'ok') {
 3875:                 $can_edit = 1;
 3876:             }
 3877:             return $can_edit;
 3878:         }     
 3879:     } 
 3880:     my $cid = $env{'request.course.id'};
 3881:     my $role = (split(/\./,$env{'request.role'}))[0];
 3882:     my $section = $env{'request.course.sec'};
 3883:     my $allow_editing_config = 
 3884: 	$env{'course.'.$cid.'.allow_discussion_post_editing'};
 3885:     if ($allow_editing_config =~ m/^\s*yes\s*$/i) {
 3886:         $can_edit = 1;
 3887:     } else {
 3888: 	foreach my $editor (split(/,/,$allow_editing_config)) {
 3889: 	    my ($editor_role,$editor_sec) = split(/:/,$editor);
 3890: 	    if ($editor_role eq $role
 3891: 		&& defined($editor_sec)
 3892: 		&& defined($section)
 3893: 		&& $editor_sec eq $section) {
 3894: 		$can_edit = 1;
 3895: 		last;
 3896: 	    }
 3897: 	    if ($editor_role eq $role
 3898: 		&& !defined($editor_sec)) {
 3899: 		$can_edit = 1;
 3900: 	    }
 3901: 	}
 3902:     }
 3903:     return $can_edit;
 3904: }
 3905: 
 3906: sub check_group_priv {
 3907:     my ($group,$grp_priv) = @_;
 3908:     foreach my $priv ('mdg','vcg') {
 3909:         my $checkcourse = $env{'request.course.id'}.
 3910:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'');
 3911:         if (&Apache::lonnet::allowed($priv,$checkcourse)) {
 3912:             return 'ok';
 3913:         }
 3914:     }
 3915:     if ($grp_priv && $group ne '') {
 3916:         if (&Apache::lonnet::allowed($grp_priv,$env{'request.course.id'}.'/'.$group)) {
 3917:             return 'ok';
 3918:         }
 3919:     }
 3920:     return '';
 3921: }
 3922: 
 3923: sub group_args { 
 3924:     my ($group) = @_;
 3925:     if ($group eq '') { return ''; }
 3926:     my $extra_args = '&amp;group='.$group;
 3927:     if (exists($env{'form.ref'})) {
 3928:         $extra_args .= '&amp;ref='.$env{'form.ref'};
 3929:     }
 3930:     return $extra_args;
 3931: }
 3932: 
 3933: sub get_resource_title {
 3934:     my ($symb,$feedurl) = @_;
 3935:     my ($restitle,$plainurl);
 3936:     if (defined($symb)) {
 3937:         my $plain_symb = &Apache::lonenc::check_decrypt($symb);
 3938:         $restitle = &Apache::lonnet::gettitle($plain_symb);
 3939:     }
 3940:     if (defined($feedurl)) {
 3941:         $plainurl = &Apache::lonenc::check_decrypt($feedurl);
 3942:     }
 3943:     if (!defined($restitle)) {
 3944:         if (defined($feedurl)) {
 3945:             $restitle = &Apache::lonnet::gettitle($plainurl);
 3946:         }
 3947:     }
 3948:     if ($plainurl ne $feedurl) {
 3949:         my ($plain_filename) = ($plainurl =~ m-/([^/]+)$-);
 3950:         if ($plain_filename eq $restitle) {
 3951:             $restitle = &mt('Untitled resource');
 3952:         }
 3953:     }
 3954:     if ($restitle eq '') {
 3955:         $restitle = &mt('Untitled resource');
 3956:     }
 3957:     return $restitle;
 3958: }
 3959: 
 3960: 1;
 3961: __END__

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