[LON-CAPA-cvs] cvs: loncom(version_2_9_X) /interface portfolio.pm
raeburn
raeburn@source.lon-capa.org
Tue, 19 May 2009 20:58:51 -0000
raeburn Tue May 19 20:58:51 2009 EDT
Modified files: (Branch: version_2_9_X)
/loncom/interface portfolio.pm
Log:
- Backport 1.214, 1.215.
- Remove change in 1.211 for now.
Index: loncom/interface/portfolio.pm
diff -u loncom/interface/portfolio.pm:1.212 loncom/interface/portfolio.pm:1.212.2.1
--- loncom/interface/portfolio.pm:1.212 Sun Mar 8 21:49:33 2009
+++ loncom/interface/portfolio.pm Tue May 19 20:58:51 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network
# portfolio browser
#
-# $Id: portfolio.pm,v 1.212 2009/03/08 21:49:33 weissno Exp $
+# $Id: portfolio.pm,v 1.212.2.1 2009/05/19 20:58:51 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -158,6 +158,7 @@
'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 = '/';
@@ -521,7 +522,7 @@
<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>');
@@ -1545,13 +1546,13 @@
$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>');
@@ -1579,7 +1580,7 @@
foreach my $dom (@{$all_doms}) {
if ((@{$content->{'dom'}} > 0)
&& (grep(/^\Q$dom\E$/,@{$content->{'dom'}}))) {
- $dom_select .= '<option value="'.$dom.'" selected>'.
+ $dom_select .= '<option value="'.$dom.'" selected="selected">'.
$dom.'</option>';
} else {
$dom_select .= '<option value="'.$dom.'">'.$dom.'</option>';
@@ -1721,7 +1722,7 @@
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>'.
+ $output .= ' <option value="'.$entry.'" selected="selected">'.
$lookup{$item}{$entry}.'</option>';
next;
}
@@ -2273,7 +2274,7 @@
} else {
($uname,$udom) = &get_name_dom();
$portfolio_root = &get_portfolio_root();
- $title = &mt('My Space');
+ $title = &mt('Portfolio Manager');
$can_modify = 1;
$can_delete = 1;
$can_upload = 1;