--- loncom/interface/loncreateuser.pm 2016/10/22 17:57:54 1.406.2.5 +++ loncom/interface/loncreateuser.pm 2016/10/10 02:53:02 1.415 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Create a user # -# $Id: loncreateuser.pm,v 1.406.2.5 2016/10/22 17:57:54 raeburn Exp $ +# $Id: loncreateuser.pm,v 1.415 2016/10/10 02:53:02 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -251,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(); @@ -447,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); @@ -529,13 +533,13 @@ 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; 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}); @@ -556,7 +560,7 @@ sub domadhocroles { &Apache::loncommon::start_data_table_header_row(). ''.&mt('Action').''.&mt('Role').''. ''.&mt('Privileges in Course').''. - &Apache::loncommon::end_data_table_header_row(); + &Apache::loncommon::end_data_table_header_row(); foreach my $key (sort(keys(%customroles))) { $output .= &Apache::loncommon::start_data_table_row(); if (grep(/^\Q$key\E$/,@current)) { @@ -579,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.'
'; } @@ -599,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', @@ -732,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') { @@ -763,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", @@ -816,8 +818,6 @@ 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') { @@ -826,7 +826,7 @@ sub print_username_entry_form { '
'); } } - $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype,1)); + $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype)); } } @@ -869,7 +869,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') && @@ -889,12 +889,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'); } @@ -911,7 +909,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( @@ -1027,11 +1025,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", @@ -1080,10 +1076,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('
'. @@ -1619,10 +1611,6 @@ sub singleuser_breadcrumb { } $breadcrumb_text{'userpicked'} = 'Select a user', $breadcrumb_text{'modify'} = 'Set section/dates', - } elsif ($env{'form.action'} eq 'accesslogs') { - $breadcrumb_text{'search'} = 'View access logs for a user'; - $breadcrumb_text{'userpicked'} = 'Select a user', - $breadcrumb_text{'activity'} = 'Activity', } else { $breadcrumb_text{'search'} = 'Create/modify a user'; $breadcrumb_text{'userpicked'} = 'Select a user', @@ -2679,7 +2667,7 @@ sub update_user_data { my (%alerts,%rulematch,%inst_results,%curr_rules); my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); my @usertools = ('aboutme','blog','webdav','portfolio'); - my @requestcourses = ('official','unofficial','community','textbook'); + my @requestcourses = ('official','unofficial','community','textbook','placement'); my @requestauthor = ('requestauthor'); my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($env{'form.ccdomain'}); @@ -2793,7 +2781,7 @@ sub update_user_data { my @adds = &Apache::loncommon::get_env_multiple('form.adhocroleadd'); if (&adhocrole_changes(\%changeHash)) { $changed{'adhocroles.'.$env{'request.role.domain'}} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; - } + } } } if ($canmodify_status{'inststatus'}) { @@ -2858,7 +2846,8 @@ sub update_user_data { 'requestcourses.community','requestcourses.textbook', 'reqcrsotherdom.official','reqcrsotherdom.unofficial', 'reqcrsotherdom.community','reqcrsotherdom.textbook', - 'requestauthor','adhocroles.'.$env{'request.role.domain'}], + 'reqcrsotherdom.placement','requestauthor', + 'adhocroles.'.$env{'request.role.domain'}], $env{'form.ccdomain'},$env{'form.ccuname'}); my ($tmp) = keys(%userenv); if ($tmp =~ /^(con_lost|error)/i) { @@ -3138,7 +3127,7 @@ sub update_user_data { if (&adhocrole_changes(\%changeHash,\%userenv)) { $changed{'adhocroles'} = 1; $oldsettings{'adhocroles'} = $userenv{'adhocroles.'.$env{'request.role.domain'}}; - $newsettings{'adhocroles'} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; + $newsettings{'adhocroles'} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; } } foreach my $item (@userinfo) { @@ -3161,8 +3150,9 @@ sub update_user_data { ($env{'user.domain'} eq $env{'form.ccdomain'})) { my %newenvhash; foreach my $key (keys(%changed)) { - if (($key eq 'official') || ($key eq 'unofficial') - || ($key eq 'community') || ($key eq 'textbook')) { + if (($key eq 'official') || ($key eq 'unofficial') || + ($key eq 'community') || ($key eq 'textbook') || + ($key eq 'placement')) { $newenvhash{'environment.requestcourses.'.$key} = $changeHash{'requestcourses.'.$key}; if ($changeHash{'requestcourses.'.$key}) { @@ -3231,7 +3221,7 @@ sub update_user_data { \%newsettingstext); if ($env{'form.cid'} ne $userenv{'id'}) { &Apache::lonnet::idput($env{'form.ccdomain'}, - {$env{'form.ccuname'} => $env{'form.cid'}}); + {$env{'form.ccuname'} => $env{'form.cid'}},$uhome,'ids'); if (($recurseid) && (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) { my $idresult = @@ -3374,6 +3364,7 @@ sub display_userinfo { 'unofficial' => 'Can Request Unofficial Courses', 'community' => 'Can Request Communities', 'textbook' => 'Can Request Textbook Courses', + 'placement' => 'Can Request Placement Tests', 'requestauthor' => 'Can Request Author Role', 'adhocroles' => 'Ad Hoc Roles Selectable via Helpdesk Role', 'inststatus' => "Affiliation", @@ -3754,7 +3745,7 @@ sub adhocrole_changes { @current = split(/,/,$userenv->{$adhoc_key}); if (@dels) { foreach my $curr (@current) { - next if ($curr eq ''); + next if ($curr eq ''); unless (grep(/\Q$curr\E$/,@dels)) { push(@saved,$curr); } @@ -3792,7 +3783,7 @@ sub adhocrole_changes { push(@alladhoc,@saved); } if (@alladhoc) { - my $adhocstr = join(',',sort(@alladhoc)); + my $adhocstr = join(',',sort(@alladhoc)); $changehashref->{$adhoc_key} = $adhocstr; } elsif (@dels) { &Apache::lonnet::del('environment',[$adhoc_key],$env{'form.ccdomain'},$env{'form.ccuname'}); @@ -4371,7 +4362,7 @@ sub custom_role_editor { ($privs{'system'},$privs{'domain'},$privs{'course'})=split(/\_/,$roledef); if ($privs{'system'} =~ /bre\&S/) { if ($context eq 'domain') { - $crstype = 'Course'; + $crstype = 'Course'; } elsif ($crstype eq 'Community') { $privs{'system'} =~ s/bre\&S//; } @@ -4386,7 +4377,7 @@ sub custom_role_editor { # ------------------------------------------------------- What can be assigned? my %full=(); - my %levels=( + my %levels=( course => {}, domain => {}, system => {}, @@ -4399,7 +4390,7 @@ sub custom_role_editor { &Apache::lonuserutils::custom_role_privs(\%privs,\%full,\%levels,\%levelscurrent); my ($jsback,$elements) = &crumb_utilities(); my @templateroles = &Apache::lonuserutils::custom_template_roles($context,$crstype); - my $head_script = + my $head_script = &Apache::lonuserutils::custom_roledefs_js($context,$crstype,$formname, \%full,\@templateroles,$jsback); push (@{$brcrum}, @@ -4414,7 +4405,7 @@ sub custom_role_editor { ); my $args = { bread_crumbs => $brcrum, bread_crumbs_component => 'User Management'}; - + $r->print(&Apache::loncommon::start_page('Custom Role Editor', $head_script,$args). $body_top); @@ -4431,7 +4422,7 @@ ENDCCF $r->print(&Apache::loncommon::end_data_table(). ''. ''."\n".''."\n". + '" />'."\n".''."\n". ''."\n". '
'); } @@ -4618,9 +4609,8 @@ sub handler { } else { &Apache::lonuserutils::print_first_users_upload_form($r,$context); } - } elsif (((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} - eq 'singlestudent')) && ($permission->{'cusr'})) || - (($env{'form.action'} eq 'accesslogs') && ($permission->{'activity'}))) { + } elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} + eq 'singlestudent')) && ($permission->{'cusr'})) { my $phase = $env{'form.phase'}; my @search = ('srchterm','srchby','srchin','srchtype','srchdomain'); &Apache::loncreateuser::restore_prev_selections(); @@ -4629,7 +4619,7 @@ sub handler { $srch->{$item} = $env{'form.'.$item}; } if (($phase eq 'get_user_info') || ($phase eq 'userpicked') || - ($phase eq 'createnewuser') || ($phase eq 'activity')) { + ($phase eq 'createnewuser')) { if ($env{'form.phase'} eq 'createnewuser') { my $response; if ($env{'form.srchterm'} !~ /^$match_username$/) { @@ -4659,8 +4649,8 @@ sub handler { &print_user_selection_page($r,$response,$srch,$results, \@search,$context,undef,$crstype, $brcrum); - } elsif (($currstate eq 'modify') || ($env{'form.action'} eq 'accesslogs')) { - my ($ccuname,$ccdomain,$uhome); + } elsif ($currstate eq 'modify') { + my ($ccuname,$ccdomain); if (($srch->{'srchby'} eq 'uname') && ($srch->{'srchtype'} eq 'exact')) { $ccuname = $srch->{'srchterm'}; @@ -4671,32 +4661,12 @@ sub handler { } $ccuname =&LONCAPA::clean_username($ccuname); $ccdomain=&LONCAPA::clean_domain($ccdomain); - if ($env{'form.action'} eq 'accesslogs') { - my $uhome; - if (($ccuname ne '') && ($ccdomain ne '')) { - $uhome = &Apache::lonnet::homeserver($ccuname,$ccdomain); - } - if (($uhome eq '') || ($uhome eq 'no_host')) { - $env{'form.phase'} = ''; - undef($forcenewuser); - #if ($response) { - # unless ($response =~ m{\Q

\E$}) { - # $response .= '

'; - # } - #} - &print_username_entry_form($r,$context,$response,$srch, - $forcenewuser,$crstype,$brcrum); - } else { - &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); - } - } else { - if ($env{'form.forcenewuser'}) { - $response = ''; - } - &print_user_modification_page($r,$ccuname,$ccdomain, - $srch,$response,$context, - $permission,$crstype,$brcrum); + if ($env{'form.forcenewuser'}) { + $response = ''; } + &print_user_modification_page($r,$ccuname,$ccdomain, + $srch,$response,$context, + $permission,$crstype,$brcrum); } elsif ($currstate eq 'query') { &print_user_query_page($r,'createuser',$brcrum); } else { @@ -4707,17 +4677,9 @@ sub handler { } elsif ($env{'form.phase'} eq 'userpicked') { my $ccuname = &LONCAPA::clean_username($env{'form.seluname'}); my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'}); - if ($env{'form.action'} eq 'accesslogs') { - &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); - } else { - &print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', - $context,$permission,$crstype, - $brcrum); - } - } elsif ($env{'form.action'} eq 'accesslogs') { - my $ccuname = &LONCAPA::clean_username($env{'form.accessuname'}); - my $ccdomain = &LONCAPA::clean_domain($env{'form.accessudom'}); - &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); + &print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', + $context,$permission,$crstype, + $brcrum); } } elsif ($env{'form.phase'} eq 'update_user_data') { &update_user_data($r,$context,$crstype,$brcrum,$showcredits); @@ -5348,16 +5310,6 @@ sub print_main_menu { ); if ($context eq 'domain'){ - push(@{ $menu[0]->{items} }, # Single Users - { - linktext => 'User Access Log', - icon => 'document-properties.png', - #help => 'User_Access_Logs', - url => '/adm/createuser?action=accesslogs', - permission => $permission->{'activity'}, - linktitle => 'View user access log.', - } - ); push(@{ $menu[2]->{items} }, #Category: Administration { @@ -5409,6 +5361,7 @@ sub print_main_menu { groups => 'Community Groups', }, ); + $linktext{'Placement'} = $linktext{'Course'}; my %linktitle = ( 'Course' => { @@ -5423,6 +5376,8 @@ sub print_main_menu { }, ); + $linktitle{'Placement'} = $linktitle{'Course'}; + push(@{ $menu[0]->{items} }, #Category: Single Users { linktext => $linktext{$crstype}{'single'}, @@ -6636,324 +6591,6 @@ 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('
'. - &activity_display_filter($formname,\%curr)); - - my $showntableheader = 0; - my ($nav_script,$nav_links); - -# table header - my $tableheader = - &Apache::loncommon::start_data_table_header_row() - .' ' - .''.&mt('When').'' - .''.&mt('HostID').'' - .''.&mt('Event').'' - .''.&mt('Other data').'' - .&Apache::loncommon::end_data_table_header_row(); - - my %filters=( - start => $curr{'accesslog_start_date'}, - end => $curr{'accesslog_end_date'}, - action => $curr{'activity'}, - ); - - my $reply = &Apache::lonnet::userlog_query($uname,$udom,%filters); - unless ( ($reply =~/^timeout/) || ($reply =~/^error/) ) { - my (%courses,%missing); - my @results = split(/\&/,$reply); - foreach my $item (reverse(@results)) { - my ($timestamp,$host,$event) = split(/:/,$item); - next unless ($event =~ /^(Log|Role)/); - if ($curr{'show'} !~ /\D/) { - if ($count >= $curr{'page'} * $curr{'show'}) { - $more_records = 1; - last; - } - } - $count ++; - next if ($count < $minshown); - unless ($showntableheader) { - $r->print($nav_script - .&Apache::loncommon::start_data_table() - .$tableheader); - $r->rflush(); - $showntableheader = 1; - } - my ($shown,$extra,); - my ($event,$data) = split(/\s+/,&unescape($event)); - if ($event eq 'Role') { - my ($rolecode,$extent) = split(/\./,$data,2); - next if ($extent eq ''); - my ($crstype,$desc,$info); - if ($extent =~ m{^/($match_domain)/($match_courseid)$}) { - my ($cdom,$cnum) = ($1,$2); - my $cid = $cdom.'_'.$cnum; - if (exists($courses{$cid})) { - $crstype = $courses{$cid}{'type'}; - $desc = $courses{$cid}{'description'}; - } elsif ($missing{$cid}) { - $crstype = 'Course'; - $desc = 'Course/Community'; - } else { - my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.'); - if (ref($crsinfo{$cdom.'_'.$cnum}) eq 'HASH') { - $courses{$cid} = $crsinfo{$cid}; - $crstype = $crsinfo{$cid}{'type'}; - $desc = $crsinfo{$cid}{'description'}; - } else { - $missing{$cid} = 1; - } - } - $extra = &mt($crstype).': '.$desc.''; - } elsif ($extent =~ m{^/($match_domain)/($match_username|$)}) { - my ($dom,$name) = ($1,$2); - if ($rolecode eq 'au') { - $extra = ''; - } elsif ($rolecode =~ /^(ca|aa)$/) { - $extra = &mt('Authoring Space: [_1]',$name.':'.$dom); - } elsif ($rolecode =~ /^(li|dg|dh|dc|sc)$/) { - $extra = &mt('Domain: [_1]',$dom); - } - } - my $rolename; - if ($rolecode =~ m{^cr/($match_domain)/($match_username)/(\w+)}) { - my $role = $3; - my $owner = "($2:$1)"; - if ($2 eq $1.'-domainconfig') { - $owner = '(ad hoc)'; - } - $rolename = &mt('Custom role: [_1]',$role.' '.$owner); - } else { - $rolename = &Apache::lonnet::plaintext($rolecode,$crstype); - } - $shown = &mt('Role selection: [_1]',$rolename); - } else { - $shown = &mt($event); - if ($data ne '') { - $extra = &mt('Client IP address: [_1]',$data); - } - } - $r->print( - &Apache::loncommon::start_data_table_row() - .''.$count.'' - .''.&Apache::lonlocal::locallocaltime($timestamp).'' - .''.$host.'' - .''.$shown.'' - .''.$extra.'' - .&Apache::loncommon::end_data_table_row()."\n"); - } - } - - if ($showntableheader) { # Table footer, if content displayed above - $r->print(&Apache::loncommon::end_data_table(). - &userlogdisplay_navlinks(\%curr,$more_records)); - } else { # No content displayed above - $r->print('

' - .&mt('There are no records to display.') - .'

'); - } - - # Form Footer - $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 = ''; - 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('Actions/page:').'
'. - &Apache::lonmeta::selectbox('show',$curr->{'show'},undef, - (&mt('all'),5,10,20,50,100,1000,10000)). - '
  '.&mt('Window during which actions occurred:').'
'. - ''. - ''. - '
'.&mt('After:'). - ''.$startform.'
'.&mt('Before:').''.$endform.'
'. - '
  '.&mt('Activities').'
'. - '
'; - # Update Display button - $output .= '

' - .'' - .'

'; - return $output; -} - sub userlogdisplay_js { my ($formname) = @_; return <<"ENDSCRIPT"; @@ -7184,7 +6821,7 @@ sub user_search_result { $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); @@ -7223,9 +6860,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} = @@ -7513,11 +7147,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'}); @@ -7562,8 +7192,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.'';