Title: [94055] trunk/Tools
Revision
94055
Author
[email protected]
Date
2011-08-30 00:47:22 -0700 (Tue, 30 Aug 2011)

Log Message

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

Patch by Takashi Toyoshima <[email protected]> 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.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (94054 => 94055)


--- trunk/Tools/ChangeLog	2011-08-30 07:43:15 UTC (rev 94054)
+++ trunk/Tools/ChangeLog	2011-08-30 07:47:22 UTC (rev 94055)
@@ -1,3 +1,20 @@
+2011-08-30  Takashi Toyoshima  <[email protected]>
+
+        [WebSocket] update pywebsocket to 0.6b4.
+        https://bugs.webkit.org/show_bug.cgi?id=66924
+
+        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.
+
 2011-08-29  Tom Zakrajsek  <[email protected]>
 
         sheriffbot "usage" help statements are wrong

Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py (94054 => 94055)


--- trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2011-08-30 07:43:15 UTC (rev 94054)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2011-08-30 07:47:22 UTC (rev 94055)
@@ -139,8 +139,8 @@
     def _install_pywebsocket(self):
         pywebsocket_dir = self._fs.join(_AUTOINSTALLED_DIR, "pywebsocket")
         installer = AutoInstaller(target_dir=pywebsocket_dir)
-        installer.install(url=""
-                          url_subpath="pywebsocket-0.6b2/src/mod_pywebsocket")
+        installer.install(url=""
+                          url_subpath="pywebsocket-0.6b4/src/mod_pywebsocket")
 
     def _install(self, url, url_subpath):
         installer = AutoInstaller(target_dir=_AUTOINSTALLED_DIR)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to