User:Omegatron/monobook.js/unverified.js: Difference between revisions

Content deleted Content added
No edit summary
m Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink)
 
(21 intermediate revisions by 2 users not shown)
Line 1:
function unverified() {
/*
 
// FocusFind the edit box?
Unverified image
var txt = document.editform.wpSave.click()wpTextbox1;
 
// The tag to be included is an unverified image template
Adds an unverified image tag when you press a tab, if the tag isn't already there. Depends on addLink() function. Otherwise should be self-contained.
var tag = '\u007b\u007b' + 'unverified' + '\u007d\u007d';
 
// If the edit box doesn't already have this tag...
<pre><nowiki> */
if (txt.value.indexOf(summarytag) == -1) {
 
// Append the tag
function unverified() {
txt.value += summarytag;
document.editform.wpSummary.value = 'needs a source and copyright tag - see [[Wikipedia:Image copyright tags]]';
// Add an edit summary
document.editform.wpSummary.value = 'needsNeeds a source and copyright tag - see [[Wikipedia:Image copyright tags]]';
 
// FindPress the editSave page boxbutton
var txt = document.editform.wpTextbox1submit();
}
 
// AddIf athe tag towas the editalready boxthere, ifturn itthe doesn'ttab havebackground onered to indicate already
// that the script is functioning properly, but that there is no action
var summary = '{{unverified}}';
// to do. This doesn't interrupt the user's work like an alert() would.
if (txt.value.indexOf(summary) == -1) {
else {
txt.value += summary;
document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444";
document.getElementById('ca-unverified').style.backgroundColor = "#ff4444";
}
 
// Focus the edit box?
txt.focus();
// Press the Save page button
document.editform.wpSave.click()
}
 
// Create a tab that calls this function when pressed
addOnloadHook$(function () {
if(document.formstitle.editformindexOf("Editing Image:") == 0) {
addLinkmw.util.addPortletLink('p-cactions', 'javascript:unverified()', 'tag', 'ca-unverified', 'Adds a tag to an unverified image', '', '');
}
});
 
// </nowiki></pre>