[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2010-07-12 Thread John J Lee
John J Lee added the comment: There is code in PyPI project mechanize that implements this feature. That code is marked experimental though, due to lack of testing. -- nosy: +jjlee ___ Python tracker

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-08-03 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: Thanks. I've looked over your code. The logic looks good, however I'd like to propose a better design and that this not be included in 2.6. Instead of putting this functionality in the MozCookieJar class, it should be its own new Firefox3

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-07-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: sounds like a good idea to add this. yay firefox 3. i'll review it. -- assignee: -> gregory.p.smith components: +Library (Lib) nosy: +gregory.p.smith priority: -> normal type: -> feature request versions: +Python 2.6 _

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-06-20 Thread Qiangning Hong
Changes by Qiangning Hong <[EMAIL PROTECTED]>: -- nosy: +hongqn ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-04-14 Thread Gerhard Häring
Changes by Gerhard Häring <[EMAIL PROTECTED]>: -- nosy: +ghaering __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscri

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-03-13 Thread thekorn
thekorn <[EMAIL PROTECTED]> added the comment: I had some time this evening and tried to create a patch. I don't know if such a solution makes sense nor do I know if this fits in the process of fixing bugs in python. Markus -- keywords: +patch Added file: http://bugs.python.org/file9669

[issue2277] MozillaCookieJar does not support Firefox3 cookie files

2008-03-12 Thread thekorn
New submission from thekorn <[EMAIL PROTECTED]>: In Firefox 3 the cookies are stored in a sqlite database instead of a txt-file. It would be nice if cookielib.MozillaCookieJar().load() could support this. Markus -- messages: 63470 nosy: thekorn severity: normal status: open title: Mozil