Annotation of loncom/interface/lonfeedback.pm, revision 1.199

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

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