Doesn't work with latest moin over https
Bug #801284 reported by
James Westby
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
editmoin |
New
|
Undecided
|
Unassigned | ||
editmoin (Ubuntu) |
Fix Released
|
Undecided
|
Martin Pitt |
Bug Description
It looks like the latest moin (e.g. wiki.canonical.com) over https has changed cookiename
to MOIN_SESSION_
Something like
=== modified file 'editmoin'
--- editmoin 2011-04-11 16:51:49 +0000
+++ editmoin 2011-06-23 18:45:57 +0000
@@ -461,6 +461,9 @@
else:
# Moin < 1.7
+ cookiename = "MOIN_SESSION"
+ if url.startswith("https://"):
+ cookiename = "MOIN_SESSION_
urlopener = get_urlopener(url, cookievalue)
moinfile = fetchfile(
seems to work for this latest moin.
Thanks,
James
Related branches
To post a comment you must log in.
Obviously passing the new cookiename to the get_urlopener function.
Thanks,
James