[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:38:58 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 8c545877f2232753d9b6d2a3270293a0ea73842f
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 16 21:24:08 2009 +0000

    2009-12-16  Evan Martin  <evan at chromium.org>
    
            Reviewed by Adam Barth.
    
            Early warning system server should display output as UTF-8.
    
            https://bugs.webkit.org/show_bug.cgi?id=32625
    
            * QueueStatusServer/queue_status.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52218 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index a3489d3..c4ab8e7 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,13 @@
+2009-12-16  Evan Martin  <evan at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        Early warning system server should display output as UTF-8.
+
+        https://bugs.webkit.org/show_bug.cgi?id=32625
+
+        * QueueStatusServer/queue_status.py:
+
 2009-12-16  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/QueueStatusServer/queue_status.py b/WebKitTools/QueueStatusServer/queue_status.py
index 8cc815d..d0f8e47 100644
--- a/WebKitTools/QueueStatusServer/queue_status.py
+++ b/WebKitTools/QueueStatusServer/queue_status.py
@@ -156,7 +156,7 @@ class ShowResults(webapp.RequestHandler):
         if not status:
             self.error(404)
             return
-        self.response.headers["Content-Type"] = "text/plain"
+        self.response.headers["Content-Type"] = "text/plain; charset=utf-8"
         self.response.out.write(status.results_file)
 
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list