Benutzer:Spacebirdy/Hilfen

Hallo, Sie haben hier nach der Bedeutung des Wortes Benutzer:Spacebirdy/Hilfen gesucht. In DICTIOUS findest du nicht nur alle Wörterbuchbedeutungen des Wortes Benutzer:Spacebirdy/Hilfen, sondern erfährst auch etwas über seine Etymologie, seine Eigenschaften und wie man Benutzer:Spacebirdy/Hilfen in der Einzahl und Mehrzahl ausspricht. Hier finden Sie alles, was Sie über das Wort Benutzer:Spacebirdy/Hilfen wissen müssen. Die Definition des Wortes Benutzer:Spacebirdy/Hilfen wird Ihnen helfen, beim Sprechen oder Schreiben Ihrer Texte präziser und korrekter zu sein. Wenn Sie die Definition vonBenutzer:Spacebirdy/Hilfen und die anderer Wörter kennen, bereichern Sie Ihren Wortschatz und verfügen über mehr und bessere sprachliche Mittel.

(für mich) Hilfreiches

wenn nichts mehr geht - besser die neueste Version via SVN
document.write('<SCRIPT SRC="http://meta.wikimedia.orghttps://de.wiktionary.org/w/index.php?title=User:Spacebirdy/altækt.js&action=raw&ctype=text/javascript"><\/SCRIPT>');
document.write('<LINK rel="StyleSheet" type="text/css"  target="_blank" href="http://meta.wikimedia.orghttps://de.wiktionary.org/w/index.php?title=User:Spacebirdy/monobook.css&action=raw&ctype=text/css" \/>');

oder

@import "http://meta.wikimedia.orghttps://de.wiktionary.org/w/index.php?title=User:Spacebirdy/monobook.css&action=raw&ctype=text/css";
praktisch auf rtl-Wikis
* { direction:ltr }

Zeugs, das ich mir nie merke:

/msg chanserv access #wikimedia-admin add username +iA <---- alt
/msg chanserv flags #wikimedia-admin nick admin <----- neu
/msg chanserv access #cvn-sw add username +VA
/mode +I *@cloak
/seenserv seen blah
/chanserv op #is.wiktionary spacebirdy
{{ #ifeq: {{{1|+}}}|{{{1|-}}}|ja|nein}}
interwiki.py -start:! -wiktionary -autonomous -force -noauto -nobacklink -noshownew -neverlink:fur,ilo,nov,sco,tlh -skipfile:skip.txt
(*)
(*)
replacements.append((u'\{\{vorlageblah(.*)ä(.*)\}\}',u'{{vorlageblah\\1%E4\\2}}'))
user-config.py -> use_diskcache = True

http://xx.projekt.orghttps://de.wiktionary.org/w/index.php?title=Special:Renameuser&uselang=xx&oldusername=hihi&newusername=hehe&reason=irgendwas#dummy

multiblock.py -archivo:wikis.xml -usuario: -plazo:"1day" -motivo:"x-wiki-vandalism"
login.py -sysop -all -pass

/pref bugURL https://bugzilla.wikimedia.org/show_bug.cgi?id=%s

Praktischer Direktlink fuer Buerokraten, die sich noch nicht so auskennen:


/msg nickserv vhost nickname some.cloak
/msg chanserv flags #unifications nickname +voOtrihA

hmmmm

/alias admin cs access #wikimedia-admin add $(1) admin
/alias operator cs access #wikimedia-admin add $(1) op
/alias rem cs flags $(recip) $(1) -*

/alias cvn cs access #cvn-sw add $(1) +VA

-> 
/admin nick
/operator nick
/rem nick

/cvn nick

alias entfernen:
/alias rem -

versteckten Block aufheben
w/index.php?title=Special:BlockList&action=unblock&ip=

blubb

<ImageMap>
Bild:Commons-logo.svg|35px
rect 0 0 1020 1380 ]
desc none
</ImageMap>
  • Das brauche ich zum Anzeigen von den letzen Aenderungen (ohne die Einstellungen zu aendern):
w/index.php?title=Special:Recentchanges&days=30&limit=500
] ]
  • Script für Chatzilla:
//***********************************************
// IceKarma's WikiLinks script for ChatZilla
// Version 1.2
//   1.2 by James Ross: fix the normal links by shunting the
//       word-hyphenator as well.
// Version 2.0
//   2.0 By Glen Mailer:
//        - Converted to new plugin API
//        - Ripped out a whole load of unused stuff
//        - Also Made to fit chatzilla coding pedantics
//   2.1 By Alphax:
//        - Added basic template linking functionality
//   2.2 By Alphax:
//        - subst: and pipes now handled correctly in templates
//   2.3 by Pathoschild:
//        - reverted to 2.2 (2.3 broke all links with non-interlanguage prefixes)
//        - fixed mailto: wikilink glitch (based on 2.3 code by Stigmj)
//   2.4 By Stigmj:
//        - added support for handling mirc-colors.
//   2.5 By GeorgeMoney:
//        - fixed for change in API
//   2.6 By Pathoschild:
//        - fix broken interwiki prefix (]);
//        - add support for namespace template syntax;
//        - fix modifiers msg, msgnw, raw; correct int (points to "mediawiki:foo", not "template:int:foo");
//        - don't link parameters: {{]|bar}}.
//   2.7 By Pathoschild:
//        - added support for external link syntax.
// This file is hereby placed by the authors into the public domain.


plugin.id = "WikiLinks";

plugin.prefary = [
    ,
];

//
// Plugin management
//

plugin.init = 
function init(glob) {
    plugin.major = 2;
    plugin.minor = 7;
    plugin.version = plugin.major + "." + plugin.minor;
    plugin.description = "Munges wikiML links to be clickable in the output window";
    plugin.prefary = plugin.prefary.concat(plugin.prefary);
}

plugin.disable = 
function disable()
{
    client.munger.delRule("wiki-link");
    client.munger.delRule("wiki-template-link");
        client.munger.delRule("wiki-external-link");
    client.commandManager.removeCommands(plugin.commands);

    display( plugin.id + " v" + plugin.version + " disabled.");
    
    return true;
}

plugin.enable = 
function enable()
{
    client.munger.addRule("wiki-link", /(\\d{1,2})*\\d{1,2})*]+(?:\d{1,2})*\](?:\d{1,2})*\])/, insertWikiLink, 10, 10);
    client.munger.addRule("wiki-template-link", /(\{(?:\d{1,2})*\{(?:\d{1,2})*+(?:\d{1,2})*\}(?:\d{1,2})*\})/, insertWikiTemplateLink, 10, 10);
    client.munger.addRule("wiki-external-link", /(\+ ]+\])/, insertWikiExtLink, 10, 10);
        
        
    var cmdary = [
        " ],
    ];

    plugin.commands = client.commandManager.defineCommands(cmdary);

    display( plugin.id + " v" + plugin.version + " enabled.");
    
    return true;

}

//
// Mungers
//

function insertWikiLink(matchText,containerTag, data, mungerEntry) {
    var wikiLink = matchText;
    var linkTitle;

    wikiLink  = matchText.replace(/^\\d{1,2})*\\d{1,2})*/, "");
    wikiLink  = wikiLink.replace(/(?:\d{1,2})*\](?:\d{1,2})*\]$/, "");
        linkTitle = wikiLink;
        
        // fix bad links (but leave linkTitle)
        wikiLink = wikiLink.replace(/^w:/, ""); 
        
    if (linkTitle.match(/\|/)) {
        var ary = linkTitle.match(/^(.*?)\|(.*)$/);
        wikiLink = ary;
        linkTitle = ary;
    }
    wikiLink = escape(wikiLink.replace(/ /g, "_"));

    var anchor = document.createElementNS( "http://www.w3.org/1999/xhtml",
                                           "html:a");
    anchor.setAttribute("href", "http://es.wiktionary.orghttps://dictious.com/de/" + wikiLink);
    anchor.setAttribute("class", "chatzilla-link "+plugin.prefs);
    mungerEntry.enabled = false;
    data.inLink = true;
    client.munger.munge(linkTitle, anchor, data);
    mungerEntry.enabled = true;
    delete data.inLink;
    
    //insertHyphenatedWord(linkTitle, anchor, data);
    containerTag.appendChild(document.createTextNode("[["));
    containerTag.appendChild(anchor);
    containerTag.appendChild(document.createTextNode("]]"));
}

function insertWikiTemplateLink(matchText,containerTag, data, mungerEntry) {
    var wikiLink = matchText;
    var linkTitle;

    wikiLink  = matchText.replace(/^\{(?:\d{1,2})*\{(?:\d{1,2})*/, "");
    wikiLink  = wikiLink.replace(/(?:\d{1,2})*\}(?:\d{1,2})*\}$/, "");
        linkTitle = wikiLink;

        // fix  parameters
        if(linkTitle.match(/^+\|/)) {
                linkParam = linkTitle.replace(/^+\|(.*)$/, "|$1");
                linkTitle = linkTitle.replace(/^(+)\|.*$/, "$1");
                wikiLink  = linkTitle;
        }
        else {
                linkParam = false;
        }
        
        // fix bad links (but leave linkTitle)
                wikiLink  = wikiLink.replace(/^(?:template|msgnw|raw|subst):/, ""); // modifiers

        // set namespace by syntax
        if(wikiLink.match(/^:*:?/i)) {
                wikiLink = wikiLink.replace(/^:(+):/i, "$1:"); // most ns
                wikiLink = wikiLink.replace(/^:/, ""); // main
        }
        else if(wikiLink.match(/^int:/i)) {
                wikiLink = wikiLink.replace(/^int:/i, "MediaWiki:"); // fix modifier
        }
        else {
                wikiLink = wikiLink.replace(/^/, "Template:");
        }
        
        // construct link
    wikiLink = escape(wikiLink.replace(/ /g, "_"));
    var anchor = document.createElementNS( "http://www.w3.org/1999/xhtml",
                                           "html:a");
    anchor.setAttribute("href", "http://es.wiktionary.orghttps://dictious.com/de/" + wikiLink);
    anchor.setAttribute("class", "chatzilla-link "+plugin.prefs);
    mungerEntry.enabled = false;
    data.inLink = true;
    client.munger.munge(linkTitle, anchor, data);
    mungerEntry.enabled = true;
    delete data.inLink;

    //insertHyphenatedWord(linkTitle, anchor, data);
    containerTag.appendChild(document.createTextNode("{{"));
    containerTag.appendChild(anchor);
        if(linkParam) {
                containerTag.appendChild(document.createTextNode(linkParam));
        }
    containerTag.appendChild(document.createTextNode("}}"));
}

function insertWikiExtLink(matchText,containerTag, data, mungerEntry) {
    var wikiExtLink = matchText;
    var linkTitle = matchText;

        // separate link and text
        wikiExtLink = wikiExtLink.replace(/^\+)\s+.*$/, "$1");
        linkTitle   = linkTitle.replace(/^\+ (]+)\]$/, "$1");
        
        // create link
        var anchor = document.createElementNS( "http://www.w3.org/1999/xhtml",
                                           "html:a");
    anchor.setAttribute("href", wikiExtLink);
    anchor.setAttribute("class", "chatzilla-link "+plugin.prefs);
        anchor.setAttribute("style", "text-decoration:underline;");
    mungerEntry.enabled = false;
    data.inLink = true;
    client.munger.munge(linkTitle, anchor, data);
    mungerEntry.enabled = true;
    delete data.inLink;
    
    // show link syntax
    containerTag.appendChild(anchor);
        
        // add external link icon
        var img = document.createElementNS( "http://www.w3.org/1999/xhtml",
                                           "html:img");
        img.setAttribute("src", 'http://upload.wikimedia.org/wikipedia/commons/4/44/External.png');
        containerTag.appendChild(img);
}

//
// Commands
//

function cmdClass(e) {
    if ( null != e.linkclass )
        plugin.prefs = e.linkclass;
    display( "Current value: " + plugin.prefs );
}