Ir al contenido

Usuario:WOSlinker/common.js

De Biquipedia

Pare cuenta: Si quiere veyer os cambeos dimpués d'alzar o fichero, talment tienga que refrescar a caché d'o suyo nabegador ta veyer os cambeos.

  • Mozilla / Firefox / Safari: prete a tecla de Mayusclas mientras puncha Reload, u prete Ctrl-F5 u Ctrl-R (Command-R en un Macintosh).
  • Konqueror: punche Reload u prete F5.
  • Opera: limpiar a caché en Tools → Preferences.
  • Internet Explorer: prete Ctrl mientres puncha Refresh, u prete 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>]]');

        if(document.getElementById('wpTextbox1').value != myContent) {
           document.getElementById('wpTextbox1').value=myContent;
           document.getElementById('wpSummary').value='font [[Especial:Errores_de_sintaxis/tidy-font-bug|lint]]';
           document.getElementById('wpMinoredit').checked = true;
        }



    }
)}