While logging in via the API, I get back some cookies from the Wikimedia framework:
mywikiUserName=myusername;
mywiki_session=a27c625a1babc58ad7cc11e317c9eed2;
mywikiLoggedOut=20120723255540″;
I wonder what the mywikiLoggedOut=20120723211540 is about?
I havn’t found documentation regarding this, so any help is appreciated.
Doing a simple
git grepon the MediaWiki repository will point you to thedoLogout()function inincludes/User.php:The code of the function and the comment make it clear that this cookie indicates when you last logged out and is used to control caching of pages (presumably so that the pages don’t look like you were still logged in after you log out).