[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:22:54 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit e758045936b7820ffe9d9509ca74bcc6a740ba17
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 7 07:53:48 2009 +0000

    2009-12-06  Eric Seidel  <eric at webkit.org>
    
            Reviewed by Adam Barth.
    
            Add an API for uploading results files to StatusBot
            https://bugs.webkit.org/show_bug.cgi?id=32210
    
            Add Content-Type: plain/text which was forgotten
            from the previous commit when I landed with land-patches
            instead of land-diff.
    
            * QueueStatusServer/queue_status.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51754 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index ed46f5f..b238a5f 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -5,6 +5,29 @@
         Add an API for uploading results files to StatusBot
         https://bugs.webkit.org/show_bug.cgi?id=32210
 
+        Add Content-Type: plain/text which was forgotten
+        from the previous commit when I landed with land-patches
+        instead of land-diff.
+
+        * QueueStatusServer/queue_status.py:
+
+2009-12-06  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by Adam Barth.
+
+        Status Server needs a way to handle uploaded results
+        https://bugs.webkit.org/show_bug.cgi?id=32209
+
+        * QueueStatusServer/queue_status.py: Add a ShowResults (results/*) command
+        * QueueStatusServer/update_status.html: Add file upload.
+
+2009-12-06  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by Adam Barth.
+
+        Add an API for uploading results files to StatusBot
+        https://bugs.webkit.org/show_bug.cgi?id=32210
+
         * Scripts/modules/statusbot.py:
 
 2009-12-06  Eric Seidel  <eric at webkit.org>
diff --git a/WebKitTools/QueueStatusServer/queue_status.py b/WebKitTools/QueueStatusServer/queue_status.py
index bc0c82a..65197bb 100644
--- a/WebKitTools/QueueStatusServer/queue_status.py
+++ b/WebKitTools/QueueStatusServer/queue_status.py
@@ -156,6 +156,7 @@ class ShowResults(webapp.RequestHandler):
         if not status:
             self.error(404)
             return
+        self.response.headers["Content-Type"] = "text/plain"
         self.response.out.write(status.results_file)
 
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list