--- loncom/interface/lonhtmlcommon.pm 2005/10/04 19:59:15 1.112 +++ loncom/interface/lonhtmlcommon.pm 2005/10/14 18:28:26 1.115 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.112 2005/10/04 19:59:15 raeburn Exp $ +# $Id: lonhtmlcommon.pm,v 1.115 2005/10/14 18:28:26 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1246,7 +1246,7 @@ returns: nothing # # In general a &submit_row() call should proceed the call to &end_pick_box(), # as this routine adds a button for form submission. -# &submit_row(0 does not require a &row_closure after it. +# &submit_row() does not require a &row_closure after it. # # &start_pick_box() creates a bounding table with 1-pixel wide black border. # rows should be placed between calls to &start_pick_box() and &end_pick_box. @@ -1317,7 +1317,7 @@ ENDONE } sub row_closure { - my $output .= <<"ENDTWO"; + my $output = <<"ENDTWO"; @@ -1336,9 +1336,14 @@ sub role_select_row { my $output = &row_title($col_width,$tablecolor,$title); $output .= qq| \n|; @@ -1354,10 +1359,10 @@ sub course_select_row { |; my $courseform=''.&Apache::loncommon::selectcourse_link @@ -1376,18 +1390,18 @@ sub course_select_row { $output .= '
'.&mt('Pick courses by category:').'
'; $output .= '\n"; + $output .= &end_pick_box(); + $output .= "
\n"; $output .= &row_closure(); return $output; } @@ -1465,7 +1479,7 @@ sub email_default_row { sub submit_row { my ($col_width,$tablecolor,$title,$cmd,$submit_text) = @_; - my $output .= &row_title($col_width,$tablecolor,$title); + my $output = &row_title($col_width,$tablecolor,$title); $output .= qq|
'.$$codetitles[0].'
'."\n". '
@@ -1437,13 +1451,13 @@ sub email_default_row { my ($authtypes,$col_width,$tablecolor,$title,$descrip) = @_; my $output = &row_title($col_width,$tablecolor,$title); my @rowcols = ('#eeeeee','#dddddd'); - $output .= ' '.$descrip.' - - - + $output .= ' + '."\n"; my $rownum = 0; - foreach my $auth (sort keys (%{$authtypes})) { + foreach my $auth (sort(keys(%{$authtypes}))) { my ($userentry,$size); my $rowiter = $rownum%2; if ($auth =~ /^krb/) { @@ -1453,11 +1467,11 @@ sub email_default_row { $userentry = 'username@'; $size = 15; } - $output .= ''; + $output .= ''; $rownum ++; } - $output .= "
'.&mt('Authentication Method').'      '.&mt('Username -> e-mail conversion').''.$descrip; + $output .= &start_pick_box(''); + $output .= '
'.&mt('Authentication Method').''.&mt('Username -> e-mail conversion').'
'.$$authtypes{$auth}.'   '.$userentry.'
'.$$authtypes{$auth}.''.$userentry.'
-