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

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

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