Annotation of loncom/interface/lonfeedback.pm, revision 1.151
1.1 www 1: # The LearningOnline Network
2: # Feedback
3: #
1.151 ! albertel 4: # $Id: lonfeedback.pm,v 1.150 2005/02/17 03:42:29 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\./) {
1.151 ! albertel 977: $ctlink = '<label><b>'.&mt('Mark unread').'?</b> <input type="checkbox" name="postunread_'.$idx.'" /></label>';
1.116 raeburn 978: } else {
1.151 ! albertel 979: $ctlink = '<label><b>'.&mt('Mark read').'?</b> <input type="checkbox" name="postread_'.$idx.'" /></label>';
1.116 raeburn 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.151 ! albertel 1756: <td><label><input type="checkbox" name="discdisp" onClick="discdispChk('0')" /> $lt{'chgt'} "$dispchangeA"</label>
1.111 raeburn 1757: <br />
1.151 ! albertel 1758: <label><input type="checkbox" name="discdisp" onClick="discdispChk('1')" /> $lt{'chgt'} "$dispchangeB"</label>
1.111 raeburn 1759: </td>
1.97 raeburn 1760: </tr><tr bgcolor="#eeeeee">
1761: <td>$lt{'npmr'}</td>
1762: <td>$lt{$discmark}</td>
1.151 ! albertel 1763: <td><label><input type="checkbox" name="discmark" />$lt{'chgt'} "$markchange"</label></td>
1.111 raeburn 1764: </tr><tr bgcolor="#dddddd">
1765: <td>$lt{'dotm'}</td>
1766: <td>$lt{$disctogg}</td>
1.151 ! albertel 1767: <td><label><input type="checkbox" name="disctogg" onClick="discdispChk('2')" />$lt{'chgt'} "$toggchange"</label></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>
1.151 ! albertel 1932: <td><label><input type="checkbox" name="posterlist" value="$symb" />$lt{'shal'}</label></td>
1.100 raeburn 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 ++;
1.151 ! albertel 2027: $r->print('<tr bgcolor="#ffffe6"><td align="right">'.$count.'</td><td align="center"><label><input name="stuinfo" type="checkbox" value="'.$_.'" /></td><td>'.$last.', '.$first.' ('.$uname.','.$udom.')</label></td><td>'.$postcounts{$_}.'</td></tr>');
1.101 raeburn 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=
1.151 ! albertel 2258: '<p><label><input type="checkbox" name="author" /> '.
! 2259: &mt('Feedback to resource author').'</label></p>';
1.65 www 2260: }
2261: if (&feedback_available(1)) {
2262: $msgoptions.=
1.151 ! albertel 2263: '<p><label><input type="checkbox" name="question" /> '.
! 2264: &mt('Question about resource content').'</label></p>';
1.65 www 2265: }
2266: if (&feedback_available(0,1)) {
2267: $msgoptions.=
1.151 ! albertel 2268: '<p><label><input type="checkbox" name="course" /> '.
! 2269: &mt('Question/Comment/Feedback about course content').
! 2270: '</label></p>';
1.65 www 2271: }
2272: if (&feedback_available(0,0,1)) {
2273: $msgoptions.=
1.151 ! albertel 2274: '<p><label><input type="checkbox" name="policy" /> '.
! 2275: &mt('Question/Comment/Feedback about course policy').
! 2276: '</label></p>';
1.65 www 2277: }
2278: }
2279: if ($ENV{'request.course.id'}) {
1.141 raeburn 2280: if (&discussion_open(undef,$symb) &&
1.90 albertel 2281: &Apache::lonnet::allowed('pch',
1.65 www 2282: $ENV{'request.course.id'}.
2283: ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))) {
1.151 ! albertel 2284: $discussoptions='<label><input type="checkbox" name="discuss" onClick="this.form.anondiscuss.checked=false;" '.
1.74 www 2285: ($ENV{'form.replydisc'}?' checked="1"':'').' /> '.
1.65 www 2286: &mt('Contribution to course discussion of resource');
1.151 ! albertel 2287: $discussoptions.='</label><br /><label><input type="checkbox" name="anondiscuss" onClick="this.form.discuss.checked=false;" /> '.
1.65 www 2288: &mt('Anonymous contribution to course discussion of resource').
1.151 ! albertel 2289: ' <i>('.&mt('name only visible to course faculty').')</i></label>';
1.141 raeburn 2290: }
1.65 www 2291: }
1.149 albertel 2292: if ($msgoptions) { $msgoptions='<h2><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/feedback.gif').'" />'.&mt('Sending Messages').'</h2>'.$msgoptions; }
1.65 www 2293: if ($discussoptions) {
1.149 albertel 2294: $discussoptions='<h2><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/chat.gif').'" />'.&mt('Discussion Contributions').'</h2>'.$discussoptions; }
1.65 www 2295: return $msgoptions.$discussoptions;
1.6 albertel 2296: }
2297:
2298: sub resource_output {
2299: my ($feedurl) = @_;
1.46 albertel 2300: my $usersaw=&Apache::lonnet::ssi_body($feedurl);
1.6 albertel 2301: $usersaw=~s/\<body[^\>]*\>//gi;
2302: $usersaw=~s/\<\/body\>//gi;
2303: $usersaw=~s/\<html\>//gi;
2304: $usersaw=~s/\<\/html\>//gi;
2305: $usersaw=~s/\<head\>//gi;
2306: $usersaw=~s/\<\/head\>//gi;
2307: $usersaw=~s/action\s*\=/would_be_action\=/gi;
2308: return $usersaw;
2309: }
2310:
2311: sub clear_out_html {
1.39 www 2312: my ($message,$override)=@_;
1.88 www 2313: unless (&Apache::lonhtmlcommon::htmlareablocked()) { return $message; }
1.107 www 2314: # Always allow the <m>-tag
2315: my %html=(M=>1);
2316: # Check if more is allowed
1.37 albertel 2317: my $cid=$ENV{'request.course.id'};
1.39 www 2318: if (($ENV{"course.$cid.allow_limited_html_in_feedback"} =~ m/yes/i) ||
2319: ($override)) {
1.37 albertel 2320: # allows <B> <I> <P> <A> <LI> <OL> <UL> <EM> <BR> <TT> <STRONG>
1.88 www 2321: # <BLOCKQUOTE> <DIV .*> <DIV> <IMG> <M> <SPAN> <H1> <H2> <H3> <H4> <SUB>
2322: # <SUP>
1.107 www 2323: %html=(B=>1, I=>1, P=>1, A=>1, LI=>1, OL=>1, UL=>1, EM=>1,
2324: BR=>1, TT=>1, STRONG=>1, BLOCKQUOTE=>1, DIV=>1, IMG=>1,
2325: M=>1, SUB=>1, SUP=>1, SPAN=>1,
2326: H1=>1, H2=>1, H3=>1, H4=>1, H5=>1);
2327: }
2328: # Do the substitution of everything that is not explicitly allowed
2329: $message =~ s/\<(\/?\s*(\w+)[^\>\<]*)/
1.48 albertel 2330: {($html{uc($2)}&&(length($1)<1000))?"\<$1":"\<$1"}/ge;
1.107 www 2331: $message =~ s/(\<?\s*(\w+)[^\<\>]*)\>/
1.48 albertel 2332: {($html{uc($2)}&&(length($1)<1000))?"$1\>":"$1\>"}/ge;
1.6 albertel 2333: return $message;
2334: }
2335:
2336: sub assemble_email {
1.40 albertel 2337: my ($feedurl,$message,$prevattempts,$usersaw,$useranswer)=@_;
1.6 albertel 2338: my $email=<<"ENDEMAIL";
2339: $message
2340: ENDEMAIL
2341: my $citations=<<"ENDCITE";
2342: <h2>Previous attempts of student (if applicable)</h2>
2343: $prevattempts
1.63 albertel 2344: <br /><hr />
1.6 albertel 2345: <h2>Original screen output (if applicable)</h2>
2346: $usersaw
1.40 albertel 2347: <h2>Correct Answer(s) (if applicable)</h2>
2348: $useranswer
1.6 albertel 2349: ENDCITE
2350: return ($email,$citations);
2351: }
2352:
1.35 www 2353: sub secapply {
2354: my $rec=shift;
1.36 www 2355: my $defaultflag=shift;
2356: $rec=~s/\s+//g;
2357: $rec=~s/\@/\:/g;
2358: my ($adr,$sections)=($rec=~/^([^\(]+)\(([^\)]+)\)/);
2359: if ($sections) {
2360: foreach (split(/\;/,$sections)) {
2361: if (($_ eq $ENV{'request.course.sec'}) ||
2362: ($defaultflag && ($_ eq '*'))) {
2363: return $adr;
2364: }
2365: }
2366: } else {
2367: return $rec;
2368: }
2369: return '';
1.35 www 2370: }
2371:
1.6 albertel 2372: sub decide_receiver {
1.36 www 2373: my ($feedurl,$author,$question,$course,$policy,$defaultflag) = @_;
1.6 albertel 2374: my $typestyle='';
2375: my %to=();
1.36 www 2376: if ($ENV{'form.author'}||$author) {
1.8 www 2377: $typestyle.='Submitting as Author Feedback<br>';
1.6 albertel 2378: $feedurl=~/^\/res\/(\w+)\/(\w+)\//;
2379: $to{$2.':'.$1}=1;
2380: }
1.36 www 2381: if ($ENV{'form.question'}||$question) {
1.8 www 2382: $typestyle.='Submitting as Question<br>';
1.24 harris41 2383: foreach (split(/\,/,
2384: $ENV{'course.'.$ENV{'request.course.id'}.'.question.email'})
2385: ) {
1.36 www 2386: my $rec=&secapply($_,$defaultflag);
2387: if ($rec) { $to{$rec}=1; }
1.24 harris41 2388: }
1.6 albertel 2389: }
1.36 www 2390: if ($ENV{'form.course'}||$course) {
1.63 albertel 2391: $typestyle.='Submitting as Comment<br />';
1.24 harris41 2392: foreach (split(/\,/,
2393: $ENV{'course.'.$ENV{'request.course.id'}.'.comment.email'})
2394: ) {
1.36 www 2395: my $rec=&secapply($_,$defaultflag);
2396: if ($rec) { $to{$rec}=1; }
1.24 harris41 2397: }
1.6 albertel 2398: }
1.36 www 2399: if ($ENV{'form.policy'}||$policy) {
1.63 albertel 2400: $typestyle.='Submitting as Policy Feedback<br />';
1.24 harris41 2401: foreach (split(/\,/,
2402: $ENV{'course.'.$ENV{'request.course.id'}.'.policy.email'})
2403: ) {
1.36 www 2404: my $rec=&secapply($_,$defaultflag);
2405: if ($rec) { $to{$rec}=1; }
1.24 harris41 2406: }
1.6 albertel 2407: }
1.36 www 2408: if ((scalar(%to) eq '0') && (!$defaultflag)) {
2409: ($typestyle,%to)=
2410: &decide_receiver($feedurl,$author,$question,$course,$policy,1);
2411: }
1.6 albertel 2412: return ($typestyle,%to);
1.36 www 2413: }
2414:
2415: sub feedback_available {
2416: my ($question,$course,$policy)=@_;
2417: my ($typestyle,%to)=&decide_receiver('',0,$question,$course,$policy);
2418: return scalar(%to);
1.6 albertel 2419: }
2420:
2421: sub send_msg {
1.43 www 2422: my ($feedurl,$email,$citations,$attachmenturl,%to)=@_;
1.6 albertel 2423: my $status='';
2424: my $sendsomething=0;
1.24 harris41 2425: foreach (keys %to) {
1.6 albertel 2426: if ($_) {
1.22 www 2427: my $declutter=&Apache::lonnet::declutter($feedurl);
1.8 www 2428: unless (&Apache::lonmsg::user_normal_msg(split(/\:/,$_),
1.43 www 2429: 'Feedback ['.$declutter.']',$email,$citations,$feedurl,
2430: $attachmenturl)=~/ok/) {
1.63 albertel 2431: $status.='<br />'.&mt('Error sending message to').' '.$_.'<br />';
1.6 albertel 2432: } else {
2433: $sendsomething++;
2434: }
2435: }
1.24 harris41 2436: }
1.18 www 2437:
2438: my %record=&Apache::lonnet::restore('_feedback');
2439: my ($temp)=keys %record;
2440: unless ($temp=~/^error\:/) {
2441: my %newrecord=();
2442: $newrecord{'resource'}=$feedurl;
2443: $newrecord{'subnumber'}=$record{'subnumber'}+1;
2444: unless (&Apache::lonnet::cstore(\%newrecord,'_feedback') eq 'ok') {
1.63 albertel 2445: $status.='<br />'.&mt('Not registered').'<br />';
1.18 www 2446: }
2447: }
2448:
1.6 albertel 2449: return ($status,$sendsomething);
2450: }
2451:
1.13 www 2452: sub adddiscuss {
1.78 raeburn 2453: my ($symb,$email,$anon,$attachmenturl,$subject)=@_;
1.13 www 2454: my $status='';
1.122 raeburn 2455: my $realsymb;
2456: if ($symb=~/^bulletin___/) {
2457: my $filename=(&Apache::lonnet::decode_symb($symb))[2];
2458: $filename=~s|^adm/wrapper/||;
2459: $realsymb=&Apache::lonnet::symbread($filename);
2460: }
2461: if (&discussion_open(undef,$realsymb) &&
1.90 albertel 2462: &Apache::lonnet::allowed('pch',$ENV{'request.course.id'}.
1.23 www 2463: ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))) {
1.20 www 2464:
1.13 www 2465: my %contrib=('message' => $email,
2466: 'sendername' => $ENV{'user.name'},
1.26 www 2467: 'senderdomain' => $ENV{'user.domain'},
2468: 'screenname' => $ENV{'environment.screenname'},
2469: 'plainname' => $ENV{'environment.firstname'}.' '.
2470: $ENV{'environment.middlename'}.' '.
2471: $ENV{'environment.lastname'}.' '.
1.42 www 2472: $ENV{'enrironment.generation'},
1.78 raeburn 2473: 'attachmenturl'=> $attachmenturl,
2474: 'subject' => $subject);
1.65 www 2475: if ($ENV{'form.replydisc'}) {
1.66 www 2476: $contrib{'replyto'}=(split(/\:\:\:/,$ENV{'form.replydisc'}))[1];
1.65 www 2477: }
1.14 www 2478: if ($anon) {
2479: $contrib{'anonymous'}='true';
2480: }
1.13 www 2481: if (($symb) && ($email)) {
1.102 raeburn 2482: if ($ENV{'form.editdisc'}) {
2483: my %newcontrib = ();
2484: $contrib{'ip'}=$ENV{'REMOTE_ADDR'};
2485: $contrib{'host'}=$Apache::lonnet::perlvar{'lonHostID'};
2486: $contrib{'timestamp'} = time;
2487: $contrib{'history'} = '';
2488: my $numoldver = 0;
2489: my ($oldsymb,$oldidx)=split(/\:\:\:/,$ENV{'form.editdisc'});
1.132 albertel 2490: &Apache::lonenc::check_decrypt(\$oldsymb);
1.110 raeburn 2491: $oldsymb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
1.102 raeburn 2492: # get timestamp for last post and history
2493: my %oldcontrib=&Apache::lonnet::restore($oldsymb,$ENV{'request.course.id'},
2494: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
2495: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
2496: if (defined($oldcontrib{$oldidx.':replyto'})) {
2497: $contrib{'replyto'} = $oldcontrib{$oldidx.':replyto'};
2498: }
2499: if (defined($oldcontrib{$oldidx.':history'})) {
2500: if ($oldcontrib{$oldidx.':history'} =~ /:/) {
2501: my @oldversions = split/:/,$oldcontrib{$oldidx.':history'};
2502: $numoldver = @oldversions;
2503: } else {
2504: $numoldver = 1;
2505: }
2506: $contrib{'history'} = $oldcontrib{$oldidx.':history'}.':';
2507: }
1.108 raeburn 2508: my $numnewver = $numoldver + 1;
1.102 raeburn 2509: if (defined($oldcontrib{$oldidx.':subject'})) {
1.112 raeburn 2510: if ($oldcontrib{$oldidx.':subject'} =~ /^<version num="0">/) {
2511: $contrib{'subject'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
2512: $contrib{'subject'} = $oldcontrib{$oldidx.':subject'}.$contrib{'subject'};
1.108 raeburn 2513: } else {
1.112 raeburn 2514: $contrib{'subject'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':subject'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'subject'},'<>&"').'</version>';
1.108 raeburn 2515: }
1.102 raeburn 2516: }
2517: if (defined($oldcontrib{$oldidx.':message'})) {
1.112 raeburn 2518: if ($oldcontrib{$oldidx.':message'} =~ /^<version num="0">/) {
2519: $contrib{'message'} = '<version num="'.$numnewver.'">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
2520: $contrib{'message'} = $oldcontrib{$oldidx.':message'}.$contrib{'message'};
1.108 raeburn 2521: } else {
1.112 raeburn 2522: $contrib{'message'} = '<version num="0">'.&HTML::Entities::encode($oldcontrib{$oldidx.':message'},'<>&"').'</version><version num="1">'.&HTML::Entities::encode($contrib{'message'},'<>&"').'</version>';
1.108 raeburn 2523: }
1.102 raeburn 2524: }
2525: $contrib{'history'} .= $oldcontrib{$oldidx.':timestamp'};
2526: foreach (keys %contrib) {
2527: my $key = $oldidx.':'.&Apache::lonnet::escape($oldsymb).':'.$_;
2528: $newcontrib{$key} = $contrib{$_};
2529: }
2530: my $put_reply = &Apache::lonnet::putstore($ENV{'request.course.id'},
2531: \%newcontrib,
2532: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
2533: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
2534: $status='Editing class discussion'.($anon?' (anonymous)':'');
2535: } else {
2536: $status='Adding to class discussion'.($anon?' (anonymous)':'').': '.
2537: &Apache::lonnet::store(\%contrib,$symb,$ENV{'request.course.id'},
1.13 www 2538: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
1.17 www 2539: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.102 raeburn 2540: }
1.21 www 2541: my %storenewentry=($symb => time);
1.63 albertel 2542: $status.='<br />'.&mt('Updating discussion time').': '.
1.21 www 2543: &Apache::lonnet::put('discussiontimes',\%storenewentry,
2544: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
2545: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.13 www 2546: }
1.17 www 2547: my %record=&Apache::lonnet::restore('_discussion');
2548: my ($temp)=keys %record;
2549: unless ($temp=~/^error\:/) {
2550: my %newrecord=();
2551: $newrecord{'resource'}=$symb;
2552: $newrecord{'subnumber'}=$record{'subnumber'}+1;
1.63 albertel 2553: $status.='<br />'.&mt('Registering').': '.
1.21 www 2554: &Apache::lonnet::cstore(\%newrecord,'_discussion');
1.20 www 2555: }
2556: } else {
2557: $status.='Failed.';
1.17 www 2558: }
1.63 albertel 2559: return $status.'<br />';
1.13 www 2560: }
2561:
1.33 www 2562: # ----------------------------------------------------------- Preview function
2563:
2564: sub show_preview {
2565: my $r=shift;
1.135 albertel 2566: &Apache::loncommon::content_type($r,'text/html');
2567: $r->send_http_header;
1.33 www 2568: my $message=&clear_out_html($ENV{'form.comment'});
2569: $message=~s/\n/\<br \/\>/g;
1.106 www 2570: $message=&Apache::lonspeller::markeduptext($message);
1.33 www 2571: $message=&Apache::lontexconvert::msgtexconverted($message);
1.78 raeburn 2572: my $subject=&clear_out_html($ENV{'form.subject'});
2573: $subject=~s/\n/\<br \/\>/g;
2574: $subject=&Apache::lontexconvert::msgtexconverted($subject);
1.33 www 2575: $r->print('<table border="2"><tr><td>'.
1.78 raeburn 2576: '<b>Subject:</b> '.$subject.'<br /><br />'.
1.33 www 2577: $message.'</td></tr></table>');
2578: }
2579:
2580: sub generate_preview_button {
1.107 www 2581: my $pre=&mt("Show Preview and Check Spelling");
1.33 www 2582: return(<<ENDPREVIEW);
2583: <form name="preview" action="/adm/feedback?preview=1" method="post" target="preview">
1.78 raeburn 2584: <input type="hidden" name="subject">
1.33 www 2585: <input type="hidden" name="comment" />
1.65 www 2586: <input type="button" value="$pre"
1.119 albertel 2587: 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 2588: </form>
2589: ENDPREVIEW
2590: }
1.71 www 2591:
1.108 raeburn 2592: sub modify_attachments {
2593: my ($r,$currnewattach,$currdelold,$symb,$idx,$attachmenturls)=@_;
1.124 raeburn 2594: my $orig_subject = &Apache::lonnet::unescape($ENV{'form.subject'});
2595: my $subject=&clear_out_html($orig_subject);
1.108 raeburn 2596: $subject=~s/\n/\<br \/\>/g;
2597: $subject=&Apache::lontexconvert::msgtexconverted($subject);
2598: my $timestamp=$ENV{'form.timestamp'};
2599: my $numoldver=$ENV{'form.numoldver'};
2600: my $bodytag=&Apache::loncommon::bodytag('Discussion Post Attachments',
2601: '','');
2602: my $msg = '';
1.113 raeburn 2603: my %attachments = ();
1.108 raeburn 2604: my %currattach = ();
2605: if ($idx) {
1.113 raeburn 2606: &extract_attachments($attachmenturls,$idx,$numoldver,\$msg,\%attachments,\%currattach,$currdelold);
1.108 raeburn 2607: }
1.139 albertel 2608: &Apache::lonenc::check_encrypt(\$symb);
1.108 raeburn 2609: $r->print(<<END);
2610: <html>
2611: <head>
2612: <title>Managing Attachments</title>
2613: <script>
2614: function setAction () {
2615: document.modattachments.action = document.modattachments.origpage.value;
2616: document.modattachments.submit();
2617: }
2618: </script>
2619: </head>
2620: $bodytag
2621: <form name="modattachments" method="post" enctype="multipart/form-data" action="/adm/feedback?attach=$symb">
2622: <table border="2">
2623: <tr>
2624: <td>
1.124 raeburn 2625: <b>Subject:</b> $subject</b><br /><br />
1.108 raeburn 2626: END
2627: if ($idx) {
2628: if ($attachmenturls) {
2629: my @currold = keys %currattach;
2630: if (@currold > 0) {
2631: $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 2632: foreach my $id (@currold) {
2633: my $attachurl = &HTML::Entities::decode($attachments{$id}{'filename'});
2634: $attachurl =~ m#/([^/]+)$#;
1.151 ! albertel 2635: $r->print('<label><input type="checkbox" name="deloldattach" value="'.$id.'" /> '.$1.'</label><br />'."\n");
1.108 raeburn 2636: }
2637: $r->print("<br />");
2638: }
2639: }
2640: }
2641: if (@{$currnewattach} > 0) {
2642: $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");
2643: foreach (@{$currnewattach}) {
2644: $_ =~ m#/([^/]+)$#;
1.151 ! albertel 2645: $r->print('<label><input type="checkbox" name="delnewattach" value="'.$_.'" /> '.$1.'</label><br />'."\n");
1.108 raeburn 2646: }
2647: $r->print("<br />");
2648: }
2649: $r->print(<<END);
2650: Add a new attachment to this post. <input type="file" name="addnewattach" /><input type="button" name="upload" value="Upload" onClick="this.form.submit()" />
2651: </td>
2652: </tr>
2653: </table>
2654: <input type="hidden" name="subject" value="$ENV{'form.subject'}" />
2655: <input type="hidden" name="comment" value="$ENV{'form.comment'}" />
2656: <input type="hidden" name="timestamp" value="$ENV{'form.timestamp'}" />
2657: <input type="hidden" name="idx" value="$ENV{'form.idx'}" />
2658: <input type="hidden" name="numoldver" value="$ENV{'form.numoldver'}" />
2659: <input type="hidden" name="origpage" value="$ENV{'form.origpage'}" />
2660: <input type="hidden" name="anondiscuss" value="$ENV{'form.anondiscuss'}" />
2661: <input type="hidden" name="discuss" value="$ENV{'form.discuss'}" />
2662: END
2663: foreach (@{$currnewattach}) {
2664: $r->print('<input type="hidden" name="currnewattach" value="'.$_.'" />'."\n");
2665: }
2666: foreach (@{$currdelold}) {
2667: $r->print('<input type="hidden" name="deloldattach" value="'.$_.'" />'."\n");
2668: }
2669: $r->print(<<END);
2670: <input type="button" name="rtntoedit" value="Store Changes" onClick="setAction()"/>
2671: </form>
2672: </body>
2673: </html>
2674: END
2675: return;
2676: }
2677:
2678: sub process_attachments {
2679: my ($currnewattach,$currdelold,$keepold) = @_;
2680: if (exists($ENV{'form.currnewattach'})) {
2681: if (ref($ENV{'form.currnewattach'}) eq 'ARRAY') {
2682: @{$currnewattach} = @{$ENV{'form.currnewattach'}};
2683: } else {
2684: $$currnewattach[0] = $ENV{'form.currnewattach'};
2685: }
2686: }
2687: if (exists($ENV{'form.deloldattach'})) {
2688: if (ref($ENV{'form.deloldattach'}) eq 'ARRAY') {
2689: @{$currdelold} = @{$ENV{'form.deloldattach'}};
2690: } else {
2691: $$currdelold[0] = $ENV{'form.deloldattach'};
2692: }
2693: }
2694: if (exists($ENV{'form.delnewattach'})) {
2695: my @currdelnew = ();
2696: my @currnew = ();
2697: if (ref($ENV{'form.delnewattach'}) eq 'ARRAY') {
2698: @currdelnew = @{$ENV{'form.delnewattach'}};
2699: } else {
2700: $currdelnew[0] = $ENV{'form.delnewattach'};
2701: }
2702: foreach my $newone (@{$currnewattach}) {
2703: my $delflag = 0;
2704: foreach (@currdelnew) {
2705: if ($newone eq $_) {
2706: $delflag = 1;
2707: last;
2708: }
2709: }
2710: unless ($delflag) {
2711: push @currnew, $newone;
2712: }
2713: }
2714: @{$currnewattach} = @currnew;
2715: }
2716: if (exists($ENV{'form.keepold'})) {
2717: if (ref($ENV{'form.keepold'}) eq 'ARRAY') {
2718: @{$keepold} = @{$ENV{'form.keepold'}};
2719: } else {
2720: $$keepold[0] = $ENV{'form.keepold'};
2721: }
2722: }
2723: }
2724:
2725: sub generate_attachments_button {
2726: my ($idx,$attachnum,$ressymb,$now,$currnewattach,$deloldattach,$numoldver,$mode) = @_;
2727: my $origpage = $ENV{'REQUEST_URI'};
2728: my $att=$attachnum.' '.&mt("attachments");
2729: my $response = (<<END);
2730: <form name="attachment" action="/adm/feedback?attach=$ressymb" method="post">
2731: Click to add/remove attachments: <input type="button" value="$att"
1.124 raeburn 2732: 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 2733: END
2734: unless ($mode eq 'board') {
2735: $response .= 'javascript:anonchk();';
2736: }
2737: $response .= (<<ENDATTACH);
2738: this.form.submit();" />
2739: <input type="hidden" name="origpage" value="$origpage" />
2740: <input type="hidden" name="idx" value="$idx" />
2741: <input type="hidden" name="timestamp" value="$now" />
2742: <input type="hidden" name="subject" />
2743: <input type="hidden" name="comment" />
2744: <input type="hidden" name="anondiscuss" value = "0";
2745: <input type="hidden" name="discuss" value = "0";
2746: <input type="hidden" name="numoldver" value="$numoldver" />
2747: ENDATTACH
2748: if (defined($deloldattach)) {
2749: if (@{$deloldattach} > 0) {
2750: foreach (@{$deloldattach}) {
2751: $response .= '<input type="hidden" name="deloldattach" value="'.$_.'" />'."\n";
2752: }
2753: }
2754: }
2755: if (defined($currnewattach)) {
2756: if (@{$currnewattach} > 0) {
2757: foreach (@{$currnewattach}) {
2758: $response .= '<input type="hidden" name="currnewattach" value="'.$_.'" />'."\n";
2759: }
2760: }
2761: }
2762: $response .= '</form>';
2763: return $response;
2764: }
2765:
2766: sub extract_attachments {
2767: my ($attachmenturls,$idx,$numoldver,$message,$attachments,$currattach,$currdelold) = @_;
1.116 raeburn 2768: %{$attachments}=();
2769: &get_post_attachments($attachments,$attachmenturls);
2770: foreach my $id (sort keys %{$attachments}) {
2771: if (exists($$attachments{$id}{$numoldver})) {
2772: if (defined($currdelold)) {
2773: if (@{$currdelold} > 0) {
2774: unless (grep/^$id$/,@{$currdelold}) {
2775: $$currattach{$id} = $$attachments{$id}{$numoldver};
1.108 raeburn 2776: }
1.113 raeburn 2777: } else {
2778: $$currattach{$id} = $$attachments{$id}{$numoldver};
1.108 raeburn 2779: }
1.116 raeburn 2780: } else {
2781: $$currattach{$id} = $$attachments{$id}{$numoldver};
1.108 raeburn 2782: }
2783: }
1.116 raeburn 2784: }
2785: my @attached = (sort { $a <=> $b } keys %{$currattach});
2786: if (@attached == 1) {
2787: my $id = $attached[0];
2788: my $attachurl;
2789: if ($attachmenturls =~ m/^<attachment id="0">/) {
2790: $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
2791: } else {
2792: $attachurl = $$attachments{$id}{'filename'};
2793: }
2794: $attachurl=~m|/([^/]+)$|;
2795: $$message.='<br /><a href="'.$attachurl.'"><tt>'.
2796: $1.'</tt></a><br />';
2797: &Apache::lonnet::allowuploaded('/adm/feedback',
2798: $attachurl);
2799: } elsif (@attached > 1) {
2800: $$message.='<ol>';
2801: foreach (@attached) {
2802: my $id = $_;
1.113 raeburn 2803: my $attachurl = &HTML::Entities::decode($$attachments{$id}{'filename'});
1.116 raeburn 2804: my ($fname)
2805: =($attachurl=~m|/([^/]+)$|);
2806: $$message .= '<li><a href="'.$attachurl.
2807: '"><tt>'.
2808: $fname.'</tt></a></li>';
1.108 raeburn 2809: &Apache::lonnet::allowuploaded('/adm/feedback',
1.116 raeburn 2810: $attachurl);
1.108 raeburn 2811: }
1.116 raeburn 2812: $$message .= '</ol>';
1.108 raeburn 2813: }
2814: }
2815:
2816: sub construct_attachmenturl {
2817: my ($currnewattach,$keepold,$symb,$idx)=@_;
2818: my $oldattachmenturl;
2819: my $newattachmenturl;
1.113 raeburn 2820: my $startnum = 0;
1.108 raeburn 2821: my $currver = 0;
2822: if (($ENV{'form.editdisc'}) && ($idx)) {
2823: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
2824: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
2825: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
2826: $oldattachmenturl = $contrib{$idx.':attachmenturl'};
2827: if ($contrib{$idx.':history'}) {
2828: if ($contrib{$idx.':history'} =~ /:/) {
2829: my @oldversions = split/:/,$contrib{$idx.':history'};
2830: $currver = 1 + scalar(@oldversions);
2831: } else {
2832: $currver = 2;
2833: }
2834: } else {
2835: $currver = 1;
2836: }
2837: if ($oldattachmenturl) {
1.113 raeburn 2838: if ($oldattachmenturl =~ m/^<attachment id="0">/) {
2839: my %attachments = ();
2840: my $prevver = $currver-1;
2841: &get_post_attachments(\%attachments,$oldattachmenturl);
1.116 raeburn 2842: my $numattach = scalar(keys %attachments);
1.113 raeburn 2843: $startnum += $numattach;
2844: foreach my $num (sort {$a <=> $b} keys %attachments) {
2845: $newattachmenturl .= '<attachment id="'.$num.'"><filename>'.$attachments{$num}{'filename'}.'</filename>';
1.116 raeburn 2846: foreach $_ (sort {$a <=> $b} keys %{$attachments{$num}}) {
2847: unless ($_ eq 'filename') {
2848: $newattachmenturl .= '<post id="'.$_.'">'.$attachments{$num}{$_}.'</post>';
2849: }
1.113 raeburn 2850: }
2851: if (grep/^$num$/,@{$keepold}) {
2852: $newattachmenturl .= '<post id="'.$currver.'">'.$attachments{$num}{$prevver}.'</post>';
1.108 raeburn 2853: }
1.113 raeburn 2854: $newattachmenturl .= '</attachment>';
1.108 raeburn 2855: }
2856: } else {
1.116 raeburn 2857: $newattachmenturl = '<attachment id="0"><filename>'.&HTML::Entities::encode($oldattachmenturl).'</filename><post id="0">n</post>';
1.108 raeburn 2858: unless (grep/^0$/,@{$keepold}) {
1.113 raeburn 2859: $newattachmenturl .= '<post id="1">n</post>';
1.108 raeburn 2860: }
1.113 raeburn 2861: $newattachmenturl .= '</attachment>';
1.108 raeburn 2862: $startnum ++;
2863: }
2864: }
2865: }
2866: for (my $i=0; $i<@{$currnewattach}; $i++) {
2867: my $attachnum = $startnum + $i;
1.113 raeburn 2868: $newattachmenturl .= '<attachment id="'.$attachnum.'"><filename>'.&HTML::Entities::encode($$currnewattach[$i]).'</filename><post id="'.$currver.'">n</post></attachment>';
1.108 raeburn 2869: }
2870: return $newattachmenturl;
2871: }
1.128 raeburn 2872:
2873: sub has_discussion {
2874: my $resourcesref = shift;
2875: my $navmap = Apache::lonnavmaps::navmap->new();
2876: my @allres=$navmap->retrieveResources();
2877: foreach my $resource (@allres) {
2878: if ($resource->hasDiscussion()) {
2879: my $ressymb;
2880: if ($resource->symb() =~ m-(___adm/\w+/\w+)/(\d+)/bulletinboard$-) {
2881: $ressymb = 'bulletin___'.$2.$1.'/'.$2.'/bulletinboard';
2882: } else {
2883: $ressymb = $resource->symb();
2884: }
2885: push @{$resourcesref}, $ressymb;
2886: }
2887: }
2888: return;
1.143 raeburn 2889: }
2890:
2891: sub sort_filter_names {
2892: my ($sort_types,$role_types,$status_types) = @_;
2893: %{$sort_types} = (
2894: ascdate => 'Date order - oldest first',
2895: descdate => 'Date order - newest first',
2896: thread => 'Threaded',
2897: subject => 'By subject',
2898: username => 'By domain and username',
2899: lastfirst => 'By last name, first name'
2900: );
2901: %{$role_types} = (
2902: all => 'All roles',
2903: st => 'Students',
2904: cc => 'Course Coordinators',
2905: in => 'Instructors',
2906: ta => 'TAs',
2907: ep => 'Exam proctors',
2908: ad => 'Administrators',
2909: cr => 'Custom roles'
2910: );
2911: %{$status_types} = (
2912: all => 'Roles of any status',
2913: Active => 'Only active roles',
2914: Expired => 'Only inactive roles'
2915: );
2916: }
1.108 raeburn 2917:
1.6 albertel 2918: sub handler {
2919: my $r = shift;
1.8 www 2920: if ($r->header_only) {
1.71 www 2921: &Apache::loncommon::content_type($r,'text/html');
1.8 www 2922: $r->send_http_header;
2923: return OK;
2924: }
1.15 www 2925:
2926: # --------------------------- Get query string for limited number of parameters
2927:
1.97 raeburn 2928: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.137 albertel 2929: ['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 2930:
1.111 raeburn 2931: if ($ENV{'form.discsymb'}) {
1.133 albertel 2932: my ($symb,$feedurl) = &get_feedurl_and_clean_symb($ENV{'form.discsymb'});
1.111 raeburn 2933: my $readkey = $symb.'_read';
2934: my $chgcount = 0;
1.133 albertel 2935: my %readinghash = &Apache::lonnet::get('nohist_'.$ENV{'request.course.id'}.'_discuss',[$readkey],$ENV{'user.domain'},$ENV{'user.name'});
1.111 raeburn 2936: foreach my $key (keys %ENV) {
2937: if ($key =~ m/^form\.postunread_(\d+)/) {
2938: if ($readinghash{$readkey} =~ /\.$1\./) {
2939: $readinghash{$readkey} =~ s/\.$1\.//;
2940: $chgcount ++;
2941: }
2942: } elsif ($key =~ m/^form\.postread_(\d+)/) {
2943: unless ($readinghash{$readkey} =~ /\.$1\./) {
2944: $readinghash{$readkey} .= '.'.$1.'.';
2945: $chgcount ++;
2946: }
2947: }
2948: }
2949: if ($chgcount > 0) {
1.133 albertel 2950: &Apache::lonnet::put('nohist_'.$ENV{'request.course.id'}.'_discuss',
2951: \%readinghash,$ENV{'user.domain'},$ENV{'user.name'});
1.111 raeburn 2952: }
1.133 albertel 2953: &redirect_back($r,$feedurl,&mt('Marked postings read/unread').'<br />',
2954: '0','0','',$ENV{'form.previous'},'','','',);
1.111 raeburn 2955: return OK;
2956: }
1.109 raeburn 2957: if ($ENV{'form.allversions'}) {
2958: &Apache::loncommon::content_type($r,'text/html');
2959: $r->send_http_header;
1.133 albertel 2960: my $bodytag=&Apache::loncommon::bodytag('Discussion Post Versions');
1.143 raeburn 2961: $r->print(<<END);
1.109 raeburn 2962: <html>
2963: <head>
2964: <title>Post Versions</title>
2965: <meta http-equiv="pragma" content="no-cache" />
2966: </head>
2967: $bodytag
2968: END
2969: my $crs='/'.$ENV{'request.course.id'};
2970: if ($ENV{'request.course.sec'}) {
2971: $crs.='_'.$ENV{'request.course.sec'};
2972: }
1.133 albertel 2973: $crs=~s|_|/|g;
1.109 raeburn 2974: my $seeid=&Apache::lonnet::allowed('rin',$crs);
2975: my ($symb,$idx)=split(/\:\:\:/,$ENV{'form.allversions'});
1.133 albertel 2976: ($symb)=&get_feedurl_and_clean_symb($symb);
1.109 raeburn 2977: if ($idx > 0) {
1.116 raeburn 2978: my %messages = ();
2979: my %subjects = ();
2980: my %attachmsgs = ();
2981: my %allattachments = ();
2982: my %imsfiles = ();
2983: my ($screenname,$plainname);
1.133 albertel 2984: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
2985: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
2986: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
2987: $r->print(&get_post_contents(\%contrib,$idx,$seeid,'allversions',\%messages,\%subjects,\%allattachments,\%attachmsgs,\%imsfiles,\$screenname,\$plainname));
1.109 raeburn 2988: }
2989: return OK;
2990: }
1.101 raeburn 2991: if ($ENV{'form.posterlist'}) {
1.133 albertel 2992: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.applysort'});
2993: &print_showposters($r,$symb,$ENV{'form.previous'},$feedurl,
2994: $ENV{'form.sortposts'});
1.101 raeburn 2995: return OK;
2996: }
2997: if ($ENV{'form.userpick'}) {
1.133 albertel 2998: my @posters = &Apache::loncommon::get_env_multiple('form.stuinfo');
2999: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.userpick'});
1.101 raeburn 3000: my $numpicks = @posters;
1.133 albertel 3001: my %discinfo;
3002: $discinfo{$symb.'_userpick'} = join('&',@posters);
3003: &Apache::lonnet::put('nohist_'.$ENV{'request.course.id'}.'_discuss',
3004: \%discinfo,$ENV{'user.domain'},$ENV{'user.name'});
3005: &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0',
3006: '',$ENV{'form.previous'},$ENV{'form.sortposts'},'','','',
3007: $numpicks);
1.101 raeburn 3008: return OK;
3009: }
1.100 raeburn 3010: if ($ENV{'form.applysort'}) {
1.133 albertel 3011: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.applysort'});
3012: &redirect_back($r,$feedurl,&mt('Changed sort/filter').'<br />','0','0',
3013: '',$ENV{'form.previous'},$ENV{'form.sortposts'},
3014: $ENV{'form.rolefilter'},$ENV{'form.statusfilter'},
1.143 raeburn 3015: $ENV{'form.sectionpick'});
1.100 raeburn 3016: return OK;
1.137 albertel 3017: } elsif ($ENV{'form.cmd'} eq 'sortfilter') {
3018: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.symb'});
1.133 albertel 3019: &print_sortfilter_options($r,$symb,$ENV{'form.previous'},$feedurl);
1.100 raeburn 3020: return OK;
1.128 raeburn 3021: } elsif ($ENV{'form.navtime'}) {
1.99 raeburn 3022: my %discinfo = ();
3023: my @resources = ();
1.128 raeburn 3024: if (defined($ENV{'form.navmaps'})) {
3025: if ($ENV{'form.navmaps'} =~ /:/) {
3026: @resources = split/:/,$ENV{'form.navmaps'};
3027: } else {
3028: @resources = ("$ENV{'form.navmaps'}");
3029: }
1.99 raeburn 3030: } else {
1.128 raeburn 3031: &has_discussion(\@resources);
1.99 raeburn 3032: }
3033: my $numitems = @resources;
3034: my $feedurl = '/adm/navmaps';
1.133 albertel 3035: if ($ENV{'form.navurl'}) { $feedurl .= '?'.$ENV{'form.navurl'}; }
1.99 raeburn 3036: my %lt = &Apache::lonlocal::texthash(
3037: 'mnpa' => 'Marked "New" posts as read in a total of',
1.128 raeburn 3038: 'robb' => 'resources/bulletin boards.',
3039: 'twnp' => 'There are currently no resources or bulletin boards with unread discussion postings.'
1.99 raeburn 3040: );
3041: foreach (@resources) {
3042: # backward compatibility (bulletin boards used to be 'wrapped')
3043: my $ressymb=$_;
1.132 albertel 3044: &Apache::lonenc::check_decrypt(\$ressymb);
1.99 raeburn 3045: if ($ressymb =~ m/bulletin___\d+___/) {
3046: unless ($ressymb =~ m|bulletin___\d+___adm/wrapper|) {
3047: $ressymb=~s|(bulletin___\d+___)|$1adm/wrapper/|;
3048: }
3049: }
3050: my $lastkey = $ressymb.'_lastread';
1.127 albertel 3051: $discinfo{$lastkey} = $ENV{'form.navtime'};
1.99 raeburn 3052: }
1.128 raeburn 3053: my $textline = "<b>$lt{'mnpa'} $numitems $lt{'robb'}</b>";
3054: if ($numitems > 0) {
1.133 albertel 3055: &Apache::lonnet::put('nohist_'.$ENV{'request.course.id'}.'_discuss',
3056: \%discinfo,$ENV{'user.domain'},$ENV{'user.name'});
1.128 raeburn 3057: } else {
3058: $textline = "<b>$lt{'twnp'}</b>";
3059: }
1.99 raeburn 3060: &Apache::loncommon::content_type($r,'text/html');
3061: $r->send_http_header;
1.150 albertel 3062: my $logo=&Apache::loncommon::lonhttpdurl('/adm/lonIcons/lonlogos.gif');
1.99 raeburn 3063: $r->print (<<ENDREDIR);
3064: <html>
3065: <head>
3066: <title>New posts marked as read</title>
3067: <meta http-equiv="pragma" content="no-cache" />
3068: <meta HTTP-EQUIV="Refresh" CONTENT="2; url=$feedurl" />
3069: </head>
3070: <body bgcolor="#FFFFFF" onLoad='if (window.name!="loncapaclient") { this.document.reldt.submit(); self.close(); }'>
1.150 albertel 3071: <img align="right" src="$logo" />
1.128 raeburn 3072: $textline
1.99 raeburn 3073: <form name="reldt" action="$feedurl" target="loncapaclient">
3074: </form>
1.121 albertel 3075: <br /><a href="$feedurl">Continue</a>
1.99 raeburn 3076: </body>
3077: </html>
3078: ENDREDIR
3079: return OK;
3080: } elsif ($ENV{'form.modifydisp'}) {
1.133 albertel 3081: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.modifydisp'});
3082: my ($dispchgA,$dispchgB,$markchg,$toggchg) =
3083: split(/_/,$ENV{'form.changes'});
3084: &print_display_options($r,$symb,$ENV{'form.previous'},$dispchgA,
3085: $dispchgB,$markchg,$toggchg,$feedurl);
1.97 raeburn 3086: return OK;
1.133 albertel 3087: } elsif ($ENV{'form.markondisp'} || $ENV{'form.markonread'} ||
3088: $ENV{'form.allposts'} || $ENV{'form.onlyunread'} ||
3089: $ENV{'form.onlyunmark'} || $ENV{'form.toggoff'} ||
1.137 albertel 3090: $ENV{'form.toggon'} || $ENV{'form.markread'}) {
3091: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.symb'});
3092: my %discinfo;
1.133 albertel 3093: # ------------------------ Modify setting for read/unread toggle for each post
1.138 albertel 3094: if ($ENV{'form.toggoff'}) { $discinfo{$symb.'_readtoggle'}=0; }
3095: if ($ENV{'form.toggon'}) { $discinfo{$symb.'_readtoggle'}=1; }
1.133 albertel 3096: # --------- Modify setting for identification of 'NEW' posts in this discussion
1.137 albertel 3097: if ($ENV{'form.markondisp'}) {
3098: $discinfo{$symb.'_lastread'} = time;
3099: $discinfo{$symb.'_markondisp'} = 1;
3100: }
3101: if ($ENV{'form.markonread'}) {
3102: if ( $ENV{'form.previous'} > 0 ) {
3103: $discinfo{$symb.'_lastread'} = $ENV{'form.previous'};
3104: }
3105: $discinfo{$symb.'_markondisp'} = 0;
1.84 raeburn 3106: }
1.133 albertel 3107: # --------------------------------- Modify display setting for this discussion
1.137 albertel 3108: if ($ENV{'form.allposts'}) {
3109: $discinfo{$symb.'_showonlyunread'} = 0;
3110: $discinfo{$symb.'_showonlyunmark'} = 0;
1.84 raeburn 3111: }
1.137 albertel 3112: if ($ENV{'form.onlyunread'}) { $discinfo{$symb.'_showonlyunread'} = 1; }
3113: if ($ENV{'form.onlyunmark'}) { $discinfo{$symb.'_showonlyunmark'} = 1; }
3114: # ----------------------------------------------------- Mark new posts not NEW
3115: if ($ENV{'form.markread'}) { $discinfo{$symb.'_lastread'} = time; }
3116: &Apache::lonnet::put('nohist_'.$ENV{'request.course.id'}.'_discuss',
3117: \%discinfo,$ENV{'user.domain'},$ENV{'user.name'});
1.133 albertel 3118: my $previous=$ENV{'form.previous'};
3119: if ($ENV{'form.markondisp'}) { $previous=undef; }
3120: &redirect_back($r,$feedurl,&mt('Changed display status').'<br />',
3121: '0','0','',$previous);
1.84 raeburn 3122: return OK;
1.78 raeburn 3123: } elsif (($ENV{'form.hide'}) || ($ENV{'form.unhide'})) {
1.15 www 3124: # ----------------------------------------------------------------- Hide/unhide
1.133 albertel 3125: my $entry=$ENV{'form.hide'}?$ENV{'form.hide'}:$ENV{'form.unhide'};
3126: my ($symb,$idx)=split(/\:\:\:/,$entry);
3127: ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
1.15 www 3128:
1.133 albertel 3129: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
3130: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
3131: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.15 www 3132:
1.133 albertel 3133: my $currenthidden=$contrib{'hidden'};
3134: my $currentstudenthidden=$contrib{'studenthidden'};
1.15 www 3135:
1.133 albertel 3136: my $crs='/'.$ENV{'request.course.id'};
3137: if ($ENV{'request.course.sec'}) {
3138: $crs.='_'.$ENV{'request.course.sec'};
3139: }
3140: $crs=~s/\_/\//g;
3141: my $seeid=&Apache::lonnet::allowed('rin',$crs);
1.102 raeburn 3142:
1.133 albertel 3143: if ($ENV{'form.hide'}) {
3144: $currenthidden.='.'.$idx.'.';
3145: unless ($seeid) {
3146: $currentstudenthidden.='.'.$idx.'.';
3147: }
3148: } else {
3149: $currenthidden=~s/\.$idx\.//g;
3150: }
3151: my %newhash=('hidden' => $currenthidden);
3152: if ( ($ENV{'form.hide'}) && (!$seeid) ) {
3153: $newhash{'studenthidden'} = $currentstudenthidden;
3154: }
1.38 www 3155:
1.133 albertel 3156: &Apache::lonnet::store(\%newhash,$symb,$ENV{'request.course.id'},
3157: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
3158: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.38 www 3159:
1.133 albertel 3160: &redirect_back($r,$feedurl,&mt('Changed discussion status').'<br />',
3161: '0','0','',$ENV{'form.previous'});
1.135 albertel 3162: return OK;
1.137 albertel 3163: } elsif ($ENV{'form.cmd'}=~/^(threadedoff|threadedon)$/) {
3164: my ($symb,$feedurl)=&get_feedurl_and_clean_symb($ENV{'form.symb'});
3165: if ($ENV{'form.cmd'} eq 'threadedon') {
1.69 www 3166: &Apache::lonnet::put('environment',{'threadeddiscussion' => 'on'});
3167: &Apache::lonnet::appenv('environment.threadeddiscussion' => 'on');
3168: } else {
3169: &Apache::lonnet::del('environment',['threadeddiscussion']);
3170: &Apache::lonnet::delenv('environment\.threadeddiscussion');
1.72 albertel 3171: }
1.133 albertel 3172: &redirect_back($r,$feedurl,&mt('Changed discussion view mode').'<br />',
3173: '0','0','',$ENV{'form.previous'});
1.135 albertel 3174: return OK;
1.38 www 3175: } elsif ($ENV{'form.deldisc'}) {
3176: # --------------------------------------------------------------- Hide for good
1.133 albertel 3177: my ($symb,$idx)=split(/\:\:\:/,$ENV{'form.deldisc'});
3178: ($symb,my $feedurl)=&get_feedurl_and_clean_symb($symb);
3179: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
3180: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
3181: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.135 albertel 3182: my %newhash=('deleted' => $contrib{'deleted'}.".$idx.");
3183: &Apache::lonnet::store(\%newhash,$symb,$ENV{'request.course.id'},
3184: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
3185: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
3186: &redirect_back($r,$feedurl,&mt('Changed discussion status').'<br />',
3187: '0','0','',$ENV{'form.previous'});
3188: return OK;
1.33 www 3189: } elsif ($ENV{'form.preview'}) {
3190: # -------------------------------------------------------- User wants a preview
3191: &show_preview($r);
1.135 albertel 3192: return OK;
1.108 raeburn 3193: } elsif ($ENV{'form.attach'}) {
3194: # -------------------------------------------------------- Work on attachments
3195: &Apache::loncommon::content_type($r,'text/html');
3196: $r->send_http_header;
3197: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['subject','comment','addnewattach','delnewattach','timestamp','numoldver','idx','anondiscuss','discuss']);
1.133 albertel 3198: my (@currnewattach,@currdelold,@keepold);
1.108 raeburn 3199: &process_attachments(\@currnewattach,\@currdelold,\@keepold);
3200: if (exists($ENV{'form.addnewattach.filename'})) {
3201: unless (length($ENV{'form.addnewattach'})>131072) {
3202: my $subdir = 'feedback/'.$ENV{'form.timestamp'};
3203: my $newattachment=&Apache::lonnet::userfileupload('addnewattach',undef,$subdir);
1.139 albertel 3204: push @currnewattach, $newattachment;
1.108 raeburn 3205: }
3206: }
1.133 albertel 3207: my $attachmenturls;
3208: my ($symb) = &get_feedurl_and_clean_symb($ENV{'form.attach'});
1.108 raeburn 3209: my $idx = $ENV{'form.idx'};
3210: if ($idx) {
3211: my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
3212: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
3213: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
3214: $attachmenturls = $contrib{$idx.':attachmenturl'};
3215: }
1.133 albertel 3216: &modify_attachments($r,\@currnewattach,\@currdelold,$symb,$idx,
3217: $attachmenturls);
1.135 albertel 3218: return OK;
1.116 raeburn 3219: } elsif ($ENV{'form.export'}) {
3220: &Apache::loncommon::content_type($r,'text/html');
3221: $r->send_http_header;
1.133 albertel 3222: my ($symb,$feedurl) = &get_feedurl_and_clean_symb($ENV{'form.export'});
3223: my $mode='board';
1.116 raeburn 3224: my $status='OPEN';
3225: my $previous=$ENV{'form.previous'};
3226: if ($feedurl =~ /\.(problem|exam|quiz|assess|survey|form|library)$/) {
3227: $mode='problem';
3228: $status=$Apache::inputtags::status[-1];
3229: }
3230: my $discussion = &list_discussion($mode,$status,$symb);
3231: my $bodytag=&Apache::loncommon::bodytag('Resource Feedback and Discussion');
3232: $r->print($bodytag.$discussion);
3233: return OK;
1.15 www 3234: } else {
3235: # ------------------------------------------------------------- Normal feedback
1.133 albertel 3236: my $feedurl=$ENV{'form.postdata'};
3237: $feedurl=~s/^http\:\/\///;
3238: $feedurl=~s/^$ENV{'SERVER_NAME'}//;
3239: $feedurl=~s/^$ENV{'HTTP_HOST'}//;
3240: $feedurl=~s/\?.+$//;
1.8 www 3241:
1.133 albertel 3242: my $symb;
3243: if ($ENV{'form.replydisc'}) {
3244: $symb=(split(/\:\:\:/,$ENV{'form.replydisc'}))[0];
3245: my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
3246: $feedurl=&Apache::lonnet::clutter($url);
3247: } elsif ($ENV{'form.editdisc'}) {
3248: $symb=(split(/\:\:\:/,$ENV{'form.editdisc'}))[0];
1.52 www 3249: my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
1.133 albertel 3250: $feedurl=&Apache::lonnet::clutter($url);
3251: } elsif ($ENV{'form.origpage'}) {
3252: $symb="";
3253: } else {
3254: $symb=&Apache::lonnet::symbread($feedurl);
3255: }
3256: unless ($symb) {
3257: $symb=$ENV{'form.symb'};
3258: if ($symb) {
3259: my ($map,$id,$url)=&Apache::lonnet::decode_symb($symb);
3260: $feedurl=&Apache::lonnet::clutter($url);
3261: }
3262: }
3263: &Apache::lonenc::check_decrypt(\$symb);
3264: my $goahead=1;
3265: if ($feedurl=~/\.(problem|exam|quiz|assess|survey|form)$/) {
3266: unless ($symb) { $goahead=0; }
3267: }
3268: # backward compatibility (bulletin boards used to be 'wrapped')
3269: if ($feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
3270: $feedurl=~s|^/adm/wrapper||;
3271: }
3272: if (!$goahead) {
3273: # Ambiguous Problem Resource
3274: $r->internal_redirect('/adm/ambiguous');
3275: return OK;
1.31 www 3276: }
1.8 www 3277: # Go ahead with feedback, no ambiguous reference
1.133 albertel 3278: unless (
3279: (
3280: ($feedurl=~m:^/res:) && ($feedurl!~m:^/res/adm:)
3281: )
3282: ||
3283: ($ENV{'request.course.id'} && ($feedurl!~m:^/adm:))
3284: ||
3285: ($ENV{'request.course.id'} && ($symb=~/^bulletin\_\_\_/))
3286: ) {
1.135 albertel 3287: &Apache::loncommon::content_type($r,'text/html');
3288: $r->send_http_header;
1.133 albertel 3289: # Unable to give feedback
3290: &no_redirect_back($r,$feedurl);
3291: }
1.6 albertel 3292: # --------------------------------------------------- Print login screen header
1.133 albertel 3293: unless ($ENV{'form.sendit'}) {
1.135 albertel 3294: &Apache::loncommon::content_type($r,'text/html');
3295: $r->send_http_header;
1.141 raeburn 3296: my $options=&screen_header($feedurl,$symb);
1.133 albertel 3297: if ($options) {
3298: &mail_screen($r,$feedurl,$options);
3299: } else {
3300: &fail_redirect($r,$feedurl);
3301: }
3302: return OK;
1.6 albertel 3303: }
3304:
3305: # Get previous user input
1.9 albertel 3306: my $prevattempts=&Apache::loncommon::get_previous_attempt(
1.133 albertel 3307: $symb,$ENV{'user.name'},$ENV{'user.domain'},
3308: $ENV{'request.course.id'});
1.6 albertel 3309:
3310: # Get output from resource
3311: my $usersaw=&resource_output($feedurl);
3312:
1.50 albertel 3313: # Get resource answer (need to allow student to view grades for this to work)
3314: &Apache::lonnet::appenv(('allowed.vgr'=>'F'));
1.40 albertel 3315: my $useranswer=&Apache::loncommon::get_student_answers(
1.133 albertel 3316: $symb,$ENV{'user.name'},$ENV{'user.domain'},
3317: $ENV{'request.course.id'});
1.50 albertel 3318: &Apache::lonnet::delenv('allowed.vgr');
1.42 www 3319: # Get attachments, if any, and not too large
3320: my $attachmenturl='';
1.133 albertel 3321: if (($ENV{'form.origpage'}) || ($ENV{'form.editdisc'}) ||
3322: ($ENV{'form.replydisc'})) {
3323: my ($symb,$idx);
3324: if ($ENV{'form.replydisc'}) {
3325: ($symb,$idx)=split(/\:\:\:/,$ENV{'form.replydisc'});
3326: } elsif ($ENV{'form.editdisc'}) {
3327: ($symb,$idx)=split(/\:\:\:/,$ENV{'form.editdisc'});
3328: } elsif ($ENV{'form.origpage'}) {
3329: $symb = $ENV{'form.symb'};
3330: }
1.132 albertel 3331: &Apache::lonenc::check_decrypt(\$symb);
1.133 albertel 3332: my @currnewattach = ();
3333: my @deloldattach = ();
3334: my @keepold = ();
3335: &process_attachments(\@currnewattach,\@deloldattach,\@keepold);
3336: $symb=~s|(bulletin___\d+___)adm/wrapper/|$1|;
3337: $attachmenturl=&construct_attachmenturl(\@currnewattach,\@keepold,$symb,$idx);
1.108 raeburn 3338: } elsif ($ENV{'form.attachment.filename'}) {
1.42 www 3339: unless (length($ENV{'form.attachment'})>131072) {
1.82 albertel 3340: $attachmenturl=&Apache::lonnet::userfileupload('attachment',undef,'feedback');
1.42 www 3341: }
3342: }
1.6 albertel 3343: # Filter HTML out of message (could be nasty)
1.39 www 3344: my $message=&clear_out_html($ENV{'form.comment'});
1.6 albertel 3345:
3346: # Assemble email
1.8 www 3347: my ($email,$citations)=&assemble_email($feedurl,$message,$prevattempts,
1.133 albertel 3348: $usersaw,$useranswer);
1.40 albertel 3349:
1.6 albertel 3350: # Who gets this?
3351: my ($typestyle,%to) = &decide_receiver($feedurl);
3352:
3353: # Actually send mail
1.43 www 3354: my ($status,$numsent)=&send_msg($feedurl,$email,$citations,
1.133 albertel 3355: $attachmenturl,%to);
1.13 www 3356:
3357: # Discussion? Store that.
3358:
1.32 albertel 3359: my $numpost=0;
1.133 albertel 3360: if ($ENV{'form.discuss'} || $ENV{'form.anondiscuss'}) {
3361: my $subject = &clear_out_html($ENV{'form.subject'});
3362: my $anonmode=(defined($ENV{'form.anondiscuss'}));
3363: $typestyle.=&adddiscuss($symb,$message,$anonmode,$attachmenturl,
3364: $subject);
1.32 albertel 3365: $numpost++;
1.14 www 3366: }
1.133 albertel 3367:
1.6 albertel 3368: # Receipt screen and redirect back to where came from
1.80 raeburn 3369: &redirect_back($r,$feedurl,$typestyle,$numsent,$numpost,$status,$ENV{'form.previous'});
1.133 albertel 3370: }
3371: return OK;
3372: }
1.6 albertel 3373:
1.133 albertel 3374: sub wrap_symb {
3375: my ($ressymb)=@_;
3376: if ($ressymb =~ /bulletin___\d+___/) {
3377: unless ($ressymb =~ m|bulletin___\d+___adm/wrapper|) {
3378: $ressymb=~s|(bulletin___\d+___)|$1adm/wrapper|;
3379: }
1.6 albertel 3380: }
1.133 albertel 3381: return $ressymb;
3382: }
3383: sub dewrapper {
3384: my ($feedurl)=@_;
3385: if ($$feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
3386: $$feedurl=~s|^/adm/wrapper||;
3387: }
3388: }
3389:
3390: sub get_feedurl {
3391: my ($symb)=@_;
3392: my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
3393: my $feedurl = &Apache::lonnet::clutter($url);
3394: &dewrapper(\$feedurl);
3395: return $feedurl;
1.15 www 3396: }
1.1 www 3397:
1.133 albertel 3398: sub get_feedurl_and_clean_symb {
3399: my ($symb)=@_;
3400: &Apache::lonenc::check_decrypt(\$symb);
3401: # backward compatibility (bulletin boards used to be 'wrapped')
3402: unless ($symb =~ m|bulletin___\d+___adm/wrapper|) {
3403: $symb=~s|(bulletin___\d+___)|$1adm/wrapper|;
3404: }
3405: my $feedurl = &get_feedurl($symb);
3406: return ($symb,$feedurl);
3407: }
1.1 www 3408: 1;
3409: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>