--- loncom/interface/portfolio.pm 2004/09/10 20:48:33 1.45 +++ loncom/interface/portfolio.pm 2004/11/09 21:51:14 1.55 @@ -37,16 +37,17 @@ sub make_anchor { my $anchor = ''.$filename.''; return $anchor; } - my $dirptr=16384; -sub display_directory { +sub display_common { my ($r,$current_path,$is_empty,$dir_list)=@_; my $iconpath= $r->dir_config('lonIconsURL') . "/"; $r->print('
');
my $displayOut = '';
$r->print($displayOut);
@@ -54,6 +55,8 @@ sub display_directory {
$displayOut = '';
$r->print($displayOut);
@@ -69,20 +72,30 @@ sub display_directory {
}
$r->print('');
&Apache::lonhtmlcommon::store_recent('portfolio',$current_path,$current_path);
- #Fixme -- remove from recent those paths that are deleted
$r->print(' "); +} +sub display_directory { + my ($r,$current_path,$is_empty,$dir_list)=@_; + my $iconpath= $r->dir_config('lonIconsURL') . "/"; + my $display_out; + my %locked_files=&Apache::lonnet::dump('file_permissions', + $ENV{'user.domain'},$ENV{'user.name'}); + my $locked_file; + foreach my $key (keys %locked_files) { + $locked_file .= $locked_files{$key}.':'; + } if ($is_empty && ($current_path ne '/')) { - $displayOut = ''; - $r->print($displayOut); + $r->print($display_out); return; } $r->print('
'.&mt('Done').''); + $ENV{'form.currentpath'}. + '&fieldname='.$ENV{'form.fieldname'}. + '">'.&mt('Done').''); } sub delete { my ($r)=@_; - &open_form($r); - $r->print(''.&mt('Delete').' '.&display_file().'? '); - &close_form($r); + my @check; + my $file_name = $ENV{'form.currentpath'}.$ENV{'form.selectfile'}; + push @check, $file_name; + my %locked = &Apache::lonnet::get('file_permissions',\@check, + $ENV{'user.domain'},$ENV{'user.name'}); + if (ref($locked{$file_name}) eq 'ARRAY') { + $r->print ("The file is locked and cannot be deleted."); + $r->print(&done()); + } else { + &open_form($r); + $r->print(' '.&mt('Delete').' '.&display_file().'? '); + &close_form($r); + } } sub delete_confirmed { @@ -228,10 +314,20 @@ sub delete_dir_confirmed { sub rename { my ($r)=@_; - &open_form($r); - $r->print(''.&mt('Rename').' '.&display_file().' to - ? '); - &close_form($r); + my @check; + my $file_name = $ENV{'form.currentpath'}.$ENV{'form.selectfile'}; + push @check, $file_name; + my %locked = &Apache::lonnet::get('file_permissions',\@check, + $ENV{'user.domain'},$ENV{'user.name'}); + if (ref($locked{$file_name}) eq 'ARRAY') { + $r->print ("The file is locked and cannot be renamed."); + $r->print(&done()); + } else { + &open_form($r); + $r->print(' '.&mt('Rename').' '.&display_file().' to + ? '); + &close_form($r); + } } sub rename_confirmed { @@ -255,7 +351,30 @@ sub rename_confirmed { } $r->print(&done()); } - +sub select_files { + my ($r)=@_; + my $java_script =(<Select portfolio files+ Check as many as you wish in response to the essay problem."); +} sub upload { my ($r)=@_; my $fname=$ENV{'form.uploaddoc.filename'}; @@ -335,7 +454,7 @@ sub createdir { sub handler { # this handles file management my $r = shift; - my $portfolio_root = &Apache::loncommon::propath($ENV{'user.domain'}, + my $portfolio_root = &Apache::loncommon::propath($ENV{'user.domain'}, $ENV{'user.name'}). '/userfiles/portfolio'; &Apache::loncommon::no_cache($r); @@ -349,7 +468,7 @@ sub handler { $r->rflush(); &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['selectfile','currentpath', - 'currentfile']); + 'currentfile','action','fieldname','mode']); if (($ENV{'form.storeupl'} eq 'Upload') & (!$ENV{'form.uploaddoc.filename'})){ $r->print(' No file was selected to upload.'. 'To upload a file, click Browse...'. @@ -379,28 +498,36 @@ sub handler { my @dir_list=&Apache::lonnet::dirlist($current_path, $ENV{'user.domain'}, $ENV{'user.name'},$portfolio_root); - if ($dir_list[0] eq 'no_such_dir'){ - # two main reasons for this: 1) never been here, so directory structure not created - # 2) back-button navigation after deleting a directory - if ($current_path eq '/'){ + if ($dir_list[0] eq 'no_such_dir'){ + # two main reasons for this: + # 1) never been here, so directory structure not created + # 2) back-button navigation after deleting a directory + if ($current_path eq '/'){ &Apache::lonnet::mkdiruserfile($ENV{'user.name'}, - $ENV{'user.domain'},'portfolio'); - } else { # some directory that snuck in - # get rid of the directory from the recent pulldown, just in case - &Apache::lonhtmlcommon::remove_recent('portfolio',[$current_path]); - $current_path = '/'; # force it back to the root - } - # now grab the directory list again, for the first time - @dir_list=&Apache::lonnet::dirlist($current_path, - $ENV{'user.domain'}, - $ENV{'user.name'},$portfolio_root); - + $ENV{'user.domain'},'portfolio'); + } else { + # some directory that snuck in get rid of the directory + # from the recent pulldown, just in case + &Apache::lonhtmlcommon::remove_recent('portfolio', + [$current_path]); + $current_path = '/'; # force it back to the root + } + # now grab the directory list again, for the first time + @dir_list=&Apache::lonnet::dirlist($current_path, + $ENV{'user.domain'}, + $ENV{'user.name'},$portfolio_root); } - # need to know if directory is empty so it can be removed if desired - my $is_empty=(@dir_list == 2); + # need to know if directory is empty so it can be removed if desired + my $is_empty=(@dir_list == 2); + &display_common($r,$current_path,$is_empty,\@dir_list); + if ($ENV{"form.mode"} eq 'selectfile'){ + &select_files($r); + &display_file_select($r,$current_path,$is_empty,\@dir_list); + } else { &display_directory($r,$current_path,$is_empty,\@dir_list); - $r->print(" |