--- loncom/interface/lonprintout.pm 2005/11/15 12:37:11 1.399
+++ loncom/interface/lonprintout.pm 2005/12/06 03:58:14 1.400
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Printout
#
-# $Id: lonprintout.pm,v 1.399 2005/11/15 12:37:11 albertel Exp $
+# $Id: lonprintout.pm,v 1.400 2005/12/06 03:58:14 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -908,28 +908,43 @@ sub unsupported {
#
# List of recently generated print files
#
-
sub recently_generated {
my $r=shift;
my $prtspool=$r->dir_config('lonPrtDir');
- my $result;
+ my $zip_result;
+ my $pdf_result;
opendir(DIR,$prtspool);
- while (my $filename=readdir(DIR)) {
- if ($filename=~/^$env{'user.name'}\_$env{'user.domain'}\_printout\_(\d+)\_.*.pdf$/) {
- my ($cdev,$cino,$cmode,$cnlink,
- $cuid,$cgid,$crdev,$csize,
- $catime,$cmtime,$cctime,
- $cblksize,$cblocks)=stat($prtspool.'/'.$filename);
- $result.="".
- &mt('Generated [_1] ([_2] bytes)',
- &Apache::lonlocal::locallocaltime($cctime),$csize).
- '
';
- }
- }
+
+ my @files =
+ grep(/^$env{'user.name'}_$env{'user.domain'}_printout_(\d+)_.*\.(pdf|zip)$/,readdir(DIR));
closedir(DIR);
- if ($result) {
- $r->print('