Patches item #2477551, was opened at 2008-12-30 18:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2477551...
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Pass "sysop" through wikipedia.put()
Initial Comment: This allows the use of the sysop account to be forced; useful for eg closing XfD discussions where for transparency the admin account must be seen to make the change.
Changes:
wikipedia.py: @@ line 1326: -- force=False): ++ force=False, sysop=sysop):
@@ line 1342: -- sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = False) ++ sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = sysop)
Default behavior is unchanged.
Feel free to contact me: happy <underscore> melon <at> hotmail <dot> co <dot> uk
----------------------------------------------------------------------
You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2477551...
On Tue, December 30, 2008 7:56 pm, SourceForge.net wrote:
Initial Comment: This allows the use of the sysop account to be forced; useful for eg closing XfD discussions where for transparency the admin account must be seen to make the change.
Changes:
wikipedia.py: @@ line 1326: -- force=False): ++ force=False, sysop=sysop):
@@ line 1342: -- sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = False) ++ sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = sysop)
Default behavior is unchanged.
Shouldn't the first change be from force=False): to force=False, sysop=False): instead of force=False, sysop=sysop): ?