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

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

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