[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Tue Jan 5 23:51:22 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 866132fd2ff409e7bccb9872205e29cef8501c94
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