⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 94055 in webkit


Ignore:
Timestamp:
Aug 30, 2011, 12:47:22 AM (15 years ago)
Author:
commit-queue@webkit.org
Message:

[WebSocket] update pywebsocket to 0.6b4.
https://bugs.webkit.org/show_bug.cgi?id=66924

Patch by Takashi Toyoshima <toyoshim@chromium.org> on 2011-08-30
Reviewed by Kent Tamura.

pywebsocket 0.6b2 supported minimum features of Hybi-08 specification.
Now, pywebsocket 0.6b4 supports full features of Hybi-10 specification.
0.6b3 or later supports a closing handshake handler and it is useful to
verify client's closing handshake implementation.
0.6b4 supports AbortedByUserException. It is useful to eliminate
unnecessary server warning messages on intended abnormal closures.

  • Scripts/webkitpy/thirdparty/init.py:

Update download URL and directory path.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r94036 r94055  
     12011-08-30  Takashi Toyoshima  <toyoshim@chromium.org>
     2
     3        [WebSocket] update pywebsocket to 0.6b4.
     4        https://bugs.webkit.org/show_bug.cgi?id=66924
     5
     6        Reviewed by Kent Tamura.
     7
     8        pywebsocket 0.6b2 supported minimum features of Hybi-08 specification.
     9        Now, pywebsocket 0.6b4 supports full features of Hybi-10 specification.
     10        0.6b3 or later supports a closing handshake handler and it is useful to
     11        verify client's closing handshake implementation.
     12        0.6b4 supports AbortedByUserException. It is useful to eliminate
     13        unnecessary server warning messages on intended abnormal closures.
     14
     15        * Scripts/webkitpy/thirdparty/__init__.py:
     16        Update download URL and directory path.
     17
    1182011-08-29  Tom Zakrajsek  <tomz@codeaurora.org>
    219
  • trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py

    r93776 r94055  
    140140        pywebsocket_dir = self._fs.join(_AUTOINSTALLED_DIR, "pywebsocket")
    141141        installer = AutoInstaller(target_dir=pywebsocket_dir)
    142         installer.install(url="http://pywebsocket.googlecode.com/files/mod_pywebsocket-0.6b2.tar.gz",
    143                           url_subpath="pywebsocket-0.6b2/src/mod_pywebsocket")
     142        installer.install(url="http://pywebsocket.googlecode.com/files/mod_pywebsocket-0.6b4.tar.gz",
     143                          url_subpath="pywebsocket-0.6b4/src/mod_pywebsocket")
    144144
    145145    def _install(self, url, url_subpath):
Note: See TracChangeset for help on using the changeset viewer.