--- loncom/interface/loncreateuser.pm 2024/02/29 21:43:33 1.406.2.20.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.20.2.5 2024/02/29 21:43:33 raeburn Exp $
+# $Id: loncreateuser.pm,v 1.415 2016/10/10 02:53:02 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -71,7 +71,6 @@ use Apache::longroup;
use Apache::lonuserutils;
use Apache::loncoursequeueadmin;
use LONCAPA qw(:DEFAULT :match);
-use HTML::Entities;
my $loginscript; # piece of javascript used in two separate instances
my $authformnop;
@@ -81,7 +80,7 @@ my $authformfsys;
my $authformloc;
sub initialize_authen_forms {
- my ($dom,$formname,$curr_authtype,$mode,$readonly) = @_;
+ my ($dom,$formname,$curr_authtype,$mode) = @_;
my ($krbdef,$krbdefdom) = &Apache::loncommon::get_kerberos_defaults($dom);
my %param = ( formname => $formname,
kerb_def_dom => $krbdefdom,
@@ -102,9 +101,6 @@ sub initialize_authen_forms {
$param{'mode'} = $mode;
}
}
- if ($readonly) {
- $param{'readonly'} = 1;
- }
$loginscript = &Apache::loncommon::authform_header(%param);
$authformkrb = &Apache::loncommon::authform_kerberos(%param);
$authformnop = &Apache::loncommon::authform_nochange(%param);
@@ -127,82 +123,14 @@ sub auth_abbrev {
# ====================================================
sub user_quotas {
- my ($ccuname,$ccdomain,$name) = @_;
+ my ($ccuname,$ccdomain) = @_;
my %lt = &Apache::lonlocal::texthash(
+ 'usrt' => "User Tools",
'cust' => "Custom quota",
'chqu' => "Change quota",
);
- my ($output,$longinsttype);
- my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($ccdomain);
- my %titles = &Apache::lonlocal::texthash (
- portfolio => "Disk space allocated to user's portfolio files",
- author => "Disk space allocated to user's Authoring Space",
- );
- my ($currquota,$quotatype,$inststatus,$defquota) =
- &Apache::loncommon::get_user_quota($ccuname,$ccdomain,$name);
- if ($longinsttype eq '') {
- if ($inststatus ne '') {
- if ($usertypes->{$inststatus} ne '') {
- $longinsttype = $usertypes->{$inststatus};
- }
- }
- }
- my ($showquota,$custom_on,$custom_off,$defaultinfo,$colspan);
- $custom_on = ' ';
- $custom_off = ' checked="checked" ';
- $colspan = ' colspan="2"';
- if ($quotatype eq 'custom') {
- $custom_on = $custom_off;
- $custom_off = ' ';
- $showquota = $currquota;
- if ($longinsttype eq '') {
- $defaultinfo = &mt('For this user, the default quota would be [_1]'
- .' MB.',$defquota);
- } else {
- $defaultinfo = &mt("For this user, the default quota would be [_1]".
- " MB,[_2]as determined by the user's institutional".
- " affiliation ([_3]).",$defquota,'
',$longinsttype);
- }
- } else {
- if ($longinsttype eq '') {
- $defaultinfo = &mt('For this user, the default quota is [_1]'
- .' MB.',$defquota);
- } else {
- $defaultinfo = &mt("For this user, the default quota of [_1]".
- " MB,[_2]is determined by the user's institutional".
- " affiliation ([_3]).",$defquota,'
',$longinsttype);
- }
- }
-
- if (&Apache::lonnet::allowed('mpq',$ccdomain)) {
- $output .= '
' - .&mt('You do not have rights to display user access logs.') - .'
'); - if ($env{'form.popup'}) { - $r->print(''); - } else { - $r->print(&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; - } - - if (&Apache::lonnet::privileged($uname,$udom, - [$env{'request.role.domain'}],['dc','su'])) { - unless (&Apache::lonnet::privileged($env{'user.name'},$env{'user.domain'}, - [$env{'request.role.domain'}],['dc','su'])) { - $r->print('' - .&mt('You need to be a privileged user to display user access logs for [_1]', - &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom), - $uname,$udom)) - .'
'); - if ($env{'form.popup'}) { - $r->print(''); - } else { - $r->print(&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('Activities').' '. - ' | '.
- '
' - .'' - .'