MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus WacheWiki
Zur Navigation springenZur Suche springen
 
(8 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
/* Das folgende JavaScript wird für alle Benutzer geladen. */
 
/* Das folgende JavaScript wird für alle Benutzer geladen. */
 
var customizeToolbar = function() {
 
var customizeToolbar = function() {
 +
 +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 +
        'sections': {
 +
                'wwinfo': {
 +
                        'type': 'booklet',
 +
                        'label': 'Wache-Info'
 +
                }
 +
        }
 +
} );
 +
 +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 +
        'section': 'wwinfo',
 +
        'pages': {
 +
                'mission': {
 +
                        'layout': 'table',
 +
                        'label': 'Vorlagen',
 +
                        'headings': [
 +
                                { text: 'Name' }, // or use textMsg for localization, see also above
 +
                                { text: 'Verwendung' },
 +
                                { text: 'Eingabe' }
 +
                        ],
 +
                        'rows': [
 +
                                {
 +
                                        'name': { text: 'Originalcharakter‎' },
 +
                                        'verwendung': { text: 'Anwenden bei einem Originalcharakter(z.B. Schnapper)‎' },
 +
                                        'eingabe': { text: '<nowiki>{{Originalcharakter‎}}</nowiki>' }
 +
                                },
 +
                                {
 +
                                        'name': { text: 'Originalschauplatz' },
 +
                                        'verwendung': { text: 'Anwenden bei einem Originalschauplatz(z.B. Ankh-Morpork)' },
 +
                                        'eingabe': { text: '<nowiki>{{Originalschauplatz}}</nowiki>' }
 +
                                },
 +
                                {
 +
                                        'name': { text: 'Originalobjekt' },
 +
                                        'verwendung': { text: 'Anwenden bei einem Originalobjekt(z.B. Zauberstab)' },
 +
                                        'eingabe': { text: '<nowiki>{{Originalobjekt}}</nowiki>' }
 +
                                },
 +
                                {
 +
                                        'name': { text: 'Originalbegriff' },
 +
                                        'verwendung': { text: 'Anwenden bei einem Originalbegriff(z.B. Knurd)' },
 +
                                        'eingabe': { text: '<nowiki>{{Originalbegriff}}</nowiki>' }
 +
                                }
 +
                        ]
 +
                }
 +
        }
 +
} );
  
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
         sections: {
 
         sections: {
 
                 'wwspecial': {
 
                 'wwspecial': {
                         'type': 'toolbar', // Can also be 'booklet'
+
                         type: 'toolbar', // Can also be 'booklet'
                         'label': 'Wache Spezial'
+
                         label: 'Wache Spezial'
 
                         // or 'labelMsg': 'section-emoticons-label' for a localized label
 
                         // or 'labelMsg': 'section-emoticons-label' for a localized label
 
                 }
 
                 }
 
         }
 
         }
 
} );
 
} );
 +
 +
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 +
        'section': 'wwspecial',
 +
        'groups': {
 +
                'wache': {
 +
                        'label': 'Wache' // or use labelMsg for a localized label, see above
 +
                }
 +
        }
 +
} );
 +
  
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
         group: 'format',
+
         group: 'wache',
 
         tools: {
 
         tools: {
                 "strikethrough": {
+
                 "char": {
                         label: 'Strike',
+
                         label: 'Charakter',
 
                         type: 'button',
 
                         type: 'button',
                         icon: '//upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
+
                         icon: '/wachewiki/images/char.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<s>",
+
                                         pre: "<char>",
                                         post: "</s>"
+
                                         post: "</char>"
 
                                 }
 
                                 }
 
                         }
 
                         }
Zeile 31: Zeile 87:
 
});
 
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
         group: 'faces',
+
         group: 'wache',
 
         tools: {
 
         tools: {
                 'smile': {
+
                 "single": {
                         label: 'Smile!', // or use labelMsg for a localized label, see above
+
                         label: 'Single',
 
                         type: 'button',
 
                         type: 'button',
                        icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
+
                        icon: '/wachewiki/images/single.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: ":)" // text to be inserted
+
                                         pre: "<single>",
 +
                                        post: "</single>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
 
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'char': {
+
                 "coop": {
                         label: 'Charakter', // or use labelMsg for a localized label, see above
+
                         label: 'Coop',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/coop.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<char>",
+
                                         pre: "<coop>",
                                         post: "</char>"
+
                                         post: "</coop>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'single': {
+
                 "live": {
                         label: 'Single', // or use labelMsg for a localized label, see above
+
                         label: 'Live',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/live.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<single>",
+
                                         pre: "<live>",
                                         post: "</single>"
+
                                         post: "</live>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'live': {
+
                 "multi": {
                         label: 'Live', // or use labelMsg for a localized label, see above
+
                         label: 'Multi',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/multi.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<live>",
+
                                         pre: "<multi>",
                                         post: "</live>"
+
                                         post: "</multi>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'multi': {
+
                 "bgesp": {
                         label: 'Multi', // or use labelMsg for a localized label, see above
+
                         label: 'Bewerbungsgespräch',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/bgesp.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<multi>",
+
                                         pre: "<bgesp>",
                                         post: "</multi>"
+
                                         post: "</bgesp>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'bgesp': {
+
                 "puescho": {
                         label: 'Bewerbungsgespräch', // or use labelMsg for a localized label, see above
+
                         label: 'Püschositzung',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/puescho.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<bgesp>",
+
                                         pre: "<puescho>",
                                         post: "</bgesp>"
+
                                         post: "</puescho>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
         section: 'wwspecial',
 
         section: 'wwspecial',
 
         group: 'wache',
 
         group: 'wache',
         'tools': {
+
         tools: {
                 'puescho': {
+
                 "ia": {
                         label: 'Püschositzung', // or use labelMsg for a localized label, see above
+
                         label: 'Püschositzung',
 
                         type: 'button',
 
                         type: 'button',
                      /* icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',*/
+
                        icon: '/wachewiki/images/ia.png',
 
                         action: {
 
                         action: {
 
                                 type: 'encapsulate',
 
                                 type: 'encapsulate',
 
                                 options: {
 
                                 options: {
                                         pre: "<puescho>",
+
                                         pre: "<ia>",
                                         post: "</puescho>"
+
                                         post: "</ia>"
 
                                 }
 
                                 }
 
                         }
 
                         }
 
                 }
 
                 }
 
         }
 
         }
} );
+
});
  
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
$('#wpTextbox1').wikiEditor('addToToolbar', {

Aktuelle Version vom 25. Juni 2012, 08:20 Uhr

/* Das folgende JavaScript wird für alle Benutzer geladen. */
var customizeToolbar = function() {

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'sections': {
                'wwinfo': {
                        'type': 'booklet',
                        'label': 'Wache-Info'
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'wwinfo',
        'pages': {
                'mission': {
                        'layout': 'table',
                        'label': 'Vorlagen',
                        'headings': [
                                { text: 'Name' }, // or use textMsg for localization, see also above
                                { text: 'Verwendung' },
                                { text: 'Eingabe' }
                        ],
                        'rows': [
                                {
                                        'name': { text: 'Originalcharakter‎' },
                                        'verwendung': { text: 'Anwenden bei einem Originalcharakter(z.B. Schnapper)‎' },
                                        'eingabe': { text: '<nowiki>{{Originalcharakter‎}}</nowiki>' }
                                },
                                {
                                        'name': { text: 'Originalschauplatz' },
                                        'verwendung': { text: 'Anwenden bei einem Originalschauplatz(z.B. Ankh-Morpork)' },
                                        'eingabe': { text: '<nowiki>{{Originalschauplatz}}</nowiki>' }
                                },
                                {
                                        'name': { text: 'Originalobjekt' },
                                        'verwendung': { text: 'Anwenden bei einem Originalobjekt(z.B. Zauberstab)' },
                                        'eingabe': { text: '<nowiki>{{Originalobjekt}}</nowiki>' }
                                },
                                {
                                        'name': { text: 'Originalbegriff' },
                                        'verwendung': { text: 'Anwenden bei einem Originalbegriff(z.B. Knurd)' },
                                        'eingabe': { text: '<nowiki>{{Originalbegriff}}</nowiki>' }
                                }
                        ]
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        sections: {
                'wwspecial': {
                        type: 'toolbar', // Can also be 'booklet'
                        label: 'Wache Spezial'
                        // or 'labelMsg': 'section-emoticons-label' for a localized label
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'wwspecial',
        'groups': {
                'wache': {
                        'label': 'Wache' // or use labelMsg for a localized label, see above
                }
        }
} );


$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "char": {
                        label: 'Charakter',
                        type: 'button',
                        icon: '/wachewiki/images/char.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<char>",
                                        post: "</char>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "single": {
                        label: 'Single',
                        type: 'button',
                         icon: '/wachewiki/images/single.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<single>",
                                        post: "</single>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "coop": {
                        label: 'Coop',
                        type: 'button',
                        icon: '/wachewiki/images/coop.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<coop>",
                                        post: "</coop>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "live": {
                        label: 'Live',
                        type: 'button',
                        icon: '/wachewiki/images/live.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<live>",
                                        post: "</live>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "multi": {
                        label: 'Multi',
                        type: 'button',
                        icon: '/wachewiki/images/multi.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<multi>",
                                        post: "</multi>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "bgesp": {
                        label: 'Bewerbungsgespräch',
                        type: 'button',
                        icon: '/wachewiki/images/bgesp.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<bgesp>",
                                        post: "</bgesp>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "puescho": {
                        label: 'Püschositzung',
                        type: 'button',
                        icon: '/wachewiki/images/puescho.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<puescho>",
                                        post: "</puescho>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'wwspecial',
        group: 'wache',
        tools: {
                "ia": {
                        label: 'Püschositzung',
                        type: 'button',
                        icon: '/wachewiki/images/ia.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<ia>",
                                        post: "</ia>"
                                }
                        }
                }
        }
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "strikethrough": {
                        label: 'Strike',
                        type: 'button',
                        icon: '//upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<s>",
                                        post: "</s>"
                                }
                        }
                }
        }
});

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "hline": {
                        label: 'Horizontal line',
                        type: 'button',
                        icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "----",
                                        ownline: true
                                }
                        }
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "comment": {
                        label: 'Comment',
                        type: 'button',
                        icon: '//upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<!-- ",
                                        post: " -->"
                                }
                        }
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "math": {
                        label: 'Math',
                        type: 'button',
                        icon: '//bits.wikimedia.org/skins-1.5/common/images/button_math.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<math>",
                                        post: "</math>"
                                }
                        }
                }
        }
} );


        /* Your code goes here */

};
 
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                                $(document).ready( customizeToolbar );
                        } );
                }
        } );
}