--- loncom/interface/loncreateuser.pm 2016/11/11 02:13:51 1.406.2.6
+++ loncom/interface/loncreateuser.pm 2016/10/04 21:02:16 1.414
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Create a user
#
-# $Id: loncreateuser.pm,v 1.406.2.6 2016/11/11 02:13:51 raeburn Exp $
+# $Id: loncreateuser.pm,v 1.414 2016/10/04 21:02:16 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -160,8 +160,7 @@ END_SCRIPT
'
'.$lt{'usrt'}.' '."\n".
&Apache::loncommon::start_data_table();
- if ((&Apache::lonnet::allowed('mut',$ccdomain)) ||
- (&Apache::lonnet::allowed('udp',$ccdomain))) {
+ if (&Apache::lonnet::allowed('mut',$ccdomain)) {
$output .= &build_tools_display($ccuname,$ccdomain,'tools');
}
@@ -252,13 +251,15 @@ sub build_tools_display {
'unofficial' => 'Can request creation of unofficial courses',
'community' => 'Can request creation of communities',
'textbook' => 'Can request creation of textbook courses',
+ 'placement' => 'Can request creation of placement tests',
'requestauthor' => 'Can request author space',
);
if ($context eq 'requestcourses') {
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
'requestcourses.official','requestcourses.unofficial',
- 'requestcourses.community','requestcourses.textbook');
- @usertools = ('official','unofficial','community','textbook');
+ 'requestcourses.community','requestcourses.textbook',
+ 'requestcourses.placement');
+ @usertools = ('official','unofficial','community','textbook','placement');
@options =('norequest','approval','autolimit','validate');
%validations = &Apache::lonnet::auto_courserequest_checks($ccdomain);
%reqtitles = &courserequest_titles();
@@ -266,7 +267,7 @@ sub build_tools_display {
$colspan = ' colspan="2"';
%domconfig =
&Apache::lonnet::get_dom('configuration',['requestcourses'],$ccdomain);
- $isadv = &Apache::lonnet::is_advanced_user($ccdomain,$ccuname);
+ $isadv = &Apache::lonnet::is_advanced_user($ccuname,$ccdomain);
} elsif ($context eq 'requestauthor') {
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
'requestauthor');
@@ -427,9 +428,7 @@ sub build_tools_display {
}
$output .= ' '.$custom_access.(' 'x4).
$lt{'avai'}.': '.$currdisp.' '."\n".
- &Apache::loncommon::end_data_table_row()."\n";
- unless (&Apache::lonnet::allowed('udp',$ccdomain)) {
- $output .=
+ &Apache::loncommon::end_data_table_row()."\n".
&Apache::loncommon::start_data_table_row()."\n".
' '.
$lt{'chse'}.': '.
@@ -438,7 +437,6 @@ sub build_tools_display {
' '.$lt{'uscu'}.' '.$custradio.' '.
&Apache::loncommon::end_data_table_row()."\n";
- }
}
return $output;
}
@@ -451,12 +449,14 @@ sub coursereq_externaluser {
'unofficial' => 'Can request creation of unofficial courses',
'community' => 'Can request creation of communities',
'textbook' => 'Can request creation of textbook courses',
+ 'placement' => 'Can request creation of placement tests',
);
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
'reqcrsotherdom.official','reqcrsotherdom.unofficial',
- 'reqcrsotherdom.community','reqcrsotherdom.textbook');
- @usertools = ('official','unofficial','community','textbook');
+ 'reqcrsotherdom.community','reqcrsotherdom.textbook',
+ 'reqcrsotherdom.placement');
+ @usertools = ('official','unofficial','community','textbook','placement');
@options = ('approval','validate','autolimit');
%validations = &Apache::lonnet::auto_courserequest_checks($cdom);
my $optregex = join('|',@options);
@@ -533,23 +533,17 @@ sub domainrole_req {
sub domadhocroles {
my ($ccuname,$ccdomain) = @_;
- my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'});
+ my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'});
my %existing=&Apache::lonnet::dump('roles',$env{'request.role.domain'},
$confname,'rolesdef_');
- my ($output,$canmodify);
- if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) {
- $canmodify = 1;
- }
+ my $output;
if (keys(%existing) > 0) {
my @current;
- my $curradhoc = 'adhocroles.'.$env{'request.role.domain'};
+ my $curradhoc = 'adhocroles.'.$env{'request.role.domain'};
my %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,$curradhoc);
if ($userenv{$curradhoc}) {
@current = split(/,/,$userenv{$curradhoc});
}
- if (!$canmodify && !@current) {
- return;
- }
my %customroles;
foreach my $key (keys(%existing)) {
if ($key=~/^rolesdef\_(\w+)$/) {
@@ -563,28 +557,22 @@ sub domadhocroles {
&mt('Ad Hoc Course Roles Selectable via Helpdesk Role').
''."\n".
&Apache::loncommon::start_data_table().
- &Apache::loncommon::start_data_table_header_row();
- if ($canmodify) {
- $output .= ''.&mt('Action').' ';
- }
- $output .= ''.&mt('Role').' '.
- ''.&mt('Privileges in Course').' '.
- &Apache::loncommon::end_data_table_header_row();
+ &Apache::loncommon::start_data_table_header_row().
+ ' '.&mt('Action').' '.&mt('Role').' '.
+ ''.&mt('Privileges in Course').' '.
+ &Apache::loncommon::end_data_table_header_row();
foreach my $key (sort(keys(%customroles))) {
- next if ((!$canmodify) && (!grep(/^\Q$key\E$/,@current)));
$output .= &Apache::loncommon::start_data_table_row();
- if ($canmodify) {
- if (grep(/^\Q$key\E$/,@current)) {
- $output .= ' '.
- ' '.
- &mt('Delete').' '.
- ' ';
- } else {
- $output .= ''.
- ' '.
- &mt('Add').' '.
- ' ';
- }
+ if (grep(/^\Q$key\E$/,@current)) {
+ $output .= ''.
+ ' '.
+ &mt('Delete').' '.
+ ' ';
+ } else {
+ $output .= ''.
+ ' '.
+ &mt('Add').' '.
+ ' ';
}
$output .= ''.$key.' ';
foreach my $level ('course','domain','system') {
@@ -595,7 +583,7 @@ sub domadhocroles {
}
my @privs = split(/:/,$customroles{$key}{$level});
foreach my $item (@privs) {
- next if ($item eq '');
+ next if ($item eq '');
my ($priv,$cond) = split(/\&/,$item);
$output .= &Apache::lonnet::plaintext($priv,'Course').$suffix.' ';
}
@@ -615,6 +603,7 @@ sub courserequest_titles {
unofficial => 'Unofficial',
community => 'Communities',
textbook => 'Textbook',
+ placement => 'Placement Tests',
norequest => 'Not allowed',
approval => 'Approval by Dom. Coord.',
validate => 'With validation',
@@ -748,8 +737,6 @@ sub print_username_entry_form {
$helpitem = 'Course_Editing_Custom_Roles';
} elsif ($env{'form.action'} eq 'singlestudent') {
$helpitem = 'Course_Add_Student';
- } elsif ($env{'form.action'} eq 'accesslogs') {
- $helpitem = 'Domain_User_Access_Logs';
}
my %breadcrumb_text = &singleuser_breadcrumb($crstype);
if ($env{'form.action'} eq 'custom') {
@@ -779,7 +766,6 @@ sub print_username_entry_form {
'srst' => 'Search for a user and enroll as a student',
'srme' => 'Search for a user and enroll as a member',
'srad' => 'Search for a user and modify/add user information or roles',
- 'srva' => 'Search for a user and view access log information',
'usr' => "Username",
'dom' => "Domain",
'ecrp' => "Define or Edit Custom Role",
@@ -832,17 +818,12 @@ sub print_username_entry_form {
} else {
$actiontext = $lt{'srst'};
}
- } elsif ($env{'form.action'} eq 'accesslogs') {
- $actiontext = $lt{'srva'};
}
$r->print("$actiontext ");
if ($env{'form.origform'} ne 'crtusername') {
- if ($response) {
- $r->print("\n$response
".
- ' ');
- }
+ $r->print("\n".$response);
}
- $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype,1));
+ $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype));
}
}
@@ -885,7 +866,7 @@ END
}
sub entry_form {
- my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype,$fixeddom) = @_;
+ my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_;
my ($usertype,$inexact);
if (ref($srch) eq 'HASH') {
if (($srch->{'srchin'} eq 'dom') &&
@@ -905,12 +886,10 @@ sub entry_form {
&Apache::lonuserutils::can_create_user($dom,$context,$usertype);
my ($userpicker,$cansearch) =
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser,
- 'document.crtuser',$cancreate,$usertype,$context,$fixeddom);
+ 'document.crtuser',$cancreate,$usertype);
my $srchbutton = &mt('Search');
if ($env{'form.action'} eq 'singlestudent') {
$srchbutton = &mt('Search and Enroll');
- } elsif ($env{'form.action'} eq 'accesslogs') {
- $srchbutton = &mt('Search');
} elsif ($cancreate && $responsemsg ne '' && $inexact) {
$srchbutton = &mt('Search or Add New User');
}
@@ -927,7 +906,7 @@ ENDBLOCK
} else {
$output = ''.$userpicker.'
';
}
- if (($env{'form.phase'} eq '') && ($env{'form.action'} ne 'accesslogs')) {
+ if ($env{'form.phase'} eq '') {
my $defdom=$env{'request.role.domain'};
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain');
my %lt=&Apache::lonlocal::texthash(
@@ -1043,11 +1022,9 @@ ENDSCRIPT
'usrch' => "User Search to add/modify roles",
'stusrch' => "User Search to enroll student",
'memsrch' => "User Search to enroll member",
- 'srcva' => "Search for a user and view access log information",
'usel' => "Select a user to add/modify roles",
'stusel' => "Select a user to enroll as a student",
'memsel' => "Select a user to enroll as a member",
- 'vacsel' => "Select a user to view access log",
'username' => "username",
'domain' => "domain",
'lastname' => "last name",
@@ -1096,10 +1073,6 @@ ENDSCRIPT
$r->print($lt{'stusel'});
}
$r->print('');
- } elsif ($env{'form.action'} eq 'accesslogs') {
- $r->print("$lt{'srcva'} ");
- $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,'accesslogs',undef,undef,1));
- $r->print(''.$lt{'vacsel'}.' ');
}
}
$r->print(' ';
+ if ($allowed && !$active) {
+ $row.= ' ';
+ } else {
+ $row.=' ';
+ }
+ $row.=' ';
+ if ($delallowed) {
+ $row.= ' ';
+ } else {
+ $row.=' ';
}
my $plaintext='';
if (!$croletitle) {
@@ -1981,30 +1903,17 @@ sub display_existing_roles {
' ',
$croleuname.':'.$croleudom);
}
- $row.= ' '.$plaintext.' '.
- ''.$area.' '.
- ''.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time)
- : ' ' ).' '.
- ''.($role_end_time ?&Apache::lonlocal::locallocaltime($role_end_time)
- : ' ' ).' ';
+ $row.= ''.$plaintext.
+ ' '.$area.
+ ' '.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time)
+ : ' ' ).
+ ' '.($role_end_time ?&Apache::lonlocal::locallocaltime($role_end_time)
+ : ' ' )
+ ." ";
$sortrole{$sortkey}=$envkey;
$roletext{$envkey}=$row;
$roleclass{$envkey}=$class;
- if ($allowed) {
- $rolepriv{$envkey}='edit';
- } else {
- if ($context eq 'domain') {
- if (&Apache::lonnet::allowed('vur',$ccdomain)) {
- $rolepriv{$envkey}='view';
- }
- } elsif ($context eq 'course') {
- if ((&Apache::lonnet::allowed('vcl',$env{'request.course.id'})) ||
- ($env{'request.course.sec'} && ($env{'request.course.sec'} eq $csec) &&
- &Apache::lonnet::allowed('vcl',$env{'request.course.id'}.'/'.$env{'request.course.sec'}))) {
- $rolepriv{$envkey}='view';
- }
- }
- }
+ $rolepriv{$envkey}=$allowed;
} # end of foreach (table building loop)
my $rolesdisplay = 0;
@@ -2037,28 +1946,15 @@ sub display_existing_roles {
} elsif ($env{'request.role'} =~ /^au\./) {
$contextrole = &mt('Existing Co-Author Roles in your Authoring Space');
} else {
- if ($showall) {
- $contextrole = &mt('Existing Roles in this Domain');
- } elsif ($showactive) {
- $contextrole = &mt('Unexpired Roles in this Domain');
- } elsif ($showexpired) {
- $contextrole = &mt('Expired or Revoked Roles in this Domain');
- }
+ $contextrole = &mt('Existing Roles in this Domain');
}
$r->print(''.
'
'.$contextrole.' '.
&Apache::loncommon::start_data_table("LC_createuser").
-&Apache::loncommon::start_data_table_header_row());
- if ($showall) {
- $r->print(
-''.$lt{'rev'}.' '.$lt{'ren'}.' '.$lt{'del'}.' '
- );
- } elsif ($showexpired) {
- $r->print(''.$lt{'rev'}.' ');
- }
- $r->print(
-''.$lt{'rol'}.' '.$lt{'ext'}.' '.
-''.$lt{'sta'}.' '.$lt{'end'}.' '.
+&Apache::loncommon::start_data_table_header_row().
+''.$lt{'rev'}.' '.$lt{'ren'}.' '.$lt{'del'}.
+' '.$lt{'rol'}.' '.$lt{'ext'}.
+' '.$lt{'sta'}.' '.$lt{'end'}.' '.
&Apache::loncommon::end_data_table_header_row());
foreach my $type ('Authoring Space','Course','Community','Domain','System','Unknown') {
if ($output{$type}) {
@@ -2196,16 +2092,16 @@ sub user_authentication {
my ($ccuname,$ccdomain,$formname) = @_;
my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain);
my $outcome;
- my %lt=&Apache::lonlocal::texthash(
- 'err' => "ERROR",
- 'uuas' => "This user has an unrecognized authentication scheme",
- 'adcs' => "Please alert a domain coordinator of this situation",
- 'sldb' => "Please specify login data below",
- 'ld' => "Login Data"
- );
# Check for a bad authentication type
if ($currentauth !~ /^(krb4|krb5|unix|internal|localauth):/) {
# bad authentication scheme
+ my %lt=&Apache::lonlocal::texthash(
+ 'err' => "ERROR",
+ 'uuas' => "This user has an unrecognized authentication scheme",
+ 'adcs' => "Please alert a domain coordinator of this situation",
+ 'sldb' => "Please specify login data below",
+ 'ld' => "Login Data"
+ );
if (&Apache::lonnet::allowed('mau',$ccdomain)) {
&initialize_authen_forms($ccdomain,$formname);
@@ -2236,6 +2132,11 @@ ENDBADAUTH
&modify_login_block($ccdomain,$currentauth);
if (&Apache::lonnet::allowed('mau',$ccdomain)) {
# Current user has login modification privileges
+ my %lt=&Apache::lonlocal::texthash (
+ 'ld' => "Login Data",
+ 'ccld' => "Change Current Login Data",
+ 'enld' => "Enter New Login Data"
+ );
$outcome =
'
-ENDSCRIPT
-
- # print page header
- $r->print(&header($jscript,$args));
-
# set defaults
my $now = time();
my $defstart = $now - (7*24*3600); #7 days ago
@@ -6656,9 +6439,7 @@ ENDSCRIPT
my ($minshown,$maxshown);
$minshown = 1;
my $count = 0;
- if ($curr{'show'} =~ /\D/) {
- $curr{'page'} = 1;
- } else {
+ if ($curr{'show'} ne &mt('all')) {
$maxshown = $curr{'page'} * $curr{'show'};
if ($curr{'page'} > 1) {
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
@@ -6670,6 +6451,8 @@ ENDSCRIPT
&role_display_filter($context,$formname,$domain,$username,\%curr,
$version,$crstype));
+ # Create navigation
+ my ($nav_script,$nav_links) = &userlogdisplay_nav($formname,\%curr,$more_records);
my $showntableheader = 0;
# Table Header
@@ -6694,7 +6477,7 @@ ENDSCRIPT
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) {
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) ||
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'}));
- if ($curr{'show'} !~ /\D/) {
+ if ($curr{'show'} ne &mt('all')) {
if ($count >= $curr{'page'} * $curr{'show'}) {
$more_records = 1;
last;
@@ -6710,13 +6493,12 @@ ENDSCRIPT
next if ($roleslog{$id}{'logentry'}{'context'} ne $curr{'chgcontext'});
}
}
- if (($context eq 'course') && ($viewablesec ne '')) {
- next if ($roleslog{$id}{'logentry'}{'section'} ne $viewablesec);
- }
$count ++;
next if ($count < $minshown);
unless ($showntableheader) {
- $r->print(&Apache::loncommon::start_data_table()
+ $r->print($nav_script
+ .$nav_links
+ .&Apache::loncommon::start_data_table()
.$tableheader);
$r->rflush();
$showntableheader = 1;
@@ -6777,8 +6559,8 @@ ENDSCRIPT
}
if ($showntableheader) { # Table footer, if content displayed above
- $r->print(&Apache::loncommon::end_data_table().
- &userlogdisplay_navlinks(\%curr,$more_records));
+ $r->print(&Apache::loncommon::end_data_table()
+ .$nav_links);
} else { # No content displayed above
$r->print(''
.&mt('There are no records to display.')
@@ -6794,331 +6576,15 @@ ENDSCRIPT
return;
}
-sub print_useraccesslogs_display {
- my ($r,$uname,$udom,$permission,$brcrum) = @_;
- my $formname = 'accesslog';
- my $form = 'document.accesslog';
-
-# set breadcrumbs
- my %breadcrumb_text = &singleuser_breadcrumb();
- push (@{$brcrum},
- {href => "javascript:backPage($form)",
- text => $breadcrumb_text{'search'}});
- my (@prevphases,$prevphasestr);
- if ($env{'form.prevphases'}) {
- @prevphases = split(/,/,$env{'form.prevphases'});
- $prevphasestr = $env{'form.prevphases'};
- }
- if (($env{'form.phase'} eq 'userpicked') || (grep(/^userpicked$/,@prevphases))) {
- push(@{$brcrum},
- {href => "javascript:backPage($form,'get_user_info','select')",
- text => $breadcrumb_text{'userpicked'}});
- if ($env{'form.phase'} eq 'userpicked') {
- $prevphasestr = 'userpicked';
- }
- }
- push(@{$brcrum},
- {href => '/adm/createuser?action=accesslogs',
- text => 'User access logs',
- help => 'User_Access_Logs'});
- my $bread_crumbs_component = 'User Access Logs';
- my $args = { bread_crumbs => $brcrum,
- bread_crumbs_component => 'User Management'};
-
-# set javascript
- my ($jsback,$elements) = &crumb_utilities();
- my $jsnav = &userlogdisplay_js($formname);
-
- my $jscript = (<
//
-
-
-ENDSCRIPT
-
-# print page header
- $r->print(&header($jscript,$args));
-
-# early out unless log data can be displayed.
- unless ($permission->{'activity'}) {
- $r->print(''
- .&mt('You do not have rights to display user access logs.')
- .'
'
- .&earlyout_accesslog_form($formname,$prevphasestr,$udom));
- return;
- }
-
- unless ($udom eq $env{'request.role.domain'}) {
- $r->print(''
- .&mt("User's domain must match role's domain")
- .'
'
- .&earlyout_accesslog_form($formname,$prevphasestr,$udom));
- return;
- }
-
- if (($uname eq '') || ($udom eq '')) {
- $r->print(''
- .&mt('Invalid username or domain')
- .'
'
- .&earlyout_accesslog_form($formname,$prevphasestr,$udom));
- return;
- }
-
-# set defaults
- my $now = time();
- my $defstart = $now - (7*24*3600);
- my %defaults = (
- page => '1',
- show => '10',
- activity => 'any',
- accesslog_start_date => $defstart,
- accesslog_end_date => $now,
- );
- my $more_records = 0;
-
-# set current
- my %curr;
- foreach my $item ('show','page','activity') {
- $curr{$item} = $env{'form.'.$item};
- }
- my ($startdate,$enddate) =
- &Apache::lonuserutils::get_dates_from_form('accesslog_start_date','accesslog_end_date');
- $curr{'accesslog_start_date'} = $startdate;
- $curr{'accesslog_end_date'} = $enddate;
- foreach my $key (keys(%defaults)) {
- if ($curr{$key} eq '') {
- $curr{$key} = $defaults{$key};
- }
- }
- my ($minshown,$maxshown);
- $minshown = 1;
- my $count = 0;
- if ($curr{'show'} =~ /\D/) {
- $curr{'page'} = 1;
- } else {
- $maxshown = $curr{'page'} * $curr{'show'};
- if ($curr{'page'} > 1) {
- $minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
- }
- }
-
-# form header
- $r->print('');
- return;
-}
-
-sub earlyout_accesslog_form {
- my ($formname,$prevphasestr,$udom) = @_;
- my $srchterm = &HTML::Entities::encode($env{'form.srchterm'},'<>"&');
- return <<"END";
-
-END
-}
-
-sub activity_display_filter {
- my ($formname,$curr) = @_;
- my $nolink = 1;
- my $output = ''.
- ''.&mt('Actions/page:').' '.
- &Apache::lonmeta::selectbox('show',$curr->{'show'},undef,
- (&mt('all'),5,10,20,50,100,1000,10000)).
- ' ';
- my $startform =
- &Apache::lonhtmlcommon::date_setter($formname,'accesslog_start_date',
- $curr->{'accesslog_start_date'},undef,
- undef,undef,undef,undef,undef,undef,$nolink);
- my $endform =
- &Apache::lonhtmlcommon::date_setter($formname,'accesslog_end_date',
- $curr->{'accesslog_end_date'},undef,
- undef,undef,undef,undef,undef,undef,$nolink);
- my %lt = &Apache::lonlocal::texthash (
- activity => 'Activity',
- Role => 'Role selection',
- log => 'Log-in or Logout',
- );
- $output .= ''.&mt('Window during which actions occurred:').' '.
- ''.&mt('After:').
- ' '.$startform.' '.
- ''.&mt('Before:').' '.
- ''.$endform.'
'.
- ' '.
- ' '.
- ''.&mt('Activities').' '.
- '{'activity'} eq 'any') {
- $output .= ' selected="selected"';
- }
- $output .= '>'.&mt('Any').' '."\n";
- foreach my $activity ('Role','log') {
- my $selstr = '';
- if ($activity eq $curr->{'activity'}) {
- $selstr = ' selected="selected"';
- }
- $output .= ''.$lt{$activity}.' ';
- }
- $output .= ' '.
- '
';
- # Update Display button
- $output .= ''
- .' '
- .'
';
- return $output;
-}
-
-sub userlogdisplay_js {
- my ($formname) = @_;
- return <<"ENDSCRIPT";
-
function chgPage(caller) {
if (caller == 'previous') {
document.$formname.page.value --;
@@ -7129,30 +6595,28 @@ function chgPage(caller) {
document.$formname.submit();
return;
}
+// ]]>
+
ENDSCRIPT
-}
-
-sub userlogdisplay_navlinks {
- my ($curr,$more_records) = @_;
- return unless(ref($curr) eq 'HASH');
- # Navigation Buttons
- my $nav_links = '';
- if (($curr->{'page'} > 1) || ($more_records)) {
- if (($curr->{'page'} > 1) && ($curr->{'show'} !~ /\D/)) {
- $nav_links .= ' ';
- }
- if ($more_records) {
- $nav_links .= ' ';
+ # Navigation Buttons
+ $nav_links = '
';
+ if (($curr->{'page'} > 1) || ($more_records)) {
+ if ($curr->{'page'} > 1) {
+ $nav_links .= ' ';
+ }
+ if ($more_records) {
+ $nav_links .= ' ';
+ }
}
+ $nav_links .= '
';
}
- $nav_links .= '
';
- return $nav_links;
+ return ($nav_script,$nav_links);
}
sub role_display_filter {
@@ -7342,10 +6806,10 @@ sub user_search_result {
if ($domd_chk eq 'ok') {
$response .= &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.');
}
- $response .= ' ';
+ $response .= ' ';
}
} else {
- unless (($context eq 'requestcrs') && ($srch->{'srchtype'} eq 'exact')) {
+ unless (($context eq 'requestcrs') && ($srch->{'srchtype'} eq 'exact')) {
my $domd_chk = &domdirectorysrch_check($srch);
if ($domd_chk ne 'ok') {
my $instd_chk = &instdirectorysrch_check($srch);
@@ -7353,7 +6817,7 @@ sub user_search_result {
if ($instd_chk eq 'ok') {
$response .= &mt('You may want to search in the institutional directory instead of the LON-CAPA domain.');
}
- $response .= ' ';
+ $response .= ' ';
}
}
}
@@ -7384,9 +6848,6 @@ sub user_search_result {
&build_search_response($context,$srch,%srch_results);
} else {
$currstate = 'modify';
- if ($env{'form.action'} eq 'accesslogs') {
- $currstate = 'activity';
- }
my $uname = $srch->{'srchterm'};
my $udom = $srch->{'srchdomain'};
$srch_results{$uname.':'.$udom} =
@@ -7453,7 +6914,7 @@ sub user_search_result {
&mt('Institutional directory search is not available in domain: [_1]',$showdom).
' '.
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').
- ' ';
+ ' ';
}
}
} else {
@@ -7526,7 +6987,7 @@ sub user_search_result {
&mt('Institutional directory search is not available in domain: [_1]',$showdom).
' '.
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').
- ' ';
+ ' ';
}
}
}
@@ -7674,11 +7135,7 @@ sub build_search_response {
$currstate = 'select';
} else {
if (keys(%srch_results) == 1) {
- if ($env{'form.action'} eq 'accesslogs') {
- $currstate = 'activity';
- } else {
- $currstate = 'modify';
- }
+ $currstate = 'modify';
$response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'});
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') {
$response .= ': '.&display_domain_info($srch->{'srchdomain'});
@@ -7723,8 +7180,7 @@ sub build_search_response {
$createdom = $env{'form.coursedom'};
}
}
- unless (($env{'form.action'} eq 'accesslogs') || (($srch->{'srchby'} eq 'uname') && ($srch->{'srchin'} eq 'dom') &&
- ($srch->{'srchtype'} eq 'exact') && ($srch->{'srchdomain'} eq $createdom))) {
+ if (!($srch->{'srchby'} eq 'uname' && $srch->{'srchin'} eq 'dom' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchdomain'} eq $createdom)) {
my $cancreate =
&Apache::lonuserutils::can_create_user($createdom,$context);
my $targetdom = ''.$createdom.' ';
@@ -7759,7 +7215,7 @@ sub build_search_response {
.&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.'
,' '
,' ')
- .' ';
+ .' ';
}
}
}