Title: [113655] trunk/Tools
Revision
113655
Author
[email protected]
Date
2012-04-09 18:44:00 -0700 (Mon, 09 Apr 2012)

Log Message

Update pywebsocket to 0.7.4.
https://bugs.webkit.org/show_bug.cgi?id=83461

Reviewed by Kent Tamura.

This version supports TLS by using ssl in addition to pyOpenSSL.
Other functional difrerences from 0.7.2 are:
 - strict Sec-WebSocket-Key validation conforming RFC 4648
 - compression ratio logging in debug

* Scripts/webkitpy/thirdparty/__init__.py:
(AutoinstallImportHook._install_pywebsocket):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (113654 => 113655)


--- trunk/Tools/ChangeLog	2012-04-10 01:41:25 UTC (rev 113654)
+++ trunk/Tools/ChangeLog	2012-04-10 01:44:00 UTC (rev 113655)
@@ -1,3 +1,18 @@
+2012-04-09  Takashi Toyoshima  <[email protected]>
+
+        Update pywebsocket to 0.7.4.
+        https://bugs.webkit.org/show_bug.cgi?id=83461
+
+        Reviewed by Kent Tamura.
+
+        This version supports TLS by using ssl in addition to pyOpenSSL.
+        Other functional difrerences from 0.7.2 are:
+         - strict Sec-WebSocket-Key validation conforming RFC 4648
+         - compression ratio logging in debug
+
+        * Scripts/webkitpy/thirdparty/__init__.py:
+        (AutoinstallImportHook._install_pywebsocket):
+
 2012-04-09  Dirk Pranke  <[email protected]>
 
         add a webkit-patch print-baselines command

Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py (113654 => 113655)


--- trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2012-04-10 01:41:25 UTC (rev 113654)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2012-04-10 01:44:00 UTC (rev 113655)
@@ -131,8 +131,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.7.2/src/mod_pywebsocket")
+        installer.install(url=""
+                          url_subpath="pywebsocket-0.7.4/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