--- loncom/interface/lonfeedback.pm 2010/01/24 03:13:55 1.273.4.3
+++ loncom/interface/lonfeedback.pm 2009/05/28 19:38:33 1.274
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Feedback
#
-# $Id: lonfeedback.pm,v 1.273.4.3 2010/01/24 03:13:55 raeburn Exp $
+# $Id: lonfeedback.pm,v 1.274 2009/05/28 19:38:33 kalberla Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -91,7 +91,7 @@ sub list_discussion {
if (not &discussion_visible($status)) {
if ($mode ne 'board') {
&Apache::lonenc::check_encrypt(\$ressymb);
- return ' '.&send_message_link($ressymb);
+ return '
'.&send_message_link($ressymb)."
";
}
}
if ($group ne '' && $mode eq 'board') {
@@ -105,7 +105,7 @@ sub list_discussion {
if ($blocked) {
&Apache::lonenc::check_encrypt(\$ressymb);
if ($mode ne 'board') {
- $blocktext.=' '.&send_message_link($ressymb);
+ $blocktext.='
'.&send_message_link($ressymb).'
';
}
return $blocktext;
}
@@ -169,8 +169,6 @@ sub list_discussion {
my $cdom = $env{'course.'.$cid.'.domain'};
my $cnum = $env{'course.'.$cid.'.num'};
- my $crstype = &Apache::loncommon::course_type();
-
# Get information about students and non-students in course for filtering display of posts
my %roleshash = ();
@@ -599,7 +597,7 @@ END
my %sort_types = ();
my %role_types = ();
my %status_types = ();
- &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
+ &sort_filter_names(\%sort_types,\%role_types,\%status_types);
$discussion .= '
'.&mt('Sorted by').': '.$sort_types{$sortposts}.' ';
if (defined($env{'form.totposters'})) {
@@ -725,13 +723,13 @@ END
&postingform_display($mode,$ressymb,$now,$subject,
$comment,$outputtarget,$attachnum,
$currnewattach,$currdelold,
- $group,$crstype);
+ $group);
}
} else {
$discussion.=
&postingform_display($mode,$ressymb,$now,$subject,
$comment,$outputtarget,$attachnum,
- $currnewattach,$currdelold,'',$crstype);
+ $currnewattach,$currdelold);
}
}
} else {
@@ -757,9 +755,9 @@ sub send_feedback_link {
my $output = ''.
' '.
- ''.&mt('Post Discussion').'';
+ '" border="0" />'.&mt('Post Discussion').'';
return $output;
}
@@ -767,20 +765,20 @@ sub send_message_link {
my ($ressymb) = @_;
my $output = ''.
' '.&mt('Send Feedback').'';
+ '" border="0" />'.&mt('Send Feedback').'';
return $output;
}
sub action_links_bar {
my ($colspan,$ressymb,$visible,$newpostsflag,$group,$prevread,$markondisp) = @_;
my $discussion = '
'Note: in anonymous discussion, your name is visible only to course faculty',
@@ -835,9 +835,6 @@ sub postingform_display {
'poan' => 'Post Anonymous Discussion',
'newa' => 'New attachments',
);
- if ($crstype eq 'Community') {
- $lt{'note'} = &mt('Note: in anonymous discussion, your name is visible only to community facilitators');
- }
my $postingform = (<
@@ -865,7 +862,7 @@ ENDDISCUSS
}
my $blockblog = &Apache::loncommon::blocking_status('blogs');
if (!$blockblog) {
- $postingform .= &add_blog_checkbox($crstype);
+ $postingform .= &add_blog_checkbox();
}
$postingform .= "\n";
if ($outputtarget ne 'tex') {
@@ -1482,6 +1479,7 @@ sub mail_screen {
}
my %lt = &Apache::lonlocal::texthash(
+ 'plch' => 'Please check at least one of the following feedback types:',
'myqu' => 'My question/comment/feedback:',
'title' => 'Title',
'reta' => 'Retained attachments',
@@ -1692,6 +1690,7 @@ END
END
}
$r->print(<
$quote
$lt{'myqu'}
@@ -2007,13 +2006,6 @@ sub print_sortfilter_options {
my $group_sel = '';
my $numgroupvis = 5;
my %sectioncount = &Apache::loncommon::get_sections();
- my @courseroles = qw(st ad ep ta in);
- my $crstype = &Apache::loncommon::course_type();
- my $ccrole = 'cc';
- if ($crstype eq 'Community') {
- $ccrole = 'co';
- }
- push(@courseroles,$ccrole);
if ($env{'request.course.sec'} !~ /^\s*$/) { #Restrict section choice to current section
@sections = ('all',$env{'request.course.sec'});
@@ -2077,7 +2069,7 @@ sub print_sortfilter_options {
my %sort_types = ();
my %role_types = ();
my %status_types = ();
- &sort_filter_names(\%sort_types,\%role_types,\%status_types,$crstype);
+ &sort_filter_names(\%sort_types,\%role_types,\%status_types);
my $js = <
@@ -2166,11 +2158,10 @@ $start_page
@@ -2570,22 +2561,6 @@ ENDNOREDIRTWO
sub screen_header {
my ($feedurl,$symb) = @_;
- my $crscontent = &mt('Question/Comment/Feedback about course content');
- my $crspolicy = &mt('Question/Comment/Feedback about course policy');
- my $contribdisc = &mt('Contribution to course discussion of resource');
- my $anoncontrib = &mt('Anonymous contribution to course discussion of resource');
- my $namevis = &mt('name only visible to course faculty');
- my $crstype;
- if ($env{'request.course.id'}) {
- $crstype = &Apache::loncommon::course_type();
- if ($crstype eq 'Community') {
- $crscontent = &mt('Question/Comment/Feedback about community content');
- $crspolicy = &mt('Question/Comment/Feedback about community policy');
- $contribdisc = &mt('Contribution to community discussion of resource');
- $anoncontrib = &mt('Anonymous contribution to community discussion of resource');
- $namevis = &mt('name only visible to community facilitators');
- }
- }
my $msgoptions='';
my $discussoptions='';
unless (($env{'form.replydisc'}) || ($env{'form.editdisc'})) {
@@ -2606,13 +2581,13 @@ sub screen_header {
if (&feedback_available(0,1)) {
$msgoptions.=
'';
}
if (&feedback_available(0,0,1)) {
$msgoptions.=
'';
}
}
@@ -2623,26 +2598,25 @@ sub screen_header {
$env{'request.course.id'}.
($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) {
$discussoptions=' '.
-
+ &mt('Contribution to course discussion of resource');
+ $discussoptions.=' '.
''.&mt('Change Screenname').'';
my $blockblog = &Apache::loncommon::blocking_status('blogs');
if (!$blockblog) {
- $discussoptions.= &add_blog_checkbox($crstype);
+ $discussoptions.= &add_blog_checkbox();
}
}
}
if ($msgoptions) {
$msgoptions='