User:Quarl/cookie.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Quarl/cookie. |
// [[User:Quarl/cookie.js]] - cookie functions
// Note: careful changing this, as popups.js uses this as well!
// <pre><nowiki>
// based on http://www.quirksmode.org/js/cookies.html
// use kooky name to avoid name clashes
var kookie = new Object();
kookie.set = function(name, value, days, path)
{
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
// use path="" for no path; path=null defaults to root
if (path == null) path = "/";
if (path) path = "; path="+path;
else path = "";
document.cookie = name + "=" + value + expires + path;
}
kookie.get = function(name)
{
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++)
{
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
kookie.erase = function(name)
{
createCookie(name,"",-1);
}
// deprecated aliases
createCookie = kookie.set;
readCookie = kookie.get;
eraseCookie = kookie.erase;
// </nowiki></pre>