[PATCH] testbot/web: Remove the live screenshot code.

Francois Gouget fgouget at codeweavers.com
Fri Jun 15 04:57:03 CDT 2018


When 'live snapshots' are supported again it will likely 
be in a different form so remove the cruft.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/web/JobDetails.pl | 24 +-----------------------
 1 file changed, 1 insertion(+), 23 deletions(-)

diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl
index 3e638f717..70d8b5983 100644
--- a/testbot/web/JobDetails.pl
+++ b/testbot/web/JobDetails.pl
@@ -257,30 +257,8 @@ sub GenerateBody($)
     my $Screenshot = $self->GetParam($ScreenshotParamName);
     $Screenshot = "" if ($Screenshot ne "1");
 
-
     print "<div class='TaskMoreInfoLinks'>\n";
-    # FIXME: Disable live screenshots for now
-    if (0 && $StepTask->Status eq "running" &&
-        ($StepTask->Type eq "single" || $StepTask->Type eq "suite"))
-    {
-      if ($Screenshot)
-      {
-        my $URI = "/Screenshot.pl?VMName=" . uri_escape($VM->Name);
-        print "<div class='Screenshot'><img src='" .
-              $self->CGI->escapeHTML($URI) . "' alt='Screenshot' /></div>\n";
-      }
-      else
-      {
-        my $URI = $ENV{"SCRIPT_NAME"} . "?Key=" . uri_escape($self->{JobId}) .
-                  "&$ScreenshotParamName=1";
-        $URI .= "#k" . uri_escape($Key);
-        print "<div class='TaskMoreInfoLink'><a href='" .
-              $self->CGI->escapeHTML($URI) .
-              "'>Show live screenshot</a></div>";
-        print "\n";
-      }
-    }
-    elsif (-r "$TaskDir/screenshot.png")
+    if (-r "$TaskDir/screenshot.png")
     {
       if ($Screenshot)
       {
-- 
2.17.1




More information about the wine-devel mailing list