Changeset 51754 in webkit


Ignore:
Timestamp:
Dec 6, 2009 11:53:48 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-06 Eric Seidel <eric@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:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51753 r51754  
     12009-12-06  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add an API for uploading results files to StatusBot
     6        https://bugs.webkit.org/show_bug.cgi?id=32210
     7
     8        Add Content-Type: plain/text which was forgotten
     9        from the previous commit when I landed with land-patches
     10        instead of land-diff.
     11
     12        * QueueStatusServer/queue_status.py:
     13
     142009-12-06  Eric Seidel  <eric@webkit.org>
     15
     16        Reviewed by Adam Barth.
     17
     18        Status Server needs a way to handle uploaded results
     19        https://bugs.webkit.org/show_bug.cgi?id=32209
     20
     21        * QueueStatusServer/queue_status.py: Add a ShowResults (results/*) command
     22        * QueueStatusServer/update_status.html: Add file upload.
     23
    1242009-12-06  Eric Seidel  <eric@webkit.org>
    225
  • trunk/WebKitTools/QueueStatusServer/queue_status.py

    r51752 r51754  
    157157            self.error(404)
    158158            return
     159        self.response.headers["Content-Type"] = "text/plain"
    159160        self.response.out.write(status.results_file)
    160161
Note: See TracChangeset for help on using the changeset viewer.