MediaWiki:Common.js : Différence entre versions
De geoLwiki - Guide géologique du Luxembourg
Ligne 90 : | Ligne 90 : | ||
/* Commandes SOUS la fenêtre de l'éditeur installé le 29/10/08 ========================== */ | /* Commandes SOUS la fenêtre de l'éditeur installé le 29/10/08 ========================== */ | ||
− | + | function includePage( name ) | |
+ | { | ||
+ | document.write('<script type="text/javascript" src="' + wgScript + '?title=' | ||
+ | + name | ||
+ | + '&action=raw&ctype=text/javascript"><\/script>' | ||
+ | ); | ||
+ | } | ||
+ | /* End of includePage */ | ||
+ | |||
+ | |||
/* Including extra .js pages */ | /* Including extra .js pages */ | ||
+ | |||
// switches for scripts | // switches for scripts | ||
+ | // TODO: migrate to JSConfig | ||
+ | // var load_extratabs = true; | ||
var load_edittools = true; | var load_edittools = true; | ||
// extra drop down menu on editing for adding special characters | // extra drop down menu on editing for adding special characters | ||
includePage( 'MediaWiki:Edittools.js' ); | includePage( 'MediaWiki:Edittools.js' ); |
Version du 29 octobre 2008 à 09:31
/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */ /* Boutons */ if (mwCustomEditButtons) { mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_enter.png", "speedTip": "Nouveau paragraphe", "tagOpen": "<br />", "tagClose": "", "sampleText": ""}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_liste.png", "speedTip": "Liste", "tagOpen": "* élément 1" , "tagClose": "", "sampleText": ""}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_enum.png", "speedTip": "Énumération", "tagOpen": "# élément 1", "tagClose": "", "sampleText": ""}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_tableau.png", "speedTip": "Tableau", "tagOpen": "", "tagClose": "", "sampleText": ""}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_gallery.png", "speedTip": "Galerie d'images", "tagOpen": "<gallery>", "tagClose": "</gallery>", "sampleText": " Image:Exemple.jpg|texte image 1 Image:Exemple1.jpg|texte image 2 Image:Exemple2.jpg|texte image 3 "}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_modele.png", "speedTip": "Modèle", "tagOpen": "{{", "tagClose": "}}", "sampleText": "Nom du modèle"}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_category.png", "speedTip": "Catégorie", "tagOpen": "[[Catégorie:", "tagClose": "]]", "sampleText": "nom de la catégorie"}; mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_redirect.png", "speedTip": "Redirection", "tagOpen": "#REDIRECT [[", "tagClose": "]]", "sampleText": "Insert text"}; /* mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://geologie.pch.etat.lu/geowiki/skins/common/images/button_comment.png", "speedTip": "Comment visible only for editors", "tagOpen": "<!-- ", "tagClose": " -->", "sampleText": "Insert comment here"} */ } /* Commandes SOUS la fenêtre de l'éditeur installé le 29/10/08 ========================== */ function includePage( name ) { document.write('<script type="text/javascript" src="' + wgScript + '?title=' + name + '&action=raw&ctype=text/javascript"><\/script>' ); } /* End of includePage */ /* Including extra .js pages */ // switches for scripts // TODO: migrate to JSConfig // var load_extratabs = true; var load_edittools = true; // extra drop down menu on editing for adding special characters includePage( 'MediaWiki:Edittools.js' );