[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

kinuko at chromium.org kinuko at chromium.org
Wed Dec 22 18:05:22 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 23e25a749978e5cca1532a7ae75e89bfe7735173
Author: kinuko at chromium.org <kinuko at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 7 00:07:01 2010 +0000

    2010-12-06  Kinuko Yasuda  <kinuko at chromium.org>
    
            Reviewed by Ojan Vafai.
    
            Make TestResultsServer return 404 for non-existing results files.
            https://bugs.webkit.org/show_bug.cgi?id=50581
    
            * TestResultServer/handlers/testfilehandler.py:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73409 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index f4939f9..67352cd 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-06  Kinuko Yasuda  <kinuko at chromium.org>
+
+        Reviewed by Ojan Vafai.
+
+        Make TestResultsServer return 404 for non-existing results files.
+        https://bugs.webkit.org/show_bug.cgi?id=50581
+
+        * TestResultServer/handlers/testfilehandler.py:
+
 2010-12-06  Tony Chang  <tony at chromium.org>
 
         Reviewed by Ojan Vafai.
diff --git a/WebKitTools/TestResultServer/handlers/testfilehandler.py b/WebKitTools/TestResultServer/handlers/testfilehandler.py
index 1e31206..6f0ca44 100644
--- a/WebKitTools/TestResultServer/handlers/testfilehandler.py
+++ b/WebKitTools/TestResultServer/handlers/testfilehandler.py
@@ -158,7 +158,8 @@ class GetFile(webapp.RequestHandler):
         if json:
             self.response.headers["Content-Type"] = "text/plain; charset=utf-8"
             self.response.out.write(json)
-
+        else:
+            self.error(404)
 
 class Upload(webapp.RequestHandler):
     """Upload test results file to datastore."""

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list