--- loncom/interface/portfolio.pm 2009/05/19 20:58:51 1.212.2.1 +++ loncom/interface/portfolio.pm 2009/04/21 23:25:03 1.213 @@ -1,7 +1,7 @@ # The LearningOnline Network # portfolio browser # -# $Id: portfolio.pm,v 1.212.2.1 2009/05/19 20:58:51 raeburn Exp $ +# $Id: portfolio.pm,v 1.213 2009/04/21 23:25:03 droeschl Exp $ # # Copyright Michigan State University Board of Trustees # @@ -158,7 +158,6 @@ END 'fieldname' => $env{"form.fieldname"}, 'continue' => $env{"form.continue"} ); - $r->print('<br clear="all" />'); $r->print('<span class="LC_current_location">'.&make_anchor($url,\%anchor_fields,$port_path).'/'); if (@tree > 1){ my $newCurrentPath = '/'; @@ -236,7 +235,7 @@ sub display_directory_line { $r->print($line); # contains first two cells of table my $lock_info; if ($version_flag) { # versioned can't be versioned, so TRUE when root file - $r->print('<td><img alt="" src="'.&Apache::loncommon::icon($filename).'" /></td>'); + $r->print('<td><img alt="" src="'.&Apache::loncommon::icon($filename).'" class="LC_fileicon" /></td>'); $r->print('<td>'.$version_flag.'</td>'); } else { # this is a graded or handed back file my ($user,$domain) = &get_name_dom($env{'form.group'}); @@ -414,7 +413,7 @@ sub display_directory { $colspan_fill=' colspan="4"'; } $r->print('<tr class="LC_browser_folder">'); - $r->print('<td'.$colspan_folder.'><img alt="'.&mt('closed folder').'" src="'.$iconpath.'folder_closed.gif" /></td>' + $r->print('<td'.$colspan_folder.'><img alt="'.&mt('closed folder').'" src="'.$iconpath.'navmap.folder.closed.gif" class="LC_fileicon" /></td>' .'<td>'.&mt('Go to ...').'</td>'); my %anchor_fields = ( 'selectfile' => $filename.'/', @@ -522,7 +521,7 @@ sub display_directory { <input type="hidden" name="mode" value="selectfile" /> <p> <input type="submit" name="submit" value="'.&mt('Select checked files, and continue selecting').'" /><br /> - <input type="button" name="doit" onClick="finishSelect();" value="'.&mt('Select checked files, and close window').'" /> + <input type="button" name="doit" onClick= "finishSelect();" value="'.&mt('Select checked files, and close window').'" /> </p> <input type="hidden" name="currentpath" value="'.$current_path.'" /> </form>'); @@ -1546,13 +1545,13 @@ sub course_row { $r->print('</table>'); } $r->print('<br />'.&mt('Add a roles-based condition'). - ' <input type="checkbox" name="add_role_'. + ' <input type="checkbox" name ="add_role_'. $num.'" onClick="javascript:setRoleOptions('."'$num', '$max_id','$content->{'domain'}','$content->{'number'}', '$uctype'".')" value="" />'); $newrole_id = $max_id; } else { - $r->print('<input type="hidden" name="add_role_'.$num.'" value="" />'); + $r->print('<input type="hidden" name ="add_role_'.$num.'" value="" />'); } $r->print(&add_course_role($num,$newrole_id)); $r->print('</td>'); @@ -1580,7 +1579,7 @@ sub domains_row { foreach my $dom (@{$all_doms}) { if ((@{$content->{'dom'}} > 0) && (grep(/^\Q$dom\E$/,@{$content->{'dom'}}))) { - $dom_select .= '<option value="'.$dom.'" selected="selected">'. + $dom_select .= '<option value="'.$dom.'" selected>'. $dom.'</option>'; } else { $dom_select .= '<option value="'.$dom.'">'.$dom.'</option>'; @@ -1722,7 +1721,7 @@ sub role_selectors { if ($caller eq 'display') { if ((@{$$content{'roles'}{$role_id}{$item}} > 0) && (grep(/^\Q$entry\E$/,@{$$content{'roles'}{$role_id}{$item}}))) { - $output .= ' <option value="'.$entry.'" selected="selected">'. + $output .= ' <option value="'.$entry.'" selected>'. $lookup{$item}{$entry}.'</option>'; next; } @@ -2274,7 +2273,7 @@ sub handler { } else { ($uname,$udom) = &get_name_dom(); $portfolio_root = &get_portfolio_root(); - $title = &mt('Portfolio Manager'); + $title = &mt('My Space'); $can_modify = 1; $can_delete = 1; $can_upload = 1;