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