Changeset 96666 in webkit


Ignore:
Timestamp:
Oct 4, 2011 5:52:18 PM (13 years ago)
Author:
abarth@webkit.org
Message:

garden-o-matic doesn't launch it's UI on Lion
https://bugs.webkit.org/show_bug.cgi?id=69349

Reviewed by Darin Adler.

It turns out that Lion is a bit more picky about file URLs. This patch
switches us from using a path to using an actual file URL, silencing
the warning and making the tool actually launch on Lion.

  • Scripts/webkitpy/tool/servers/gardeningserver.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r96664 r96666  
     12011-10-04  Adam Barth  <abarth@webkit.org>
     2
     3        garden-o-matic doesn't launch it's UI on Lion
     4        https://bugs.webkit.org/show_bug.cgi?id=69349
     5
     6        Reviewed by Darin Adler.
     7
     8        It turns out that Lion is a bit more picky about file URLs.  This patch
     9        switches us from using a path to using an actual file URL, silencing
     10        the warning and making the tool actually launch on Lion.
     11
     12        * Scripts/webkitpy/tool/servers/gardeningserver.py:
     13
    1142011-10-04  Daniel Bates  <dbates@rim.com>
    215
  • trunk/Tools/Scripts/webkitpy/tool/servers/gardeningserver.py

    r96474 r96666  
    9090
    9191    def url(self):
    92         return os.path.join(GardeningHTTPRequestHandler.STATIC_FILE_DIRECTORY, 'garden-o-matic.html')
     92        return 'file://' + os.path.join(GardeningHTTPRequestHandler.STATIC_FILE_DIRECTORY, 'garden-o-matic.html')
    9393
    9494
Note: See TracChangeset for help on using the changeset viewer.