--- loncom/interface/lonfeedback.pm 2004/08/17 14:27:19 1.116
+++ loncom/interface/lonfeedback.pm 2004/09/13 12:19:14 1.124
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Feedback
#
-# $Id: lonfeedback.pm,v 1.116 2004/08/17 14:27:19 raeburn Exp $
+# $Id: lonfeedback.pm,v 1.124 2004/09/13 12:19:14 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -41,13 +41,13 @@ use Apache::lonspeller();
use Cwd;
sub discussion_open {
- my ($status)=@_;
+ my ($status,$symb)=@_;
if (defined($status) &&
!($status eq 'CAN_ANSWER' || $status eq 'CANNOT_ANSWER'
|| $status eq 'OPEN')) {
return 0;
}
- my $close=&Apache::lonnet::EXT('resource.0.discussend');
+ my $close=&Apache::lonnet::EXT('resource.0.discussend',$symb);
if (defined($close) && $close ne '' && $close < time) {
return 0;
}
@@ -59,7 +59,7 @@ sub discussion_visible {
if (not &discussion_open($status)) {
my $hidden=&Apache::lonnet::EXT('resource.0.discusshide');
if (lc($hidden) eq 'yes' or $hidden eq '' or !defined($hidden)) {
- return 0;
+ if (!$ENV{'request.role.adv'}) { return 0; }
}
}
return 1;
@@ -177,22 +177,30 @@ sub list_discussion {
# Override user's default if user specified display setting for this discussion
if (defined($dischash{$ondispkey})) {
- $markondisp = $dischash{$ondispkey};
+ unless ($dischash{$ondispkey} eq '') {
+ $markondisp = $dischash{$ondispkey};
+ }
}
if ($markondisp) {
$discinfo{$lastkey} = time;
}
if (defined($dischash{$showkey})) {
- $showonlyunread = $dischash{$showkey};
+ unless ($dischash{$showkey} eq '') {
+ $showonlyunread = $dischash{$showkey};
+ }
}
if (defined($dischash{$markkey})) {
- $showunmark = $dischash{$markkey};
+ unless ($dischash{$markkey} eq '') {
+ $showunmark = $dischash{$markkey};
+ }
}
if (defined($dischash{$visitkey})) {
- $visit = $dischash{$visitkey};
+ unless ($dischash{$visitkey} eq '') {
+ $visit = $dischash{$visitkey};
+ }
}
$visit ++;
@@ -446,11 +454,11 @@ imscp_v1p1.xsd http://www.imsglobal.org/
$alldiscussion{$_} = $_;
}
unless ( ($notshown{$alldiscussion{$_}} eq '1') || ($shown{$alldiscussion{$_}} == 0) ) {
- unless ($outputtarget eq 'tex' && $outputtarget eq 'export') {
+ if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
$discussion.="\n
";
}
my $thisdepth=$depth[$alldiscussion{$_}];
- unless ($outputtarget eq 'tex' || $outputtarget eq 'export') {
+ if ($outputtarget ne 'tex' && $outputtarget ne 'export') {
for (1..$thisdepth) {
$discussion.=' | ';
}
@@ -618,15 +626,16 @@ END
my $subject = '';
if ($ENV{'form.origpage'}) {
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['addnewattach','deloldattach','delnewattach','timestamp','idx','subject','comment']);
- $subject = &HTML::Entities::encode($ENV{'form.subject'},'<>&"');
- $comment = &HTML::Entities::encode($ENV{'form.comment'},'<>&"');
+ $subject = &Apache::lonnet::unescape($ENV{'form.subject'});
+ $comment = &Apache::lonnet::unescape($ENV{'form.comment'});
my @keepold = ();
&process_attachments(\@currnewattach,\@currdelold,\@keepold);
if (@currnewattach > 0) {
$attachnum += @currnewattach;
}
}
- $discussion.=(<
@@ -665,6 +674,7 @@ ENDDISCUSS
$discussion.=$newattachmsg;
$discussion.=&generate_preview_button();
}
+ }
} else {
if (&discussion_open($status) &&
&Apache::lonnet::allowed('pch',
@@ -1306,8 +1316,8 @@ END
}
if ($ENV{'form.origpage'}) {
- $subject = $ENV{'form.subject'};
- $comment = $ENV{'form.comment'};
+ $subject = &Apache::lonnet::unescape($ENV{'form.subject'});
+ $comment = &Apache::lonnet::unescape($ENV{'form.comment'});
&process_attachments(\@currnewattach,\@currdelold,\@keepold);
}
my $latexHelp=&Apache::loncommon::helpLatexCheatsheet();
@@ -1355,7 +1365,7 @@ $htmlheader
}
if (rec) {
- if (typeof(document.mailform.onsubmit)!='undefined') {
+ if (typeof(document.mailform.onsubmit)=='function') {
document.mailform.onsubmit();
}
document.mailform.submit();
@@ -1977,45 +1987,6 @@ sub get_post_attachments {
return;
}
-sub build_ims_export {
- my ($r,$symb,$previous,$feedurl) = @_;
- # backward compatibility (bulletin boards used to be 'wrapped')
- if ($feedurl=~m|^/adm/wrapper/adm/.*/bulletinboard$|) {
- $feedurl=~s|^/adm/wrapper||;
- }
- my %contrib=&Apache::lonnet::restore($symb,$ENV{'request.course.id'},
- $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
- $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
- my @depth=();
- my %alldiscussion=();
- my @discussionitems=();
- my %usernamesort = ();
- my %subjectsort = ();
- my %namesort = ();
- my %notshown = ();
- my %newitem = ();
- my %dischash = ();
- my %shown = ();
- my %roleinfo = ();
- my @posters=();
- my $maxdepth=0;
- my $visible=0;
- my $newpostsflag=0;
- my $status;
- my $viewgrades;
- my $seeid;
- my $prevread;
- my $sortposts;
- my $ressymb;
- my $target;
- my $readkey;
- my $showunmark;
- my $showonlyunread;
-
-}
-
-
-
sub fail_redirect {;
my ($r,$feedurl) = @_;
if ($feedurl=~/^\/adm\//) { $feedurl.='?register=1' };
@@ -2028,6 +1999,7 @@ sub fail_redirect {;
Sorry, no recipients ...
+
Continue