Changeset 94055 in webkit
- Timestamp:
- Aug 30, 2011, 12:47:22 AM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/thirdparty/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r94036 r94055 1 2011-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 1 18 2011-08-29 Tom Zakrajsek <tomz@codeaurora.org> 2 19 -
trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py
r93776 r94055 140 140 pywebsocket_dir = self._fs.join(_AUTOINSTALLED_DIR, "pywebsocket") 141 141 installer = AutoInstaller(target_dir=pywebsocket_dir) 142 installer.install(url="http://pywebsocket.googlecode.com/files/mod_pywebsocket-0.6b 2.tar.gz",143 url_subpath="pywebsocket-0.6b 2/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") 144 144 145 145 def _install(self, url, url_subpath):
Note:
See TracChangeset
for help on using the changeset viewer.