-END
- if (&localenroll::run() ) {
- $r->print(<$Text{'populate'}
END
- }
}
###############################################################
@@ -192,6 +190,7 @@ sub hidden_input {
sub print_upload_manager_header {
my ($r,$datatoken,$distotal,$krbdefdom)=@_;
my $javascript;
+ #
if (! exists($ENV{'form.upfile_associate'})) {
$ENV{'form.upfile_associate'} = 'forward';
}
@@ -207,7 +206,20 @@ sub print_upload_manager_header {
} else {
$javascript=&upload_manager_javascript_forward_associate();
}
- my $javascript_validations=&javascript_validations('auth',$krbdefdom);
+ #
+ # Deal with restored settings
+ my $password_choice = '';
+ if (exists($ENV{'form.ipwd_choice'}) &&
+ $ENV{'form.ipwd_choice'} ne '') {
+ # If a column was specified for password, assume it is for an
+ # internal password. This is a bug waiting to be filed (could be
+ # local or krb auth instead of internal) but I do not have the
+ # time to mess around with this now.
+ $password_choice = 'int';
+ }
+ #
+ my $javascript_validations=&javascript_validations('auth',$krbdefdom,
+ $password_choice);
my $checked=(($ENV{'form.noFirstLine'})?' checked="1"':'');
$r->print('
'.&mt('Uploading Class List')."
\n".
"\n".
@@ -216,10 +228,7 @@ sub print_upload_manager_header {
&mt('Total number of records found in file: [_1].',$distotal).
"\n".
"
\n");
- $r->print(&mt('Enter as many fields as you can. '.
- 'The system will inform you and bring you back to '.
- 'this page if the data selected is insufficient to '.
- 'enroll students in your class.')."\n");
+ $r->print(&mt('Enter as many fields as you can. The system will inform you and bring you back to this page if the data selected is insufficient to enroll students in your class.')."\n");
$r->print(&hidden_input('action','upload').
&hidden_input('state','got_file').
&hidden_input('associate','').
@@ -240,17 +249,27 @@ sub print_upload_manager_header {
###############################################################
###############################################################
sub javascript_validations {
- my ($mode,$krbdefdom)=@_;
+ my ($mode,$krbdefdom,$curr_authtype,$curr_authfield)=@_;
my $authheader;
if ($mode eq 'auth') {
my %param = ( formname => 'studentform',
- kerb_def_dom => $krbdefdom );
+ kerb_def_dom => $krbdefdom,
+ curr_authtype => $curr_authtype);
$authheader = &Apache::loncommon::authform_header(%param);
} elsif ($mode eq 'createcourse') {
my %param = ( formname => 'ccrs',
- kerb_def_dom => $krbdefdom );
+ kerb_def_dom => $krbdefdom,
+ curr_authtype => $curr_authtype );
+ $authheader = &Apache::loncommon::authform_header(%param);
+ } elsif ($mode eq 'modifycourse') {
+ my %param = ( formname => 'cmod',
+ kerb_def_dom => $krbdefdom,
+ mode => 'modifycourse',
+ curr_authtype => $curr_authtype,
+ curr_autharg => $curr_authfield );
$authheader = &Apache::loncommon::authform_header(%param);
}
+
my %alert = &Apache::lonlocal::texthash
(username => 'You need to specify the username field.',
@@ -268,24 +287,59 @@ sub javascript_validations {
my $function_name =(< $krbdefdom,
kerb_def_auth => $krbdef
);
+ if (exists($ENV{'form.ipwd_choice'}) &&
+ defined($ENV{'form.ipwd_choice'}) &&
+ $ENV{'form.ipwd_choice'} ne '') {
+ $param{'curr_authtype'} = 'int';
+ }
my $krbform = &Apache::loncommon::authform_kerberos(%param);
my $intform = &Apache::loncommon::authform_internal(%param);
my $locform = &Apache::loncommon::authform_local(%param);
@@ -551,7 +611,7 @@ sub print_upload_manager_footer {
'of Conflicting IDs (only do if you know what you are doing)').
"\n
\n";
$Str .= ''." \n";
+ 'value="Update Class List" />'." \n";
$Str .= &mt('Note: for large courses, this operation may be time '.
'consuming');
$r->print($Str);
@@ -562,6 +622,7 @@ sub print_upload_manager_footer {
###############################################################
sub print_upload_manager_form {
my $r=shift;
+
my $firstLine;
my $datatoken;
if (!$ENV{'form.datatoken'}) {
@@ -578,23 +639,41 @@ sub print_upload_manager_form {
my $distotal=$total+1;
my $today=time;
my $halfyear=$today+15552000;
+ #
+ # Restore memorized settings
+ &Apache::loncommon::restore_course_settings
+ ('enrollment_upload',{ 'username_choice' => 'scalar', # column settings
+ 'names_choice' => 'scalar',
+ 'fname_choice' => 'scalar',
+ 'mname_choice' => 'scalar',
+ 'lname_choice' => 'scalar',
+ 'gen_choice' => 'scalar',
+ 'id_choice' => 'scalar',
+ 'sec_choice' => 'scalar',
+ 'ipwd_choice' => 'scalar',
+ 'email_choice' => 'scalar',
+ });
+ #
+ # Determine kerberos parameters as appropriate
my $defdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
my ($krbdef,$krbdefdom) =
&Apache::loncommon::get_kerberos_defaults($defdom);
+ #
&print_upload_manager_header($r,$datatoken,$distotal,$krbdefdom);
my $i;
my $keyfields;
if ($total>=0) {
- my @field=(['username',&mt('Username')],
- ['names',&mt('Last Name, First Names')],
- ['fname',&mt('First Name')],
- ['mname',&mt('Middle Names/Initials')],
- ['lname',&mt('Last Name')],
- ['gen',&mt('Generation')],
- ['id',&mt('ID/Student Number')],
- ['sec',&mt('Group/Section')],
- ['ipwd',&mt('Initial Password')],
- ['email',&mt('EMail Address')]);
+ my @field=
+ (['username',&mt('Username'), $ENV{'form.username_choice'}],
+ ['names',&mt('Last Name, First Names'),$ENV{'form.names_choice'}],
+ ['fname',&mt('First Name'), $ENV{'form.fname_choice'}],
+ ['mname',&mt('Middle Names/Initials'),$ENV{'form.mname_choice'}],
+ ['lname',&mt('Last Name'), $ENV{'form.lname_choice'}],
+ ['gen', &mt('Generation'), $ENV{'form.gen_choice'}],
+ ['id', &mt('ID/Student Number'),$ENV{'form.id_choice'}],
+ ['sec', &mt('Group/Section'), $ENV{'form.sec_choice'}],
+ ['ipwd', &mt('Initial Password'),$ENV{'form.ipwd_choice'}],
+ ['email',&mt('EMail Address'), $ENV{'form.email_choice'}]);
if ($ENV{'form.upfile_associate'} eq 'reverse') {
&Apache::loncommon::csv_print_samples($r,\@records);
$i=&Apache::loncommon::csv_print_select_table($r,\@records,
@@ -630,8 +709,8 @@ sub enroll_single_student {
$r->print(&make_dates_default($startdate,$enddate));
}
- $r->print('
');
if (($ENV{'form.cuname'})&&($ENV{'form.cuname'}!~/\W/)&&
($ENV{'form.lcdomain'})&&($ENV{'form.lcdomain'}!~/\W/)) {
@@ -643,12 +722,12 @@ sub enroll_single_student {
} else {
my %home_servers =&Apache::loncommon::get_library_servers($domain);
if (! exists($home_servers{$desiredhost})) {
- $r->print('Error:'.
- 'Invalid home server specified');
+ $r->print(''.&mt('Error').':'.
+ &mt('Invalid home server specified'));
return;
}
}
- $r->print(" with server $desiredhost :") if (defined($desiredhost));
+ $r->print(" ".&mt('with server')." $desiredhost :") if (defined($desiredhost));
# End of home server selection logic
my $amode='';
my $genpwd='';
@@ -681,22 +760,21 @@ sub enroll_single_student {
$desiredhost);
if ($login_result =~ /^ok/) {
$r->print($login_result);
- $r->print("
If active, the new role will be available ".
- "when the student next logs in to LON-CAPA.
");
+ $r->print("
".&mt('If active, the new role will be available when the student next logs in to LON-CAPA.')."
");
} else {
- $r->print("unable to enroll: ".$login_result);
+ $r->print(&mt('unable to enroll').": ".$login_result);
}
} else {
- $r->print('
');
+ $r->print(''.&mt('Unable to enroll').' '.$ENV{'form.cuname'}.'.');
}
} else {
- $r->print('Invalid username or domain');
+ $r->print(&mt('Invalid username or domain'));
}
}
@@ -752,8 +830,8 @@ sub date_setting_table {
my ($starttime,$endtime,$mode) = @_;
my ($startform,$endform)=&setup_date_selectors($starttime,$endtime,$mode);
my $dateDefault = ''.
- ''.
- ' make these dates the default for future enrollment';
+ ' '.
+ &mt('make these dates the default for future enrollment');
if ($mode eq 'createcourse') {
$dateDefault = ' ';
}
@@ -761,13 +839,13 @@ sub date_setting_table {
if (defined($endtime) && $endtime == 0) {
$perpetual .= ' checked';
}
- $perpetual.= ' />'.' no ending date';
+ $perpetual.= ' /> '.&mt('no ending date').'';
my $result = '';
$result .= "
\n";
- $result .= '
Starting Date
'.
+ $result .= '
'.&mt('Starting Date').'
'.
'
'.$startform.'
'.
'
'.$dateDefault.'
'."
\n";
- $result .= '
Ending Date
'.
+ $result .= '
'.&mt('Ending Date').'
'.
'
'.$endform.'
'.
'
'.$perpetual.'
'."
\n";
$result .= "
\n";
@@ -788,7 +866,7 @@ sub make_dates_default {
# Refresh the course environment
&Apache::lonnet::coursedescription($ENV{'request.course.id'});
} else {
- $result .= "Unable to set default dates for course:".$put_result.
+ $result .= &mt('Unable to set default dates for course').":".$put_result.
' ';
}
return $result;
@@ -801,18 +879,24 @@ sub get_student_username_domain_form {
my $r = shift;
my $domform = &Apache::loncommon::select_dom_form
($ENV{'course.'.$ENV{'request.course.id'}.'.domain'},'cudomain',0);
+ my %lt=&Apache::lonlocal::texthash(
+ 'eos' => "Enroll One Student",
+ 'usr' => "Username",
+ 'dom' => "Domain",
+ 'been' => "Begin Enrollment",
+ );
$r->print(<
-
Enroll One Student
+
$lt{'eos'}
-
Username:
+
$lt{'usr'}:
-
Domain:
+
$lt{'dom'}:
$domform
-
+
END
@@ -821,7 +905,7 @@ END
sub print_enroll_single_student_form {
my $r=shift;
- $r->print("
Enroll One Student
");
+ $r->print("
".&mt('Enroll One Student')."
");
#
my $username = $ENV{'form.cuname'};
my $domain = $ENV{'form.cudomain'};
@@ -860,22 +944,32 @@ sub print_enroll_single_student_form {
$homeserver_form .= "\n";
#
#
+ my %lt=&Apache::lonlocal::texthash(
+ 'udf' => "User Data for",
+ 'fn' => "First Name",
+ 'mn' => "Middle Name",
+ 'ln' => "Last Name",
+ 'gen' => "Generation",
+ 'hs' => "Home Server",
+ 'pswd' => "Password",
+ 'psam' => "Please select an authentication mechanism",
+ );
$user_data_html = <User Data for $username\@$domain
+
$lt{'udf'} $username\@$domain
-
First Name:
+
$lt{'fn'}:
-
Middle Name:
+
$lt{'mn'}:
-
Last Name:
+
$lt{'ln'}:
-
Generation:
+
$lt{'gen'}:
-
Home Server:
+
$lt{'hs'}:
$homeserver_form
-
Password
-Please select an authentication mechanism
+
$lt{'pswd'}
+$lt{'psam'}
$krbform
@@ -889,23 +983,30 @@ END
# User already exists. Do not worry about authentication
my %uenv = &Apache::lonnet::dump('environment',$domain,$username);
$javascript_validations = &javascript_validations('noauth');
+ my %lt=&Apache::lonlocal::texthash(
+ 'udf' => "User Data for",
+ 'fn' => "First Name",
+ 'mn' => "Middle Name",
+ 'ln' => "Last Name",
+ 'gen' => "Generation",
+ );
$user_data_html = <User Data for $username\@$domain
+
$lt{'udf'} $username\@$domain
-
First Name:
+
$lt{'fn'}:
-
Middle Name:
+
$lt{'mn'}:
-
Last Name:
+
$lt{'ln'}:
-
Generation:
+
$lt{'gen'}:
@@ -914,6 +1015,13 @@ END
}
my $date_table = &date_setting_table();
# Print it all out
+ my %lt=&Apache::lonlocal::texthash(
+ 'cd' => "Course Data",
+ 'gs' => "Group/Section",
+ 'idsn' => "ID/Student Number",
+ 'disn' => "Disable ID/Student Number Safeguard and Force Change of Conflicting IDs (only do if you know what you are doing)",
+ 'eas' => "Enroll as student",
+ );
$r->print(<
@@ -958,21 +1066,20 @@ function clearpwd(vf) {
$user_data_html
-
Course Data
+
$lt{'cd'}
-
Group/Section:
+
$lt{'gs'}:
$date_table
-
ID/Student Number
+
$lt{'idsn'}
-ID/Student Number:
+$lt{'idsn'}:
-Disable ID/Student Number Safeguard and Force Change of Conflicting IDs
-(only do if you know what you are doing)
+$lt{'disn'}
-
+
END
return;
@@ -981,11 +1088,11 @@ END
# ========================================================= Menu Phase Two Drop
sub print_drop_menu {
my $r=shift;
- $r->print("
Drop Students
");
+ $r->print("
".&mt('Drop Students')."
");
my $cid=$ENV{'request.course.id'};
my ($classlist,$keylist) = &Apache::loncoursedata::get_classlist();
if (! defined($classlist)) {
- $r->print("There are no students currently enrolled.\n");
+ $r->print(&mt('There are no students currently enrolled.')."\n");
return;
}
# Print out the available choices
@@ -1004,29 +1111,34 @@ sub print_html_classlist {
}
my $status_select = &Apache::lonhtmlcommon::StatusOptions
($ENV{'form.Status'},'studentform');
+ my $CCL=&mt('Current Class List');
$r->print(<
-Current Class List
+$CCL
END
if ($ENV{'form.action'} ne 'modifystudent') {
+ my %lt=&Apache::lonlocal::texthash(
+ 'ef' => "Excel format",
+ 'ss' => "Student Status",
+ );
$r->print(<CSV format
-Excel format
+$lt{'ef'}
-Student Status:
+$lt{'ss'}:
END
}
$r->print($status_select."
\n");
my $cid=$ENV{'request.course.id'};
my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
if (! defined($classlist)) {
- $r->print("There are no students currently enrolled.\n");
+ $r->print(&mt('There are no students currently enrolled.')."\n");
} else {
# Print out the available choices
if ($ENV{'form.action'} eq 'modifystudent') {
@@ -1046,7 +1158,7 @@ sub print_formatted_classlist {
my $cid=$ENV{'request.course.id'};
my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
if (! defined($classlist)) {
- $r->print("There are no students currently enrolled.\n");
+ $r->print(&mt('There are no students currently enrolled.')."\n");
} else {
&show_class_list($r,$mode,'nolink','csv',
$ENV{'form.Status'},$classlist,$keylist);
@@ -1068,10 +1180,16 @@ sub show_class_list {
# Print out header
if ($mode eq 'view') {
if ($linkto eq 'aboutme') {
- $r->print('Select a user name to view the users personal page.');
+ $r->print(&mt('Select a user name to view the users personal page.'));
} elsif ($linkto eq 'modify') {
- $r->print('Select a user name to modify the students information');
+ $r->print(&mt('Select a user name to modify the students information'));
}
+ my %lt=&Apache::lonlocal::texthash(
+ 'usrn' => "username",
+ 'dom' => "domain",
+ 'sn' => "student name",
+ 'sec' => "section",
+ );
$r->print(<
@@ -1080,28 +1198,29 @@ sub show_class_list {