Helpviewer/FlashCookieManager/FlashCookieManager.py

changeset 4370
54dbb658f9e6
parent 4361
9eec3a532d59
child 4631
5c1a96925da4
diff -r 4ef6ecc62a9d -r 54dbb658f9e6 Helpviewer/FlashCookieManager/FlashCookieManager.py
--- a/Helpviewer/FlashCookieManager/FlashCookieManager.py	Sun Aug 16 15:02:46 2015 +0200
+++ b/Helpviewer/FlashCookieManager/FlashCookieManager.py	Sun Aug 16 15:34:40 2015 +0200
@@ -116,6 +116,8 @@
         
         @param cookie Flash cookie to be tested
         @type FlashCookie
+        @return flag indicating a blacklisted cookie
+        @rtype bool
         """
         return cookie.origin in Preferences.getHelp("FlashCookiesBlacklist")
     
@@ -125,6 +127,8 @@
         
         @param cookie Flash cookie to be tested
         @type FlashCookie
+        @return flag indicating a whitelisted cookie
+        @rtype bool
         """
         return cookie.origin in Preferences.getHelp("FlashCookiesWhitelist")
     
@@ -198,7 +202,7 @@
             newCookie = True
             for oldCookie in oldFlashCookies:
                 if (oldCookie.path + oldCookie.name ==
-                    cookie.path + cookie.name):
+                        cookie.path + cookie.name):
                     newCookie = False
                     break
             
@@ -327,10 +331,10 @@
             if "/" in origin:
                 origin = origin.split("/", 1)[1]
         elif path.startswith(
-            self.flashPlayerDataPath() + 
+            self.flashPlayerDataPath() +
                 "/macromedia.com/support/flashplayer/sys/"):
             origin = origin.replace(
-                self.flashPlayerDataPath() + 
+                self.flashPlayerDataPath() +
                 "/macromedia.com/support/flashplayer/sys/", "")
             if origin == "settings.sol":
                 return self.tr("!default")

eric ide

mercurial