MediaWiki:JKeyWikiEditorHelp.js

From Species-ID
Revision as of 13:06, 7 November 2018 by Andreas Plank (Talk | contribs) (http/https: general solution trimming of protocol (http or https) of //URL)

Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
// <syntaxhighlight lang="javascript">
// This JavaScript will be loaded to help editing the jKey with the wikiEditor, see
// http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization
//
// NOTE: It is the German version as localisation did not work with labelMsg, textMsg etc. and related system messages.
// Maybe just a misunderstanding of the poor documented JavaScript source code of the wikiEditor. (Andreas Plank 2011-08-25 18:48:38)
//
// This program is free software; you can redistribute it and/or modify it under the terms of the EUPL v.1.1 or (at your option) the GNU General Public License as published by the Free
// Software Foundation; either GPL v.3 or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License (http://www.gnu.org/licenses/) for more details.
/* jslint maxerr: 50, indent: 2*/
var customizeToolbarJKeyWikiEditorHelp = function () {
  "use strict"; // set ECMAScript 5 Strict Mode
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    'sections': {
      'keyparameter': {
        'label': 'Help Key Start template',
        'type': 'booklet'
      }
    }
  });
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    'section': 'keyparameter',
    'pages': {
      'keystart': {
        'label': 'Key Start',
        'layout': 'table',
        'headings': [
          { 'textMsg': 'wikieditor-toolbar-help-heading-description' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-syntax' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-result' }
        ],
        'rows': [
          {
            'description': { 'html': 'Title: use a concise informative title. Vernacular names can be set by <b><tt>common names&nbsp;=&nbsp;\u2026</tt></b>' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;title&nbsp;=&nbsp;</b>\'\'Lamium\'\', including Yellow Archangel (syn. \'\'Galeobdolon\'\')<br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tbody>' +
                      '<tr>' +
                        '<th  style="color:black;">' +
                          '<i>Lamium</i>, including Yellow Archangel (syn. <i>Galeobdolon</i>)<span class="collapseButton noprint"><a href="#" title="' + $.resource('CollapseBox_toolTipCollapse') + '" onclick="return toggleCollapse(this,null);">' + $.resource('CollapseBox_captionCollapse') + '</a></span>' +
                        '</th>' +
                        '<td class="jkeyControls noprint">' +
                          '<span class="jkeyPlayerStart1st nowrap">' +
                              '<a href="#" onclick="return jkeySetMode(&quot;firststart&quot;,this);">' +
                                '<img src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/View-playback_Gion_simple.svg/20px-View-playback_Gion_simple.svg.png">' +
                              '</a>' +
                            '<br><input type="checkbox" id="toggleAllExtras" value="1" onclick="$.toggleAllCollapsible(this.checked)">' +
                            '<label for="toggleAllExtras" style="font-weight:normal;">' + $.resource('jKey_expandAll') + '</label>' +
                          '</span>' +
                        '</td>' +
                      '</tr>' +
                    '</tbody>' +
                  '</table>' +
                '</div>'
            }
          }, {
            'description': { 'html': 'Language' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;language</b> = English<br/>}}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Geographical scope' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;geoscope</b> = South England, Wales<br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">' +
                          '<b>Geographical scope:</b>' +
                           ' South England, Wales —' +
                          'Collaboration: open' +
                          '</div>' +
                        '</div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Audience: for whom' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;audience</b> = pupils, students<br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tr><th style="color:black;"></th></tr>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box"><b>Audience:</b> pupils, students — Collaboration: open</div>' +
                      '</td>' +
                    '</tr>' +
                  '</table>' +
                '</div>' }
          }, {
            'description': { 'html': 'Description: short description of the key' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;description =</b> A key to woody plants of Germany<br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tr><th style="color:black;"></th></tr>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">A key to woody plants of Germany<br/>Collaboration: open</div>' +
                      '</td>' +
                    '</tr>' +
                  '</table>' +
                '</div>'
            }
          }, {
            'description': { 'html': 'Authors/Creators' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;creators&nbsp;=&nbsp;</b> Pier Luigi Nimis<br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tbody>' +
                      '<tr>' +
                        '<td colspan="2">' +
                          '<div class="dt-header dt-box">' +
                            '<span class="dt-creators">' +
                              '<b>By:</b>' +
                              '<a href="http://www.offene-naturfuehrer.de/web/Pier_Luigi_Nimis" title="Pier Luigi Nimis">Pier Luigi Nimis</a>' +
                            '</span>' +
                            '<br>Collaboration: open' +
                          '</div>' +
                        '</td>' +
                      '</tr>' +
                    '</tbody>' +
                  '</table>' +
                '</div>'
            }
          }, {
            'description': { 'html': 'Source: cite references, literature' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;source&nbsp;=&nbsp;</b> Key modified after Schubert &amp; Vent (1982)<br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
              '<table class="dt-caption collapsible">' +
                '<tbody>' +
                  '<tr>' +
                    '<td colspan="2">' +
                      '<div class="dt-header dt-box">' +
                        '<b>Source:</b> ' +
                        'Key modified after Schubert &amp; Vent (1982) ' +
                        ' — Collaboration: open' +
                      '</div>' +
                    '</td>' +
                  '</tr>' +
                '</tbody>' +
              '</table>' +
            '</div>'
            }
          }, {
            'description': { 'html': 'Editing: restrict collaboration to the given authors' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;collaboration limited to&nbsp;=&nbsp;</b> Heinrich Hofmeister; Eckhard Garve<br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">' +
                          '<b>Collaboration limited to:</b>' +
                          ' Heinrich Hofmeister; Eckhard Garve' +
                        '</div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>' }
          }, {
            'description': { 'html': 'Editing: status' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;status&nbsp;=&nbsp;</b> under revision <br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">' +
                          'Collaboration: open — ' +
                          '<b>Status:</b>' +
                          'under revision' +
                        '</div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {//
            'description': { 'html': 'Editing: initiated by' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;initiated by&nbsp;=&nbsp;</b> Author<br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">Collaboration: open — <small><b>Initiated by:</b> Author</small></div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Editing: edited by' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;edited by&nbsp;=&nbsp;</b> Author <br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">Collaboration: open — <small><b>Edited by:</b> Author</small></div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Reviewing: general review by' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;general review by&nbsp;=&nbsp;</b> Authors <br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">Collaboration: open  — <small> <b>General review by</b>: Authors</small></div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>' }
          }, {
            'description': { 'html': 'Reviewing: reviewed nomenclature ' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;nomreview by&nbsp;=&nbsp;</b> Authors <br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">Collaboration: open  — <small> <b>Nomenclature revwied by</b>: Authors</small></div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Reviewing: review by an expert' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;expert review by&nbsp;=&nbsp;</b> Authors <br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-caption collapsible">' +
                  '<tbody>' +
                    '<tr>' +
                      '<td colspan="2">' +
                        '<div class="dt-header dt-box">Collaboration: open  — <small> <b>Taxonomic Revision by</b>: Authors</small></div>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Link to parent keys' },
            'syntax': {
              'html': '<tt>{{Key Start' +
                  '<br/>&nbsp;<b>|&nbsp;parent key&nbsp;=&nbsp;</b> Lamiaceae ' +
                  '<br/>&nbsp;<b>|&nbsp;common names =</b> Deadnettle' +
                  '<br/>&nbsp;| title = \'\'Lamium\'\', \u2026 ' +
                  '<br/>}}</tt>' },
            'result': {
              'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tbody>' +
                      '<tr>' +
                        '<th style="color:black;">' +
                          '<i>Lamium</i>, \u2026 (' +
                          '<span class="dt-commonnames">Deadnettle</span> ' +
                          '<a href="//offene-naturfuehrer.de/web/Lamiaceae" title="Lamiaceae">Lamiaceae</a>)' +
                          '<span class="collapseButton noprint">' +
                            '<a href="#" title="' + $.resource('CollapseBox_toolTipCollapse') + '" onclick="return toggleCollapse(this,null);">' + $.resource('CollapseBox_captionCollapse') + '</a>' +
                          '</span>' +
                        '</th>' +
                        '<td class="jkeyControls noprint">' +
                          '<span class="jkeyPlayerStart1st nowrap">' +
                            '<a href="#" onclick="return jkeySetMode(&quot;firststart&quot;,this);">' +
                              '<img src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/View-playback_Gion_simple.svg/20px-View-playback_Gion_simple.svg.png">' +
                            '</a>' +
                            '<br>' +
                            '<input type="checkbox" id="toggleAllExtras" value="1" onclick="$.toggleAllCollapsible(this.checked)">' +
                            '<label for="toggleAllExtras" style="font-weight:normal;">' + $.resource('jKey_expandAll') + '</label>' +
                          '</span>' +
                        '</td>' +
                      '</tr>' +
                    '</tbody>' +
                  '</table>' +
                '</div>'
            }
          }, {
            'description': { 'html': 'Link to parent keys: pagename differs from display text.' },
            'syntax': { 'html': '<tt>{{Key Start' +
                  '<br/>&nbsp;<b>|&nbsp;parent key&nbsp;=&nbsp;</b> Lamiaceae ' +
                  '<br/>&nbsp;<b>|&nbsp;parent key text&nbsp;=&nbsp;</b> The mints, Lamiaceae ' +
                  '<br/>&nbsp;| title = <i>Lamium</i>, \u2026 ' +
                  '<br/>}}</tt>' },
            'result': { 'html': '<div id="key" class="decisiontree" style="clear:both;background-color:white;">' +
                  '<table class="dt-caption collapsible">' +
                    '<tbody>' +
                      '<tr>' +
                        '<th style="color:black;">' +
                          '<i>Lamium</i>, \u2026 (' +
                          '<span class="dt-commonnames"></span>' +
                          '<a href="/web/Lamiaceae" title="Lamiaceae">The mints, Lamiaceae</a>)' +
                          '<span class="collapseButton noprint">' +
                            '<a href="#" title="' + $.resource('CollapseBox_toolTipCollapse') + '" onclick="return toggleCollapse(this,null);">' + $.resource('CollapseBox_captionCollapse') + '</a>' +
                          '</span>' +
                        '</th>' +
                        '<td class="jkeyControls noprint">' +
                          '<span class="jkeyPlayerStart1st nowrap">' +
                            '<a href="#" onclick="return jkeySetMode(&quot;firststart&quot;,this);">' +
                              '<img src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/View-playback_Gion_simple.svg/20px-View-playback_Gion_simple.svg.png">' +
                            '</a>' +
                            '<br>' +
                            '<input type="checkbox" id="toggleAllExtras" value="1" onclick="$.toggleAllCollapsible(this.checked)">' +
                            '<label for="toggleAllExtras" style="font-weight:normal;">' + $.resource('jKey_expandAll') + '</label>' +
                          '</span>' +
                        '</td>' +
                      '</tr>' +
                    '</tbody>' +
                  '</table>' +
                '</div>' }
          }, {
            'description': { 'html': 'Keywords, category (can be multiple)' },
            'syntax': { 'html': '<tt>{{Key Start<br/>&nbsp;<b>|&nbsp;category&nbsp;=&nbsp;</b> Flora <br/>}}</tt>' },
            'result': { 'html': '' }
          }
        ]
      },
      'leadresults': {
        'label': 'Lead: input + results',
        'layout': 'table',
        'headings': [
          { 'textMsg': 'wikieditor-toolbar-help-heading-description' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-syntax' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-result' }
        ],
        'rows': [
          {
            'description': { 'html': 'Simple input' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Flowers yellow or orange | 4 }}</tt>' },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Flowers yellow or orange  </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L_4"> ► 4</a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Input having a <b>„=“</b>' },
            'syntax': { 'html': '<tt>{{Lead <b>| 1 =</b> 1 <b>| 2 =</b> Flower bilateral (=zygomorphic) <b>| 3 =</b> 4 }}</tt>' },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Flower bilateral (=zygomorphic) </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L_4"> ► 4</a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Result: intermediate result' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Antenna very long: <b>\'\'\'Ensifera\'\'\'</b> | 4 }}</tt>' },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Antenna very long: <b>Ensifera</b></span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L_4"> ► 4</a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Result to a page (display text may differ)' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Flower yellow<br/>&nbsp;<b>|&nbsp;result =</b> Ranunculus (Germany) <br/>}}</tt>' +
              '<hr>' +
              '<tt>{{Lead | 1 | Flower yellow<br/>&nbsp;<b>|&nbsp;result =</b> Ranunculus (Germany)<br/>&nbsp;<b>|&nbsp;result text =</b> Buttercup (\'\'Ranunculus\'\') <br/>}}</tt>'
            },
            'result': {
              'html':  '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" style="color:black;">' +
                                '<span class="leadspan">Flower yellow </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadresults nowrap">' +
                                  '<span class="leadout nowrap">' +
                                    '<a href="http://offene-naturfuehrer.de/web/Ranunculus_(Deutschland)" title="Ranunculus (Germany)">' +
                                      'Buttercup (' +
                                      '<i>Ranunculus</i>' +
                                      ')' +
                                    '</a>' +
                                  '</span>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Result details, e.g. „male“ or „only 1 species“ etc.' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Flower yellow<br/>&nbsp;<b>|&nbsp;result =</b> \u2026<br/>&nbsp;<b>|&nbsp;result qualifier =</b> one species only <br/>}}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Result: common names, vernacular names' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;common names =</b> Edible Frog,  Common Water Frog| \u2026 }}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Result: synonyms' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;synonyms =</b> \'\'R. agilis\'\', \'\'R. gracilis\'\' | \u2026 }}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Result with a sub heading (default= „orange“). You can format this by <tt>subheadingstyle = </tt>' +
              '<span style="padding:1ex;background-color:#FCFFEC; border:1px solid #ffc51a;white-space:nowrap;display:inline-block;">orange</span>, ' +
              '<span style="padding:1ex;background-color:#e5febe; border:1px solid #c5de9e;white-space:nowrap;display:inline-block;">green</span>, ' +
              '<span style="padding:1ex;background-color:#FCFFEC; border:2px solid #ffc51a;white-space:nowrap;display:inline-block; font-size:120%;">bigorange</span> oder' +
              '<span style="padding:1ex;background-color:#e5febe; border:2px solid #c5de9e;white-space:nowrap;display:inline-block; font-size:120%;">biggreen</span>' +
              '<span style="padding:1ex;">simple</span> (=no background)'
            },
            'syntax': {
              'html': '<tt>{{Lead | 1 | Color grass- to dark-green | 4 <br/>&nbsp;<b>|&nbsp;subheading =</b> Skin mooth, color green}}</tt>' +
                '<hr>' +
                '<tt>{{Lead | 1 | Color grass- to dark-green | 4 <br/>&nbsp;<b>|&nbsp;subheading =</b>  Skin mooth, color green<br/>&nbsp;<b>|&nbsp;subheadingstyle = green</b>}}</tt>'
            },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr class="dt-subheading">' +
                      '<td colspan="6" style="font-weight:bold;padding:0.5em 0.75em 0.3em 0.75em; background-color:#e5febe; border:1px solid #c5de9e;">Skin mooth, color green</td>' +
                    '</tr>' +
                    '<tr class="dt-hspacer">' +
                      '<td></td>' +
                    '</tr>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Color grass- to dark-green </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L_4"> ► 4</a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Description more detailed' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;description =</b> details here \u2026 | \u2026 }}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Description: additional notes' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;remarks =</b> Difficult to determine, because \u2026 | \u2026 }}</tt>' },
            'result': { 'html': '' }
          }, {
            'description': { 'html': 'Description: habitat' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;occurrence =</b> Only on dry meadows \u2026 | \u2026 }}</tt>' },
            'result': { 'html': '' }
          }
        ]
      },
      'leadimages': {
        'label': 'Lead:  Images',
        'layout': 'table',
        'headings': [
          { 'textMsg': 'wikieditor-toolbar-help-heading-description' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-syntax' },
          { 'textMsg': 'wikieditor-toolbar-help-heading-result' }
        ],
        'rows': [
          {
            'description': { 'html': 'Images visible in the right margin (image a-e, max. 5)' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination<br/>&nbsp;<b>|&nbsp;image a =</b> File:Lamium_album4_ies.jpg<br/>&nbsp;<b>|&nbsp;caption a =</b> White Deadnettle (Photo: Frank Vincentz) <br/>}}</tt><pre style="white-space:pre">' +
              '                                  ┌───┬───┬───┬───┬───┐\n' +
              '  Text of determination \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 │ a │ b │ c │ d │ e │\n' +
              '                                  └───┴───┴───┴───┴───┘</pre>' },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Text of determination </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L"> ► </a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td>' +
                        '<table style="border:none; margin-top:0.1em;margin-left:1em;">' +
                          '<tbody>' +
                            '<tr>' +
                              '<td style="padding:0">' +
                                '<div class="center">' +
                                  '<div class="floatnone">' +
                                    '<a href="/wiki/File:Lamium_album4_ies.jpg" class="image">' +
                                      '<img alt="Lamium album4 ies.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')" src="//species-id.net/o/media/thumb/0/0d/Lamium_album4_ies.jpg/80px-Lamium_album4_ies.jpg" width="80" height="70" title="Lamium album4 ies.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')">' +
                                    '</a>' +
                                  '</div>' +
                                '</div>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Image (large) visible below the text with explicit set of width (default 600px). Number of caption lines can be increased by <tt>captionlines = 4</tt>.' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination' +
              '<br/>&nbsp;<b>|&nbsp;image j =</b> File:Dryades VAL00040.jpg' +
              '<br/>&nbsp;<b>|&nbsp;caption j =</b> Succulent plants' +
              '<br/>&nbsp;<b>|&nbsp;image j width =</b> 300' +
              '<br/>}}</tt><br><pre>' +
              '  Text of determination \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\n' +
              '      ┌───┬───┐\n' +
              '      │ j │ k │\n' +
              '      └───┴───┘\n' +
              '</pre>'
            },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Succulente plants </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L"> ► </a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                        '<table class="nested">' +
                          '<tbody>' +
                            '<tr style="vertical-align:top;">' +
                              '<td>' +
                                '<div style="padding:1em 1em 1em 0;float:left;width:315px;">' +
                                  '<div class="floatnone">' +
                                    '<a href="/wiki/File:Dryades_VAL00040.jpg" class="image">' +
                                      '<img alt="Dryades VAL00040.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')" src="//species-id.net/o/media/thumb/6/65/Dryades_VAL00040.jpg/300px-Dryades_VAL00040.jpg" width="300" height="75" title="Dryades VAL00040.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')">' +
                                    '</a>' +
                                  '</div>' +
                                '</div>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Images (hidden) below the text (image m-r,max. 6). Number of caption lines can be increased by <tt>captionlines = 4</tt>.' },
            'syntax': {
              'html': '<tt>{{Lead | 1 | Text for determination' +
                '<br/>&nbsp;<b>|&nbsp;image m =</b> File:Dryades VAL00040.jpg' +
                '<br/>&nbsp;<b>|&nbsp;image m caption =</b> Succulent plants' +
                '<br/>}}</tt>' +
                '<div class="collapsebox" style="width:350px;padding: 1em; border: 1px dashed #2f6fab;background-color: #f9f9f9;">' +
                  '<div class="switcher" style="cursor:pointer;color:blue;float:right;margin-left:0.5em;margin-right:0.25em;">' +
                    '<span class="hide" title="' + $.resource('CollapseBox_toolTipCollapse') + '">' + $.resource('CollapseBox_captionCollapse') + '</span>' +
                  '</div>' +
                  '<div class="collapsetitle" style="text-align:center;text-align:left;">  Text for determination \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026</div>' +
                  '<div class="collapsecontent" style="display:block;">' +
                    '<pre>\n' +
                    '    ┌───┬───┐\n' +
                    '    │ m │ n │\n' +
                    '    └───┴───┘\n' +
                    '    ┌───┬───┐\n' +
                    '    │ o │ p │\n' +
                    '    └───┴───┘\n' +
                    '    ┌───┬───┐\n' +
                    '    │ q │ r │\n' +
                    '    └───┴───┘' +
                    '</pre>' +
                  '</div>' +
                '</div>'
            },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested collapsible collapsed" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Succulente plants </span>' +
                                '<span class="collapseButton noprint">' +
                                  '<a href="#" title="' + $.resource('CollapseBox_toolTipExpand') + '" onclick="return toggleCollapse(this,null);"> (mehr...) </a>' +
                                '</span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L"> ► </a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                            '<tr style="display: none">' +
                              '<td class="leadextras" colspan="2">' +
                                '<div class="leadextras">' +
                                  '<table>' +
                                    '<tbody>' +
                                      '<tr style="display: none">' +
                                        '<td>' +
                                          '<table style="width:204px; float:left; border-collapse:collapse; margin:0px;">' +
                                            '<tbody>' +
                                              '<tr style="display: none">' +
                                                '<td style="height:204px; border:none; border-width:0px; padding:0px;">' +
                                                  '<div class="center">' +
                                                    '<div class="floatnone">' +
                                                      '<a href="/wiki/File:Dryades_VAL00040.jpg" class="image">' +
                                                        '<img alt="Dryades VAL00040.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')" src="//species-id.net/o/media/thumb/6/65/Dryades_VAL00040.jpg/200px-Dryades_VAL00040.jpg" width="200" height="50" title="Dryades VAL00040.jpg (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')">' +
                                                      '</a>' +
                                                    '</div>' +
                                                  '</div>' +
                                                '</td>' +
                                              '</tr>' +
                                              '<tr style="vertical-align: top; display: none">' +
                                                '<td style="display:block; height:2.4em; padding:0px;">' +
                                                  '<div style="height:2.4em; width:207px; line-height:1.15em; text-align:center; padding:2px 3px 1px 3px; overflow-y:auto; margin:0px; border:none; border-width:0px;"></div>' +
                                                '</td>' +
                                              '</tr>' +
                                            '</tbody>' +
                                          '</table>' +
                                        '</td>' +
                                      '</tr>' +
                                    '</tbody>' +
                                  '</table>' +
                                '</div>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td></td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }, {
            'description': { 'html': 'Image with a text reference, e.g. “Text of determination (Fig. a)”. Possible for image a-k' },
            'syntax': { 'html': '<tt>{{Lead | 1 | Text of determination (Fig. 1a)' +
              '<br/>&nbsp;| image a = File:Lamium_album4_ies.jpg' +
              '<br/>&nbsp;| caption a = White Deadnettle (Photo: Frank Vincentz) ' +
              '<br/>&nbsp;<b>|&nbsp;label a = 1a</b>' +
              '<br/>}}</tt>'
            },
            'result': {
              'html': '<div class="decisiontree" style="clear:both;background-color:white;">' +
                '<table class="dt-body" cellpadding="0" cellspacing="0">' +
                  '<tbody>' +
                    '<tr id="L_1_row" class="dt-row">' +
                      '<td id="L_1" class="dt-nodeid">1</td>' +
                      '<td class="leadalt"></td>' +
                      '<td class="lead-row1" colspan="3">' +
                        '<table class="nested" width="100%" cellspacing="0" cellpadding="0">' +
                          '<tbody>' +
                            '<tr>' +
                              '<th class="leadtxt" width="95%" style="color:black;">' +
                                '<span class="leadspan">Text of determination (Fig. 1a) </span>' +
                              '</th>' +
                              '<td class="leadresult">' +
                                '<span class="leadon">' +
                                  '<a href="#L"> ► </a>' +
                                '</span>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                      '<td>' +
                        '<table style="border:none; margin-top:0.1em;margin-left:1em;">' +
                          '<tbody>' +
                            '<tr>' +
                              '<td style="padding:0">' +
                                '<div class="overlaywrapper" style="position:relative;">' +
                                  '<div class="center">' +
                                    '<div class="floatnone">' +
                                      '<a href="/wiki/File:Lamium_album4_ies.jpg" class="image" title="White Deadnettle (Photo: Frank Vincentz)">' +
                                        '<img alt="White Deadnettle (Photo: Frank Vincentz) (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')" src="//species-id.net/o/media/thumb/0/0d/Lamium_album4_ies.jpg/80px-Lamium_album4_ies.jpg" width="80" height="70" title="White Deadnettle (Photo: Frank Vincentz) (' + $.resource('ImageZoom1st_toolTipImageZooming') + ')">' +
                                      '</a>' +
                                    '</div>' +
                                  '</div>' +
                                  '<div class="overlaylabel">1a</div>' +
                                '</div>' +
                              '</td>' +
                            '</tr>' +
                          '</tbody>' +
                        '</table>' +
                      '</td>' +
                    '</tr>' +
                  '</tbody>' +
                '</table>' +
              '</div>'
            }
          }
        ]
      }
    }
  });
};
/* Check if view is in edit mode and that the required modules are available. 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( customizeToolbarJKeyWikiEditorHelp );
      });
    }
  });
}

// </syntaxhighlight>