version 1.368, 2012/12/20 16:22:59
|
version 1.370, 2012/12/28 04:12:32
|
Line 3343 sub update_roles {
|
Line 3343 sub update_roles {
|
$env{'form.ccuname'}, |
$env{'form.ccuname'}, |
$scope,$role,'','',$context); |
$scope,$role,'','',$context); |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
&mt('Revoking [_1] in [_2]', &Apache::lonnet::plaintext($role), '"'.&cid_to_cname($scope).'"<br />'), |
&mt('Revoking [_1] in [_2]', |
$result ne "ok")); |
&Apache::lonnet::plaintext($role), |
|
'"'.&cid_to_cname($scope).'"'), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = |
my $result = |
&Apache::lonuserutils::classlist_drop($scope, |
&Apache::lonuserutils::classlist_drop($scope, |
Line 3358 sub update_roles {
|
Line 3363 sub update_roles {
|
} |
} |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
# Revoke custom role |
# Revoke custom role |
|
my $result = &Apache::lonnet::revokecustomrole( |
|
$env{'form.ccdomain'},$env{'form.ccuname'},$1,$2,$3,$4,'','',$context); |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
&mt('Revoking custom role [_1] by [_2]:[_3] in [_4]',$4,$3,$2,'"'.&cid_to_cname($1).'"<br />'), |
&mt('Revoking custom role [_1] by [_2] in [_3]', |
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'},$env{'form.ccuname'},$1,$2,$3,$4,'','',$context) ne 'ok')); |
$4,$3.':'.$2,'"'.&cid_to_cname($1).'"'), |
|
$result ne 'ok').'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
} |
} |
Line 3377 sub update_roles {
|
Line 3387 sub update_roles {
|
$context); |
$context); |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
&mt('Deleting [_1] in [_2]', |
&mt('Deleting [_1] in [_2]', |
&Apache::lonnet::plaintext($role),'"'.&cid_to_cname($scope).'"<br />'),$result ne 'ok')); |
&Apache::lonnet::plaintext($role), |
|
'"'.&cid_to_cname($scope).'"'), |
|
$result ne 'ok').'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
|
|
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = |
my $result = |
&Apache::lonuserutils::classlist_drop($scope, |
&Apache::lonuserutils::classlist_drop($scope, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$now); |
$now); |
$r->print($result); |
$r->print(&Apache::lonhtmlcommon::confirm_success($result)); |
} |
} |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
push(@rolechanges,$role); |
push(@rolechanges,$role); |
Line 3393 sub update_roles {
|
Line 3408 sub update_roles {
|
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
# Delete custom role |
# Delete custom role |
$r->print(&confirm_success(&mt('Deleting custom role [_1] by [_2] in [_3]', |
my $result = |
$rolename,$rnam.':'.$rdom,'"'.&cid_to_cname($1).'"').'<br />')); |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
0,1,$context); |
0,1,$context); |
$r->print(&Apache::lonhtmlcommon::confirm_success(&mt('Deleting custom role [_1] by [_2] in [_3]', |
|
$rolename,$rnam.':'.$rdom,'"'.&cid_to_cname($1).'"'), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
|
|
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
Line 3419 sub update_roles {
|
Line 3439 sub update_roles {
|
if ($result eq 'refused' && $logmsg) { |
if ($result eq 'refused' && $logmsg) { |
$output = $logmsg; |
$output = $logmsg; |
} else { |
} else { |
$output = "Error: $result\n"; |
$output = &mt('Error: [_1]',$result)."\n"; |
} |
} |
} else { |
} else { |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Assigning [_1] in [_2] starting [_3]',&Apache::lonnet::plaintext($role), |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Assigning [_1] in [_2] starting [_3]',&Apache::lonnet::plaintext($role), |
Line 3431 sub update_roles {
|
Line 3451 sub update_roles {
|
$env{'form.ccuname'},$url,$role,0,$now,'','', |
$env{'form.ccuname'},$url,$role,0,$now,'','', |
$context); |
$context); |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling [_1] in [_2]', |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling [_1] in [_2]', |
&Apache::lonnet::plaintext($role),'"'.&cid_to_cname($url).'"').'<br />',$result ne "ok"); |
&Apache::lonnet::plaintext($role),'"'.&cid_to_cname($url).'"'),$result ne "ok").'<br />'; |
} |
if ($result ne "ok") { |
|
$output .= &mt('Error: [_1]',$result).'<br />'; |
|
} |
|
} |
$r->print($output); |
$r->print($output); |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
push(@rolechanges,$role); |
push(@rolechanges,$role); |
Line 3444 sub update_roles {
|
Line 3467 sub update_roles {
|
my $result = &Apache::lonnet::assigncustomrole( |
my $result = &Apache::lonnet::assigncustomrole( |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$url,$rdom,$rnam,$rolename,0,$now,undef,$context); |
$url,$rdom,$rnam,$rolename,0,$now,undef,$context); |
$r->print(&Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling custom role [_1] by [_2] in [_3]', |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$rolename,$rnam.':'.$rdom,'"'.&cid_to_cname($1).'"').'<br />'),$result ne "ok"); |
&mt('Re-enabling custom role [_1] by [_2] in [_3]', |
|
$rolename,$rnam.':'.$rdom,'"'.&cid_to_cname($1).'"'), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
} |
} |
Line 4826 sub print_main_menu {
|
Line 4854 sub print_main_menu {
|
); |
); |
} |
} |
} elsif ($context eq 'author') { |
} elsif ($context eq 'author') { |
|
push(@{ $menu[2]->{items} }, #Category: Administration |
{ |
{ |
linktext => 'Change Log', |
linktext => 'Change Log', |
icon => 'document-properties.png', |
icon => 'document-properties.png', |
Line 4834 sub print_main_menu {
|
Line 4863 sub print_main_menu {
|
permission => $permission->{'cusr'}, |
permission => $permission->{'cusr'}, |
linktitle => 'View change log.', |
linktitle => 'View change log.', |
}, |
}, |
|
); |
} |
} |
return Apache::lonhtmlcommon::generate_menu(@menu); |
return Apache::lonhtmlcommon::generate_menu(@menu); |
# { text => 'View Log-in History', |
# { text => 'View Log-in History', |