--- loncom/publisher/lonretrieve.pm 2006/01/31 22:37:04 1.29 +++ loncom/publisher/lonretrieve.pm 2006/09/19 21:47:29 1.32 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to retrieve an old version of a file # -# $Id: lonretrieve.pm,v 1.29 2006/01/31 22:37:04 albertel Exp $ +# $Id: lonretrieve.pm,v 1.32 2006/09/19 21:47:29 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -51,67 +51,87 @@ sub phaseone { my $resdir=$resfn; $resdir=~s/\/[^\/]+$/\//; - $fn=~/\/([^\/]+)\.(\w+)$/; - my $main=$1; - my $suffix=$2; - + my ($main,$suffix,$is_meta) = &get_file_info($fn); + if (-e $resfn) { - $r->print('
'); -} else { - $r->print(''.&mt('Copying file').': '); - if (copy($csource,$ctarget)) { + if (copy($csource,$ctarget)) { $r->print('ok
'); print $logfile "Copied sucessfully.\n\n"; } else { @@ -152,12 +179,23 @@ sub phasetwo { $r->print(''.&mt('Back to').' '.$fn.''); } else { - $r->print( - ''.&mt('Please pick a version to retrieve').'
'); + $r->print(''.&mt('Please pick a version to retrieve').'
'); &phaseone($r,$fn,$uname,$udom); } } +sub get_file_info { + my ($fn) = @_; + my ($main,$suffix) = ($fn=~/\/([^\/]+)\.(\w+)$/); + my $is_meta=0; + if ($suffix eq 'meta') { + $is_meta = 1; + ($main,$suffix) = ($main=~/(.+)\.(\w+)$/); + $suffix .= '.meta'; + } + return ($main,$suffix,$is_meta); +} + # ---------------------------------------------------------------- Main Handler sub handler { @@ -205,17 +243,15 @@ sub handler { &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; - $r->print('