Re: Cookie storage



Hey

On 5/26/08, Keywan Najafi Tonekaboni <lists prometoys net> wrote:
> Hi,
>
>  where does Epiphany 2.22  save the cookies? I would like to create a
>  workaround by deleting the cookies everytime I log out. The flashplugin
>  crashes at the moment Epiphany too much, so the about:config workaround
>  is not sufficient for me anymore.
>

If you are using Ubuntu or Pulseaudio, then it's not related to
cookies (I would doubt it is related to cookies anyway). It's a known
bug, pulseaudio exposes a bug in flash's use of alsa.

>  BTW: please add a feature to cleanup cookies by every logout/closed
>  session/day/anything regular and automatic. It's not about clean, simple
>  interface, it's about privacy issues and these should be respected, even
>  though you have another opinion.
>

There's an option in Edit > Personal data for this, it's not automatic
though. Maybe you could try to hack an extension with Python, I guess
it would be a matter of calling the cleanup function like in the C
source:

            EphyCookieManager *manager;

            manager = EPHY_COOKIE_MANAGER (ephy_embed_shell_get_embed_single
                               (EPHY_EMBED_SHELL (ephy_shell)));

            ephy_cookie_manager_clear (manager);

This is what you want if I'm not mistaken:

>>> epiphany.EmbedShell().get_embed_single().clear()
<built-in method clear of __main__.MozillaEmbedSingle object at 0x8609194>

That one, you have to code your extension to be aware of the last
closed window, and not just on any closed window, there are plenty of
examples in the wiki:
  http://live.gnome.org/Epiphany/ThirdPartyExtensions

greetings


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]