version 1.863, 2009/07/21 14:36:07
|
version 1.866, 2009/07/26 20:39:46
|
Line 483 ENDAUTHORBRW
|
Line 483 ENDAUTHORBRW
|
|
|
sub coursebrowser_javascript { |
sub coursebrowser_javascript { |
my ($domainfilter,$sec_element,$formname)=@_; |
my ($domainfilter,$sec_element,$formname)=@_; |
my $crs_or_grp_alert = &mt('Please select the type of LON-CAPA entity - Course or Group - for which you wish to add/modify a user role'); |
my $crs_or_grp_alert = &mt('Please select the type of LON-CAPA entity - Course or Community - for which you wish to add/modify a user role'); |
my $output = ' |
my $output = ' |
<script type="text/javascript" language="JavaScript"> |
<script type="text/javascript" language="JavaScript"> |
// <![CDATA[ |
// <![CDATA[ |
Line 532 sub coursebrowser_javascript {
|
Line 532 sub coursebrowser_javascript {
|
if (multflag !=null && multflag != '') { |
if (multflag !=null && multflag != '') { |
url += '&multiple='+multflag; |
url += '&multiple='+multflag; |
} |
} |
if (crstype == 'Course/Group') { |
if (crstype == 'Course/Community') { |
if (formname == 'cu') { |
if (formname == 'cu') { |
crstype = document.cu.crstype.options[document.cu.crstype.selectedIndex].value; |
crstype = document.cu.crstype.options[document.cu.crstype.selectedIndex].value; |
if (crstype == "") { |
if (crstype == "") { |
Line 3766 sub blockcheck {
|
Line 3766 sub blockcheck {
|
($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E})); |
($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E})); |
next if ($no_userblock); |
next if ($no_userblock); |
|
|
# Retrieve blocking times and identity of blocker for course |
# Retrieve blocking times and identity of locker for course |
# of specified user, unless user has 'evb' privilege. |
# of specified user, unless user has 'evb' privilege. |
|
|
my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum); |
my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum); |
Line 3916 sub blocking_status_print {
|
Line 3916 sub blocking_status_print {
|
my $category; |
my $category; |
if ($activity eq 'boards') { |
if ($activity eq 'boards') { |
$category = 'Discussion posts in this course'; |
$category = 'Discussion posts in this course'; |
|
} elsif ($activity eq 'chat') { |
|
$category = 'Chat'; |
|
} elsif ($activity eq 'msgdisplay') { |
|
$category = 'This message'; |
} elsif ($activity eq 'blogs') { |
} elsif ($activity eq 'blogs') { |
$category = 'Blogs'; |
$category = 'Blogs'; |
} elsif ($activity eq 'port') { |
} elsif ($activity eq 'port') { |
if (defined($uname) && defined($udom)) { |
if (defined($uname) && defined($udom)) { |
if ($uname eq $env{'user.name'} && |
if ($uname eq $env{'user.name'} && |
Line 3947 sub blocking_status_print {
|
Line 3951 sub blocking_status_print {
|
} |
} |
} elsif ($activity eq 'groups') { |
} elsif ($activity eq 'groups') { |
$category = 'Groups in this course'; |
$category = 'Groups in this course'; |
|
} else { |
|
$category = 'Communication'; |
} |
} |
my $showstart = &Apache::lonlocal::locallocaltime($startblock); |
my $showstart = &Apache::lonlocal::locallocaltime($startblock); |
my $showend = &Apache::lonlocal::locallocaltime($endblock); |
my $showend = &Apache::lonlocal::locallocaltime($endblock); |
Line 10211 sub group_term {
|
Line 10217 sub group_term {
|
my $crstype = &course_type(); |
my $crstype = &course_type(); |
my %names = ( |
my %names = ( |
'Course' => 'group', |
'Course' => 'group', |
'Group' => 'team', |
'Community' => 'group', |
); |
); |
return $names{$crstype}; |
return $names{$crstype}; |
} |
} |
Line 10404 sub init_user_environment {
|
Line 10410 sub init_user_environment {
|
&Apache::lonnet::usertools_access($username,$domain,$tool,'reload'); |
&Apache::lonnet::usertools_access($username,$domain,$tool,'reload'); |
} |
} |
|
|
foreach my $crstype ('official','unofficial') { |
foreach my $crstype ('official','unofficial','community') { |
$userenv{'canrequest.'.$crstype} = |
$userenv{'canrequest.'.$crstype} = |
&Apache::lonnet::usertools_access($username,$domain,$crstype, |
&Apache::lonnet::usertools_access($username,$domain,$crstype, |
'reload','requestcourses'); |
'reload','requestcourses'); |