Francois Gouget : testbot/web: Fix handling of tasks error messages.

Alexandre Julliard julliard at winehq.org
Wed May 14 14:39:15 CDT 2014


Module: tools
Branch: master
Commit: 02d6cb133c3d87be0ded493a8eaf96c81d48960c
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=02d6cb133c3d87be0ded493a8eaf96c81d48960c

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed May  7 16:35:37 2014 +0200

testbot/web: Fix handling of tasks error messages.

The <pre><code> tag nesting was broken for the error messages, resulting
in unreadable multi-line error messages and an inability to view the
later tasks reports.

---

 testbot/web/JobDetails.pl |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl
index b1a3186..04ec3c5 100644
--- a/testbot/web/JobDetails.pl
+++ b/testbot/web/JobDetails.pl
@@ -402,10 +402,10 @@ sub GenerateBody
             {
               print "</code></pre>\n";
             }
+            print "<br><pre><code>";
             $PrintedDll = $CurrentDll;
           }
-          print "<br>\n";
-          print "<pre><code>", $self->escapeHTML($Line), "\n";
+          print $self->escapeHTML($Line), "\n";
         }
         close ERRFILE;
       }




More information about the wine-cvs mailing list