--- loncom/interface/lonuserutils.pm 2009/03/09 05:25:40 1.84 +++ loncom/interface/lonuserutils.pm 2009/04/22 17:42:36 1.89 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Utility functions for managing LON-CAPA user accounts # -# $Id: lonuserutils.pm,v 1.84 2009/03/09 05:25:40 raeburn Exp $ +# $Id: lonuserutils.pm,v 1.89 2009/04/22 17:42:36 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -341,7 +341,7 @@ sub print_upload_manager_header { &hidden_input('fileupload',$env{'form.fileupload'}). &hidden_input('upfiletype',$env{'form.upfiletype'}). &hidden_input('upfile_associate',$env{'form.upfile_associate'})); - $r->print('<br /><label><input type="checkbox" name="noFirstLine"'.$checked.'/>'. + $r->print('<br /><label><input type="checkbox" name="noFirstLine"'.$checked.' />'. &mt('Ignore First Line').'</label><br />'); $r->print('<br /><input type="button" value="'.&mt('Reverse Association').'" '. 'name="Reverse Association" '. @@ -813,7 +813,7 @@ sub print_upload_manager_footer { my $secbox = §ion_picker($cdom,$cnum,'Any',$rowtitle, $permission,$context,'upload'); $Str .= $secbox."<h3>".&mt('Full Update')."</h3>\n". - '<p><label><input type="checkbox" name="fullup" value="yes">'. + '<p><label><input type="checkbox" name="fullup" value="yes" />'. ' '.&mt('Display students with current/future access who are not in the uploaded file.').'</label><br />'.&mt('Students selected from this list can be dropped.').'</p>'."\n"; } if ($context eq 'course' || $context eq 'domain') { @@ -838,13 +838,13 @@ sub forceid_change { my ($context) = @_; my $output = "<h3>".&mt('Student/Employee ID')."</h3>\n". - "<p>\n".'<label><input type="checkbox" name="forceid" value="yes">'. + "<p>\n".'<label><input type="checkbox" name="forceid" value="yes" />'. &mt('Disable Student/Employee ID Safeguard and force change of conflicting IDs'). '</label><br />'."\n". &mt('(only do if you know what you are doing.)')."\n"; if ($context eq 'domain') { $output .= '<br /><label><input type="checkbox" name="recurseid"'. - ' value="yes">'. + ' value="yes" />'. &mt('Update Student/Employee ID in courses in which user is active/future student,[_1](if forcing change).','<br />'). '</label>'."\n"; } @@ -2212,15 +2212,15 @@ END foreach my $item (@linkdests) { my $checkedstr = ''; if ($item eq $usernamelink) { - $checkedstr = ' checked="checked" '; + $checkedstr = ' checked="checked"'; } - $output .= '<span class="LC_nobreak"><label><input type="radio" name="usernamelink" value="'.$item.'"'.$checkedstr.'> '.$lt{$item}.'</label></span><br />'; + $output .= '<span class="LC_nobreak"><label><input type="radio" name="usernamelink" value="'.$item.'"'.$checkedstr.' /> '.$lt{$item}.'</label></span><br />'; } my $checkwin; if ($env{'form.userwin'}) { - $checkwin = 'checked = "checked"'; + $checkwin = ' checked="checked"'; } - $output .= '</td><td valign="top"><span class="LC_nobreak"><input type="checkbox" name="userwin" value="1" '.$checkwin.'/>'.$lt{'owin'}.'</span></td></tr></table></fieldset></div>'; + $output .= '</td><td valign="top"><span class="LC_nobreak"><input type="checkbox" name="userwin" value="1"'.$checkwin.' />'.$lt{'owin'}.'</span></td></tr></table></fieldset></div>'; } $output .= "\n".'<div class="LC_clear_float_footer"> </div>'."\n". &Apache::loncommon::start_data_table(). @@ -2537,7 +2537,7 @@ END } } $r->print('<td><input type="checkbox" name="'. - 'actionlist" value="'.$checkval.'"></td>'); + 'actionlist" value="'.$checkval.'" /></td>'); } else { $r->print('<td> </td>'); } @@ -3259,7 +3259,7 @@ sub show_drop_list { $check_uncheck_js </script> <p> -<input type="hidden" name="phase" value="four"> +<input type="hidden" name="phase" value="four" /> END my ($indexhash,$keylist) = &make_keylist_array(); my $studentcount = 0; @@ -3377,7 +3377,7 @@ END # $r->print(&Apache::loncommon::start_data_table_row()); $r->print(<<"END"); - <td><input type="checkbox" name="droplist" value="$studentkey"></td> + <td><input type="checkbox" name="droplist" value="$studentkey" /></td> <td>$username</td> <td>$domain</td> <td>$id</td> @@ -3396,10 +3396,14 @@ END 'ua' => "uncheck all", ); $r->print(<<"END"); -</p><p> -<input type="button" value="$lt{'ca'}" onclick="javascript:checkAll(document.studentform.droplist)"> -<input type="button" value="$lt{'ua'}" onclick="javascript:uncheckAll(document.studentform.droplist)"> -<p><input type=submit value="$lt{'dp'}"></p> +</p> +<p> +<input type="button" value="$lt{'ca'}" onclick="javascript:checkAll(document.studentform.droplist)" /> +<input type="button" value="$lt{'ua'}" onclick="javascript:uncheckAll(document.studentform.droplist)" /> +</p> +<p> +<input type="submit" value="$lt{'dp'}" /> +</p> END return; } @@ -3410,10 +3414,13 @@ END sub print_first_users_upload_form { my ($r,$context) = @_; my $str; - $str = '<input type="hidden" name="phase" value="two">'; + $str = '<input type="hidden" name="phase" value="two" />'; $str .= '<input type="hidden" name="action" value="upload" />'; $str .= '<input type="hidden" name="state" value="got_file" />'; - $str .= "<h3>".&mt('Upload a file containing information about users')."</h3>\n"; + $str .= '<h2>'.&mt('Upload a file containing information about users').'</h2>'."\n"; + $str .= '<p class="LC_info">' + .&mt('Please upload an UTF8 encoded file to ensure a correct character encoding in your classlist.') + .'</p>'."\n"; $str .= &Apache::loncommon::upfile_select_html(); $str .= '<p>'; $str .= &Apache::loncommon::help_open_topic("Course_Create_Class_List", @@ -3426,7 +3433,7 @@ sub print_first_users_upload_form { $str .= '<label><input type="checkbox" name="noFirstLine" /> '. &mt('Ignore First Line')."</label></p>\n"; $str .= '<input type="submit" name="fileupload" value="'. - &mt('Next').'">'."<br />\n"; + &mt('Next').'" />'."<br />\n"; $str .= &Apache::loncommon::end_page(); $r->print($str); return; @@ -3604,6 +3611,8 @@ sub upfile_drop_add { } else { $r->print('<h3>'.&mt('Adding/Modifying Users')."</h3>\n<p>\n"); } + $r->rflush; + my %counts = ( user => 0, auth => 0,