version 1.111, 2009/03/08 21:49:33
|
version 1.113, 2009/03/20 10:05:08
|
Line 391 my $image;
|
Line 391 my $image;
|
&& &Apache::lonnet::allowed('srm',$env{'request.course.id'}) |
&& &Apache::lonnet::allowed('srm',$env{'request.course.id'}) |
&& &in_course($cdom,$cnum)) { |
&& &in_course($cdom,$cnum)) { |
if ($target ne 'tex') { |
if ($target ne 'tex') { |
&Apache::lontemplate::print_start_template($r,&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').' '.&mt('Shared by course faculty and staff').&Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message"),'LC_ContentBoxSpecial'); |
&Apache::lontemplate::print_start_template($r,&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course'),'LC_ContentBoxSpecial'); |
|
$r->print('<div style="padding-left: 20px">'); |
|
$r->print('<p>'); |
|
$r->print(&mt('Shared by course faculty and staff').&Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message")); |
|
$r->print('</p>'); |
&Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom); |
&Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom); |
|
$r->print('</div>'); |
&Apache::lontemplate::print_end_template($r); |
&Apache::lontemplate::print_end_template($r); |
|
|
} else { |
} else { |
Line 461 sub print_portfiles_link {
|
Line 466 sub print_portfiles_link {
|
my $query_string = &build_query_string(); |
my $query_string = &build_query_string(); |
my $output; |
my $output; |
my %lt = &Apache::lonlocal::texthash( |
my %lt = &Apache::lonlocal::texthash( |
vpfi => 'Viewable portfolio files', |
'vpfi' => 'Viewable portfolio files', |
vgpf => 'Viewable group portfolio files', |
'vgpf' => 'Viewable group portfolio files', |
difl => 'Display file listing', |
'difl' => 'Display file listing', |
); |
); |
if ($filecounts->{'both'} > 0) { |
if ($filecounts->{'both'} > 0) { |
$output = '<div class="LC_ContentBoxSpecial"><h4 class="LC_hcell">'; |
$output = '<div class="LC_ContentBoxSpecial"><h4 class="LC_hcell">'; |
$output .= ($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</h4>'; |
$output .= ($is_course?$lt{'vgpf'}:$lt{'vpfi'}).'</h4>'; |
Line 570 sub display_portfolio_header {
|
Line 575 sub display_portfolio_header {
|
sub display_portfolio_files { |
sub display_portfolio_files { |
my ($r,$is_course) = @_; |
my ($r,$is_course) = @_; |
my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course); |
my ($cdom,$cnum,$name) = &aboutme_info($r,$is_course); |
my %lt = ( withoutpass => 'passphrase not required', |
my %lt = &Apache::lonlocal::texthash( |
withpass => 'passphrase protected', |
'withoutpass' => 'passphrase not required', |
both => 'all access types ',); |
'withpass' => 'passphrase protected', |
%lt = &Apache::lonlocal::texthash(%lt); |
'both' => 'all access types ', |
|
); |
|
|
my $portaccess = 'withoutpass'; |
my $portaccess = 'withoutpass'; |
if (exists($env{'form.portaccess'})) { |
if (exists($env{'form.portaccess'})) { |