Difference between revisions of "User:Matteo/monobook.js"

From FreekiWiki
Jump to navigation Jump to search
m (changed local copy)
m (trying new tabs)
Line 7: Line 7:
  
 
popupFixRedirs=true;
 
popupFixRedirs=true;
 +
 +
 +
function addlilink(tabs, url, name, id, title, key){
 +
    var na = document.createElement('a');
 +
    na.href = url;
 +
    na.appendChild(document.createTextNode(name));
 +
    var li = document.createElement('li');
 +
    if(id) li.id = id;
 +
    li.appendChild(na);
 +
    tabs.appendChild(li);
 +
    if(id)
 +
    {
 +
        if(key && title)
 +
        {
 +
            ta[id] = [key, title];
 +
        }
 +
        else if(key)
 +
        {
 +
            ta[id] = [key, ''];
 +
        }
 +
        else if(title)
 +
        {
 +
            ta[id] = ['', title];
 +
        }
 +
    }
 +
    // re-render the title and accesskeys from existing code in wikibits.js
 +
    akeytt();
 +
    return li;
 +
}
 +
 +
unction tagcat(number) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  if (t.value.length > 0)
 +
    t.value += '\n';
 +
  t.value += number;
 +
  f.wpSummary.value = "cat";
 +
  f.submit();
 +
}
 +
 +
function tagtemplate(template) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  t.value = "{{" + template + "}}" + '\n' + t.value;
 +
  f.wpSummary.value = "Tagged " + template;
 +
  f.submit();
 +
}
 +
 +
addOnloadHook(dbtabs)
 +
function dbtabs()
 +
{
 +
if (document.title.indexOf('Editing ') == -1){return;}
 +
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
 +
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
 +
}
 +
 +
unction tagcat(number) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  if (t.value.length > 0)
 +
    t.value += '\n';
 +
  t.value += number;
 +
  f.wpSummary.value = "cat";
 +
  f.submit();
 +
}
 +
 +
function tagtemplate(template) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  t.value = "{{" + template + "}}" + '\n' + t.value;
 +
  f.wpSummary.value = "Tagged " + template;
 +
  f.submit();
 +
}
 +
 +
addOnloadHook(dbtabs)
 +
function dbtabs()
 +
{
 +
if (document.title.indexOf('Editing ') == -1){return;}
 +
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
 +
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
 +
}
 +
 +
unction tagcat(number) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  if (t.value.length > 0)
 +
    t.value += '\n';
 +
  t.value += number;
 +
  f.wpSummary.value = "cat";
 +
  f.submit();
 +
}
 +
 +
function tagtemplate(template) {
 +
  var f = document.editform, t = f.wpTextbox1;
 +
  t.value = "{{" + template + "}}" + '\n' + t.value;
 +
  f.wpSummary.value = "Tagged " + template;
 +
  f.submit();
 +
}
 +
 +
addOnloadHook(dbtabs)
 +
function dbtabs()
 +
{
 +
if (document.title.indexOf('Editing ') == -1){return;}
 +
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
 +
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
 +
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
 +
}

Revision as of 10:53, 30 September 2006

// source from [[w:User:Lupin/popups.js]]

document.write('<script type="text/javascript" src="'

            + 'http://wiki.freegeek.org/wiki/index.php?title=User:Matteo/popups.js' 
            + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

popupFixRedirs=true;


function addlilink(tabs, url, name, id, title, key){
    var na = document.createElement('a');
    na.href = url;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    if(id) li.id = id;
    li.appendChild(na);
    tabs.appendChild(li);
    if(id)
    {
        if(key && title)
        {
            ta[id] = [key, title];
        }
        else if(key)
        {
            ta[id] = [key, ''];
        }
        else if(title)
        {
            ta[id] = ['', title];
        }
    }
    // re-render the title and accesskeys from existing code in wikibits.js
    akeytt();
    return li;
}

unction tagcat(number) {
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += number;
  f.wpSummary.value = "cat";
  f.submit();
 }

function tagtemplate(template) {
  var f = document.editform, t = f.wpTextbox1;
  t.value = "{{" + template + "}}" + '\n' + t.value;
  f.wpSummary.value = "Tagged " + template;
  f.submit();
}

addOnloadHook(dbtabs)
function dbtabs()
{
if (document.title.indexOf('Editing ') == -1){return;}
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
}

unction tagcat(number) {
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += number;
  f.wpSummary.value = "cat";
  f.submit();
 }

function tagtemplate(template) {
  var f = document.editform, t = f.wpTextbox1;
  t.value = "{{" + template + "}}" + '\n' + t.value;
  f.wpSummary.value = "Tagged " + template;
  f.submit();
}

addOnloadHook(dbtabs)
function dbtabs()
{
if (document.title.indexOf('Editing ') == -1){return;}
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
}

unction tagcat(number) {
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += number;
  f.wpSummary.value = "cat";
  f.submit();
 }

function tagtemplate(template) {
  var f = document.editform, t = f.wpTextbox1;
  t.value = "{{" + template + "}}" + '\n' + t.value;
  f.wpSummary.value = "Tagged " + template;
  f.submit();
}

addOnloadHook(dbtabs)
function dbtabs()
{
if (document.title.indexOf('Editing ') == -1){return;}
        var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Wikibooks]]")', 'moved from b', '');
        addlilink(tabs, 'javascript:tagcat("[[Category:Pages moved from Meta]]")', 'moved from m', '');
        addlilink(tabs, 'javascript:tagtemplate("main welcome")', 'main-welcome', '');
}