User:Nishkid64/DYK/monobook.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. |
The accompanying .css page for this skin can be added at User:Nishkid64/DYK/monobook.css. |
// <nowiki>
//automate insertion of the following functions:
// Article talk page: {{subst:dyktalk|10 June|2006}}
// Article creator's talk page: {{subst:UpdatedDYK|[[Article name]]}}
// Nominator's talk page: {{subst:UpdatedDYKNom|[[Article name]]}}
function pipe_date()
{
var months = new Array('January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December');
var date = new Date();
var yearStr = date.getUTCFullYear();
var dayMoStr = months[date.getUTCMonth()] +" "+ date.getUTCDate();
var t = dayMoStr+"|"+yearStr;
return t;
}
function dyk_talk()
{
var f = document.editform, t = f.wpTextbox1;
if (t.value.length > 0)
t.value += '\n';
t.value += "{{subst:dyktalk|"+pipe_date()+"}} ~~~~";
f.wpSummary.value = "This article was selected for [[WP:DYK|]]!"
}
function updated_dyk()
{
var page = prompt("User created which article?")
var f = document.editform, t = f.wpTextbox1;
if (t.value.length > 0)
t.value += '\n';
t.value += "{{subst:UpdatedDYK|"+pipe_date()+"|" + page + "}} \nThanks for your contributions! ~~~~";
f.wpSummary.value = "Your article, ''[[" + page + "]]'', was selected for [[WP:DYK|]]!"
}
function updated_dyk_nom()
{
var page = prompt("User nominated which article?")
var f = document.editform, t = f.wpTextbox1;
if (t.value.length > 0)
t.value += '\n';
t.value += "{{subst:UpdatedDYKNom|"+pipe_date()+"|" + page + "}} \nThanks for your contributions! ~~~~";
f.wpSummary.value = "Your [[WP:DYK|]] nomination for [[" + page + "]] was successful"
}
// end of file </nowiki>