Achtung: Aus gegebenen Anlass ist die Benutzer-Registrierung für das Kilimanjaro-Wiki z.Z. gesperrt!
MediaWiki:Common.js
Aus Das Mount Kilimanjaro Wiki
Version vom 16. Februar 2016, 23:03 Uhr von Detlev (Diskussion | Beiträge)
Hinweis: Leere nach dem Speichern den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Internet Explorer: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
- Opera: Extras → Internetspuren löschen … → Individuelle Auswahl → Den kompletten Cache löschen
- Konqueror: Aktualisieren anklicken oder F5 drücken
/** Extra toolbar options ******************************************************
*
* Description: Adds extra buttons to the editing toolbar.
*
* To disable this script, add <code>mwCustomEditButtons = [];<code> to [[Special:Mypage/vector.js]].
*
* Maintainers: [[User:MarkS]], [[User:Voice of All]], [[User:R. Koot]]
*
* Mit folgenden Erweiterungen durch Detlev : 07.02.2012
* - Button : Zitat
* - Button : Vorschaubild mit Rahmen, links ausgerichtet !
* - Button : Vorschaubild mit Rahmen, rechts ausgerichtet !
* - Button : Kategorie-Footer
* - Button : DIV-Container
* - Button : Checked
* - Button : Baustelle
* - Button : Baustellen-Container
*
* Mit folgenden Erweiterungen durch Detlev : 11.05.2015
* - Button : English
* - Button : Highslide-Gallery
*
*******************************************************************************/
if (mwCustomEditButtons) {
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/c/c8/Button_redirect.png",
"speedTip": "Redirect",
"tagOpen": "#REDIRECT [[",
"tagClose": "]]",
"sampleText": "Target page name"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/c/c9/Button_strike.png",
"speedTip": "Strike",
"tagOpen": "<s>",
"tagClose": "</s>",
"sampleText": "Strike-through text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/1/13/Button_enter.png",
"speedTip": "Line break",
"tagOpen": "<br />",
"tagClose": "",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/8/80/Button_upper_letter.png",
"speedTip": "Superscript",
"tagOpen": "<sup>",
"tagClose": "</sup>",
"sampleText": "Superscript text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/7/70/Button_lower_letter.png",
"speedTip": "Subscript",
"tagOpen": "<sub>",
"tagClose": "</sub>",
"sampleText": "Subscript text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/5/58/Button_small.png",
"speedTip": "Fügt einen Small-Text ein",
"tagOpen": "<small>",
"tagClose": "</small>",
"sampleText": "Small Text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/commons/5/56/Button_big.png",
"speedTip": "Fügt einen Big-Text ein",
"tagOpen": "<big>",
"tagClose": "</big>",
"sampleText": "Big text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png",
"speedTip": "Fügt einen versteckten Kommentar ein",
"tagOpen": "<!-- ",
"tagClose": " -->",
"sampleText": "Comment"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/f/fd/Button_blockquote.png",
"speedTip": "Fügt einen Blockquote-Text ein",
"tagOpen": "<blockquote>\n",
"tagClose": "\n</blockquote>",
"sampleText": "Block quote"
});
mwCustomEditButtons.push({ //--- Button: Zitat --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_zitat.png",
"speedTip": "Fügt einen für einen mehrzeiligen Zitat-Text ein",
"tagOpen": "<br><div id='zitat'>",
"tagClose": "</div><br>",
"sampleText": "Hier das Zitat einfügen"
});
mwCustomEditButtons.push({ //--- Button: English --- Detlev-11.05.2015 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_engl.png",
"speedTip": "Fügt einen für einen mehrzeiligen English-Text ein",
"tagOpen": "<br><div id='engl'>",
"tagClose": "</div><br>",
"sampleText": "Hier den English-Text einfügen"
});
mwCustomEditButtons.push({ //--- Button: Vorschaubild-links --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_frameimage_left.png",
"speedTip": "Fügt ein Vorschaubild mit Rahmen ein - links ausgerichtet!",
"tagOpen": "[[Datei:",
"tagClose": "|200px|thumb|left|Alternativer Text]]",
"sampleText": "Bild-Dateiname.png"
});
mwCustomEditButtons.push({ //--- Button: Vorschaubild-rechts --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_frameimage_right.png",
"speedTip": "Fügt ein Vorschaubild mit Rahmen ein - rechts ausgerichtet!",
"tagOpen": "[[Datei:",
"tagClose": "|200px|thumb|right|Alternativer Text]]",
"sampleText": "Bild-Dateiname.png"
});
mwCustomEditButtons.push({ //--- Button: Kategorie-Footer --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_cat_footer.png",
"speedTip": "Fügt den Kategorie-Footer ein!",
"tagOpen": "[[Kategorie:Das Mount Kilimanjaro Wiki]]\n[[Kategorie:",
"tagClose": "]]",
"sampleText": "Der Kategorie Name"
});
mwCustomEditButtons.push({ //--- Button: DIV-Container --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_container.png",
"speedTip": "Fügt einen DIV-Container ein!",
"tagOpen": "<br><div id='container'>",
"tagClose": "</div><br>",
"sampleText": "Hier der Text"
});
mwCustomEditButtons.push({ //--- Button: Weiterleitung --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_weiter.png",
"speedTip": "Fügt Weiterleitungsbefehl ein!",
"tagOpen": "#WEITERLEITUNG [[",
"tagClose": "]]",
"sampleText": "Seitenname zur Weiterleitung"
});
mwCustomEditButtons.push({ //--- Button: Checked --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_checked.png",
"speedTip": "Fügt einen Checked-Haken nach dem Text ein!",
"tagOpen": "<span id='checked'>",
"tagClose": "</span>",
"sampleText": "Hier der Text"
});
mwCustomEditButtons.push({ //--- Button: Baustelle --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_baustelle.png",
"speedTip": "Fügt einen Baustellen-Kegel nach dem Text ein!",
"tagOpen": "<span id='baustelle'>",
"tagClose": "</span>",
"sampleText": "Hier der Text"
});
mwCustomEditButtons.push({ //--- Button: Baustellen-Container --- Detlev-03.04.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_container_baustelle.png",
"speedTip": "Fügt den Baustellen-Container ein!",
"tagOpen": "<div id='container_baustelle'><span id='baustelle'></span> <b>Baustelle :</b> In diesem Artikel fehlen noch wichtige Informationen. Du kannst dem Mount-Kilimanjaro-Wiki helfen, indem du sie recherchierst und einfügst.",
"tagClose": "</div><br>",
"sampleText": ""
});
mwCustomEditButtons.push({ //--- Button: Star-Rating --- Detlev-07.02.2012 ---
"imageFile": "//kilimanjaro.bplaced.net/wiki/images/button/Button_star.png",
"speedTip": "Fügt ein Star-Rating ein!",
"tagOpen": "<div style='width:100%; height:40px; valign:top;'><div style='float:right;'><vote type=1 /></div>",
"tagClose": "</div>",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png",
"speedTip": "Fügt eine Tabelle ein",
"tagOpen": '{| class="wikitable"\n|',
"tagClose": "\n|}",
"sampleText": "-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
"speedTip": "Fügt einen Referenzblock / Buch-Zitat ein",
"tagOpen": "<ref>",
"tagClose": "</ref> ... <references/>",
"sampleText": "Text für die Fußnote"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
"speedTip": "Fügt einen Referenzblock / Internet-Zitat ein",
"tagOpen": "<ref>",
"tagClose": "</ref> ... <references/>",
"sampleText": "[http://www.example.com Link-Text], zusätzlicher text"
});
mwCustomEditButtons.push({
"imageFile": "//upload.wikimedia.org/wikipedia/en/1/12/Button_gallery.png",
"speedTip": "Fügt eine Bilder-Galerie ein !",
"tagOpen": "\n<gallery>\n",
"tagClose": "\n</gallery>",
"sampleText": "Image:Example.jpg|Caption1\nImage:Example.jpg|Caption2"
});
mwCustomEditButtons.push({ //--- Button: Highslide-Gallery --- Detlev-16.02.2016 ---
"imageFile": "//upload.wikimedia.org/wikipedia/en/1/12/Button_gallery.png",
"speedTip": "Fügt eine Highslide-Gallery ein !",
"tagOpen": "* '''Highslide-Gallery''' mit Bildern von [http://www.xxx.de www.xxx.de]\n<ul class='gallery'>\n",
"tagClose": "</ul>",
"sampleText": "{{HS-Gallery\n|nr=1\n|width=120\n|url=Bild-URl\n|text=Bildtext\n}}\n{{HS-Gallery\n|nr=1\n|width=120\n|url=Bild-URl\n|text=Bildtext\n}}\n{{HS-Gallery\n|nr=1\n|width=120\n|url=Bild-URl\n|text=Bildtext\n}}\n"
});
mwCustomEditButtons.push({ //--- Button: Highslide-Gallery-Ref --- Detlev-16.02.2016 ---
"imageFile": "//upload.wikimedia.org/wikipedia/en/1/12/Button_gallery.png",
"speedTip": "Fügt eine Highslide-Gallery mit Referenzen ein !",
"tagOpen": "* '''Highslide-Gallery''' mit Bildern von [http://www.xxx.de www.xxx.de]\n<ul class='gallery'>\n",
"tagClose": "</ul>",
"sampleText": "{{HS-Gallery-Ref\n|nr=1\n|width=120\n|url=Bild-URL\n|text=Bildtext\n|ref=<ref>[http://www.example.com Link-Text] - zusätzlicher text</ref> \n}}\n{{HS-Gallery-Ref\n|nr=1\n|width=120\n|url=Bild-URL\n|text=Bildtext\n|ref=<ref>[http://www.example.com Link-Text] - zusätzlicher text</ref> \n}}\n"
});
}
/** Fix edit summary prompt for undo ******************************************
* Fixes the fact that the undo function combined with the "no edit summary prompter"
* causes problems if leaving the edit summary unchanged.
* Added by [[User:Deskana]], code by [[User:Tra]].
* See also [[bugzilla:8912]].
*/
$(function () {
if (document.location.search.indexOf("undo=") != -1 && document.getElementsByName('wpAutoSummary')[0]) {
document.getElementsByName('wpAutoSummary')[0].value='1';
}
});
/** Edittools javascript loader ************************************************
*
* Description: Pulls in [[MediaWiki:Edittools.js]]. Includes a cache-bypassing
* version number in the URL in order to allow any changes to the edittools to
* be rapidly deployed to users.
*
* Note that, by default, this function does nothing unless the element with
* the ID "editpage-specialchars" (which contains the old edittools code in
* [[MediaWiki:Edittools]], and will be retained as a placeholder in the new
* implementation) has a class named "edittools-version-NNN", where NNN is a
* number. If the class name has "test" before the number, the code will only
* run for users who have set "window.testJsEdittools = true" in their user JS.
* The "test" should be retained in the class name until the new edittools
* implementation is ready and fully tested, and until at least 30 days have
* passed since this loader stub was added (which will be in 27 June 2008).
*
* For compatibility with Alex Smotrov's original implementation, on which this
* code is loosely based (see [[mw:User talk:Alex Smotrov/edittools.js]]), this
* loader can also be disabled by setting "window.noDefaultEdittools = true".
*
* Maintainers: [[User:Ilmari Karonen]]
*/
//Prevent the static edittools from flashing before the compact edittools below is loaded.
mw.util.addCSS('div.edittools-text { display:none; }');
$(function () {
// needs to be deferred until the DOM has fully loaded
var placeholder = document.getElementById("editpage-specialchars");
if (!placeholder || window.noDefaultEdittools) {
//Show the static edittools again for users with "window.noDefaultEdittools=true".
mw.util.addCSS('div.edittools-text { display:block; }');
return;
}
var match = /(?:^| )edittools-version-(\d+)(?: |$)/.exec(placeholder.className);
// set window.testJsEdittools = true to enable testing before full deployment
if (!match && window.testJsEdittools)
match = /(?:^| )edittools-version-(test\d+)(?: |$)/.exec(placeholder.className);
if (!match) return;
var url = wgScript + '?title=MediaWiki:Edittools.js&action=raw&ctype=text/javascript&nocache=' + match[1];
importScriptURI(url);
});
/** RefToolbar ************************************************
*
* Description: Adds tools for citing references to the edit toolbar.
* See [[Wikipedia:RefToolbar 2.0]] for further documentation.
*
* To disable this script, add <code>refToolbarInstalled = 'bypass';<code> to [[Special:Mypage/vector.js]].
*
* Maintainers: [[User:Mr.Z-man]], [[User:Kaldari]]
*/
function initializeRefTools() {
if ( typeof refToolbarInstalled == 'undefined' ) {
importScriptURI('//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarBase.js&action=raw&ctype=text/javascript');
if( typeof $.wikiEditor != 'undefined' && typeof $.wikiEditor.modules.dialogs != 'undefined' ) {
// Enhanced editing toolbar is on with dialogs. Load standard refToolbar.
importScript('MediaWiki:RefToolbar.js');
} else if( typeof $.wikiEditor != 'undefined' ) {
// Dialogs are off. Load refToolbar 2.0 without dialogs.
importScript('MediaWiki:RefToolbarNoDialogs.js');
} else {
// Enhanced editing toolbar is off. Load legacy refToolbar 1.0.
importScript('MediaWiki:RefToolbarLegacy.js');
}
refToolbarInstalled = true;
}
}
$( initializeRefTools );
Das Mount Kilimanjaro Wiki ist ein Projekt von : www.mount-kilimanjaro.de, dem deutschen Informationsportal zum höchten Berg Afrikas, mit Unterstützung der User des Mount-Kilimanjaro-Forums !
Das Mount-Kilimanjaro-Forum | Das Mount-Kilimanjaro-Gipfelbuch | Die Mount-Kilimanjaro-Galerie | Die Mount-Kilimanjaro-Info-Map | Das Mount-Kilimanjaro-Wiki | www.mount-kilimanjaro.de

