İstifadəçi:WOSlinker/common.js
Qeyd: Dəyişiklikləri yayımladıqdan sonra etdiyiniz dəyişikliklərin görünməsi üçün brauzerinizin keşinin təmizlənməsi lazım ola bilər.
- Firefox / Safari: Reload düyməsinə basılı tutarkən Shift düyməsinə basın, və ya Ctrl+F5 və ya Ctrl+R (Mac üçün ⌘-R )
- Google Chrome: Ctrl-Shift-R (Mac üçün ⌘-Shift-R)
- Edge: Ctrl düyməsini basılı tutarkən Refresh düyməsinə basın, və ya sadəcə Ctrl+F5.
function font_queryString(p) {
var re = RegExp('[&?]' + p + '=([^&]*)');
var matches;
if (matches = re.exec(document.location)) {
try {
return decodeURI(matches[1]);
} catch (e) { }
}
return null;
}
//Add a 'font edit' tab
if(mw.config.get('wgArticleId') != 0 ) {
$( function fontEditButton() {
mw.util.addPortletLink('p-cactions',
mw.util.getUrl(null,{action:'edit',font:true}),
'font',
'p-font',
'font edit');
}
)}
if(mw.config.get('wgAction') == 'edit' && font_queryString('font') == 'true') {
$(function font() {
var myContent = document.getElementById('wpTextbox1').value;
myContent = myContent.replace(/\<font color *\= *\"\#([\d\w]*)\"\>\[\[(.*?)\|(.*?)\]\]\<\/font\>/g,'[[$2|<font color="#$1">$3</font>]]');
myContent = myContent.replace(/\<font color *\= *\"\#([\d\w]*)\"\>\[\[(.*?)\]\]\<\/font\>/g,'[[$2|<font color="#$1">$2</font>]]');
myContent = myContent.replace(/\<font color *\= *\#([\d\w]*)\>\[\[(.*?)\|(.*?)\]\]\<\/font\>/g,'[[$2|<font color="#$1">$3</font>]]');
myContent = myContent.replace(/\<font color *\= *\#([\d\w]*)\>\[\[(.*?)\]\]\<\/font\>/g,'[[$2|<font color="#$1">$2</font>]]');
myContent = myContent.replace(/\<font color *\= *\"([\w]*)\"\>\[\[(.*?)\|(.*?)\]\]\<\/font\>/g,'[[$2|<font color="$1">$3</font>]]');
myContent = myContent.replace(/\<font color *\= *\"([\w]*)\"\>\[\[(.*?)\]\]\<\/font\>/g,'[[$2|<font color="$1">$2</font>]]');
myContent = myContent.replace(/\<font color *\= *([\w]*)\>\[\[(.*?)\|(.*?)\]\]\<\/font\>/g,'[[$2|<font color=$1>$3</font>]]');
myContent = myContent.replace(/\<font color *\= *([\w]*)\>\[\[(.*?)\]\]\<\/font\>/g,'[[$2|<font color=$1>$2</font>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\"\#([\d\w]*)\"\>\[\[(.*?)\|(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="#$1">$3</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\"\#([\d\w]*)\"\>\[\[(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="#$1">$2</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\#([\d\w]*)\>\[\[(.*?)\|(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="#$1">$3</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\#([\d\w]*)\>\[\[(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="#$1">$2</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\"([\w]*)\"\>\[\[(.*?)\|(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="$1">$3</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *\"([\w]*)\"\>\[\[(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR="$1">$2</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *([\w]*)\>\[\[(.*?)\|(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR=$1>$3</FONT>]]');
myContent = myContent.replace(/\<FONT COLOR *\= *([\w]*)\>\[\[(.*?)\]\]\<\/FONT\>/g,'[[$2|<FONT COLOR=$1>$2</FONT>]]');
if(document.getElementById('wpTextbox1').value != myContent) {
document.getElementById('wpTextbox1').value=myContent;
document.getElementById('wpSummary').value='font [[Xüsusi:LintErrors/tidy-font-bug|lint]]';
document.getElementById('wpMinoredit').checked = true;
}
}
)}