]> git.sur5r.net Git - bacula/bacula/commitdiff
Display the job_zoom view when backup is finished
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 28 Jul 2009 14:52:29 +0000 (14:52 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 28 Jul 2009 14:52:29 +0000 (14:52 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@9114 91ce42f0-d328-0410-95d8-f526ca767f89

gui/bweb/lib/Bweb.pm
gui/bweb/technotes-3.0

index c7f0b4d37f0a9e029958a0f101d63a73fbad1619..d26663615481d15edf0975d500d79b9691d18351 100644 (file)
@@ -4027,7 +4027,6 @@ WHERE Job.JobId = $arg->{jobid}
 ";
 
     my $row = $self->dbh_selectrow_hashref($query);
-    my $status = $row->{jobstatus};
 
     if ($row) {
         $arg->{client} = $row->{name};
@@ -4035,6 +4034,14 @@ WHERE Job.JobId = $arg->{jobid}
         return $self->error("Can't get client");
     }
 
+    my $status = $row->{jobstatus};
+
+    if ($status =~ /[TfAaEWD]/) {
+       $bweb->display_job_zoom($arg->{jobid});
+       $bweb->get_job_log();
+        return;
+    }
+
     if ($row->{type} eq 'B') {
         # for jobfiles, we use only last Full backup. status client= returns
         # all files that have been checked
index 1a1e11bc661bc20295eec7e60d7d6f672fa8c328..8499c49ea8bcb0d790c6733943d5dc98573bbf21 100644 (file)
@@ -1,3 +1,5 @@
+28Jul09
+ebl  Display the job_zoom view when backup is finished
 24Jul09
 ebl  Fix Expired option in media list to select Used media
 23Jul09