' . &mt('New RSS Feed or Blog'). '
'); + $r->print('' . &mt('New RSS Feed or Blog'). '
'); $r->print(''); } if ($displayfeedname) { # this is an existing feed @@ -510,13 +536,13 @@ sub handler { # Render private items? my $viewpubliconly=1; $r->print("\n". - ($html?'':'').
+ ($html?'
':'').
&mt('LON-CAPA Feed "[_1]" for [_2]',$displayfeedname,$name).
($displayoption eq 'hidden'?' ('.&mt('Hidden').')':'').
($html?'
'.($edit?' '));
+ $displayfeedname.'" />':'').'
':''));
if (($env{'user.name'} eq $uname) && ($env{'user.domain'} eq $udom)) {
$viewpubliconly=0;
}
@@ -534,11 +560,28 @@ sub handler {
'title' => 'Title',
'link' => 'Link',
'description' => 'Description',
- 'enc' => 'Podcasted enclosure');
+ 'enc' => 'Podcasted enclosure',
+ 'status' => 'Status');
my $uploadlink;
if ($entry==$newid) {
# Generate upload link only for last (new) entry
- $uploadlink=&Apache::inputtags::file_selector(0,0,'*','both');
+# Calculate the quota space available in the user's portfolio
+ my $disk_quota = &Apache::loncommon::get_user_quota($env{'user.name'},
+ $env{'user.domain'}); # expressed in MB
+ my $portfolio_root = '/userfiles/portfolio';
+ my $getpropath = 1;
+ my $current_disk_usage = &Apache::lonnet::diskusage(
+ $env{'user.domain'}, $env{'user.name'},
+ $portfolio_root, $getpropath); # Expressed in kB
+ # Convert to MB for use in file_selector()
+ my $free_space = $disk_quota - ($current_disk_usage / 1024.);
+ # Format this number since it will be displayed onscreen
+ $free_space = sprintf("%.1f", $free_space);
+ my $fileclass = 'LC_left';
+ my $notitle = 1;
+ $uploadlink = &Apache::lonhtmlcommon::start_pick_box().
+ &Apache::inputtags::file_selector(0,0,'*','both','',$free_space,$fileclass,$notitle).
+ &Apache::lonhtmlcommon::end_pick_box();
} else {
# Otherwise, display
$uploadlink=''.$newsfeed{$id.'_enclosureurl'}.''.
@@ -552,6 +595,7 @@ sub handler {
-
+
+
+
+
+
$lt{'enc'} -
$uploadlink
@@ -617,7 +664,7 @@ ENDEDIT
$r->print('');
}
} # was a real display feedname
- $r->print(($html?&Apache::loncommon::end_page():'
':'').
&mt('LON-CAPA Feed "[_1]" for [_2]',$displayfeedname,$name).
($displayoption eq 'hidden'?' ('.&mt('Hidden').')':'').
($html?'
'.($edit?'+
+
+
$lt{'enc'} - $uploadlink