Diff for /loncom/publisher/lonretrieve.pm between versions 1.5 and 1.9

version 1.5, 2001/04/04 03:59:15 version 1.9, 2001/05/02 23:00:05
Line 11 Line 11
 # 03/23 Guy Albertelli  # 03/23 Guy Albertelli
 # 03/24,03/29 Gerd Kortemeyer)  # 03/24,03/29 Gerd Kortemeyer)
 #  #
 # 03/31,04/03 Gerd Kortemeyer  # 03/31,04/03,05/02 Gerd Kortemeyer
   
 package Apache::lonretrieve;  package Apache::lonretrieve;
   
Line 31  sub phaseone { Line 31  sub phaseone {
     my $resdir=$resfn;      my $resdir=$resfn;
     $resdir=~s/\/[^\/]+$/\//;      $resdir=~s/\/[^\/]+$/\//;
   
     $fn=~/^\/(.+)\.(\w+)$/;      $fn=~/\/([^\/]+)\.(\w+)$/;
     my $main=$1;      my $main=$1;
     my $suffix=$2;      my $suffix=$2;
     
       if (-e $resfn) {  
     $r->print('<form action=/adm/retrieve method=post>'.      $r->print('<form action=/adm/retrieve method=post>'.
       '<input type=hidden name=filename value="'.$fn.'">'.        '<input type=hidden name=filename value="'.$fn.'">'.
               '<input type=hidden name=phase value=two>'.                '<input type=hidden name=phase value=two>'.
Line 54  sub phaseone { Line 55  sub phaseone {
                      $version.'"></td><th>'.$version.'</th><td>'.                       $version.'"></td><th>'.$version.'</th><td>'.
                      localtime($rmtime).'</td><td>'.                       localtime($rmtime).'</td><td>'.
                      '<a href="'.$urldir.$filename.'.meta" target=cat>'.                       '<a href="'.$urldir.$filename.'.meta" target=cat>'.
                      'Metadata Version '.$version.'</a></td></tr>');                       'Metadata Version '.$version.'</a>');
              if (&Apache::lonnet::fileembstyle($suffix) eq 'ssi') {
                  $r->print(
                       '&nbsp;&nbsp;<a target=cat href="/adm/diff?filename='.$fn.
                           '&versionone=priv&versiontwo='.$version.
                           '">Diffs with Version '.$version.'</a>');
              }
              $r->print('</a></td></tr>');
         }          }
     }      }
     closedir(DIR);      closedir(DIR);
Line 65  sub phaseone { Line 73  sub phaseone {
     $r->print('<tr><td><input type=radio name=version value="new"></td>'.      $r->print('<tr><td><input type=radio name=version value="new"></td>'.
               '<th>Current</th><td>'.localtime($rmtime).                '<th>Current</th><td>'.localtime($rmtime).
            '</td><td><a href="'.$urldir.$main.'.'.$suffix.'.meta" target=cat>'.             '</td><td><a href="'.$urldir.$main.'.'.$suffix.'.meta" target=cat>'.
               'Metadata current version</a></td></tr></table><p>'.                'Metadata current version</a>');           
              if (&Apache::lonnet::fileembstyle($suffix) eq 'ssi') {
                  $r->print(
                       '&nbsp;&nbsp;<a target=cat href="/adm/diff?filename='.$fn.
                           '&versionone=priv'.
                           '">Diffs with current Version</a>');
              }
              $r->print('</td></tr></table><p>'.
            '<font size=+1 color=red>Retrieval of an old version will '.             '<font size=+1 color=red>Retrieval of an old version will '.
            'overwrite the file currently in construction space</font><p>'.             'overwrite the file currently in construction space</font><p>'.
            '<input type=submit value="Retrieve version"></form>');             '<input type=submit value="Retrieve version"></form>');
   } else {
       $r->print('<h3>No previous versions published.</h3>');
   }
 }  }
   
 sub phasetwo {  sub phasetwo {
Line 158  sub handler { Line 176  sub handler {
   $r->print('</body></html>');    $r->print('</body></html>');
   return OK;      return OK;  
 }  }
   
   1;
   __END__

Removed from v.1.5  
changed lines
  Added in v.1.9


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>