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

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

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