MediaWiki:Gadget-AddProgrammingToolbar.js: Unterschied zwischen den Versionen

Aus Open Source Ecology - Germany
Zur Navigation springen Zur Suche springen
(https loading)
Zeile 42: Zeile 42:
 
     wikiTags: 'Wiki/HTML Tags'
 
     wikiTags: 'Wiki/HTML Tags'
 
   }
 
   }
}
+
};
 
/**
 
/**
 
  * get local defaults
 
  * get local defaults

Version vom 21. März 2018, 17:46 Uhr

//<pre>
/*
 o ptions: { *
 pre:'{|'+classStr+"\n",
 peri:table,
 post:'|}',
 ownline:true

 type: "booklet"
 label string: non-localizable label string
 labelMsg string: key for localizable message string
 deferLoad boolean
 pages object: map of name keys to further objects:
 layout string required: 'table' or 'characters'
 label string: non-localizable label string
 labelMsg string: key for localizable message string
 headings string[]: array of objects? {textMsg: key} ??
 rows object[] optional?: array of objects? {'row key name': {message object?}}
 characters string[] optional?: array of strings of little character bits for insertion (???!)

 */


//<source lang="javascript">

var messagePT = {
  label: {
    blockquote: 'block quote',
    strikethrough: 'strike through',
    syntaxhighlight: 'syntax highlighting'
  },
  periText: {
    comment: 'comment:',
    defInlineTerm: 'Parameter',
    defInlineDefinition: 'Explanation',
    ref: 'Reference/Citation',
    tvar: 'content, text, link etc.'
  },
  sectionLabel: {
    programming: 'Programming',
    template: 'Templates',
    wikiTags: 'Wiki/HTML Tags'
  }
};
/**
 * get local defaults
 */
mw.loader.load(
  mw.config.get('wgScriptPath') + '/index.php?title=' +
  'MediaWiki:Gadget-AddProgrammingToolbar.js/local_defaults' +
  '&action=raw&ctype=text/javascript'
);

/**
 * override messages by wgUserLanguage
 */
mw.loader.load(
  mw.config.get('wgScriptPath') + '/index.php?title=' +
  'MediaWiki:Gadget-AddProgrammingToolbar.js/' + mw.config.get('wgUserLanguage') +
  '&action=raw&ctype=text/javascript'
);

var customizeThisUserWikiEditorToolbar = function () {
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    'section': 'advanced',
    'group': 'format',
    'tools': {
      'strikethrough': {
        label: messagePT.label.strikethrough,
        type: 'button',
        icon: 'https://upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
        action: {
          type: 'encapsulate',
          options: {
            pre: "<s>",
            post: "</s>"
          }
        }
      },
      'syntaxhighlight': {
        label: messagePT.label.syntaxhighlight,
        type: 'button',
        icon: 'https://upload.wikimedia.org/wikipedia/commons/d/d2/Button_source.png',
        action: {
          type: 'encapsulate',
          options: {
            pre: "<source lang=\"html4strict\">\n",
            post: "\n</source>"
          }
        }
      },
      'blockquote': {
        label: messagePT.label.blockquote,
        type: 'button',
        icon: 'https://upload.wikimedia.org/wikipedia/en/f/fd/Button_blockquote.png',
        action: {
          type: 'encapsulate',
          options: {
            pre: "<blockquote>\n",
            post: "\n</blockquote>"
          }
        }
      }
    }
  })
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    'sections': {
      'programming': {
        type: 'booklet',
        label: messagePT.sectionLabel.programming
      }
    }
  })

  $('#wpTextbox1').wikiEditor('addToToolbar', {
    'section': 'programming',
    'pages': {
      'tags': {
        'layout': 'characters',
        label: messagePT.sectionLabel.wikiTags,
        'characters': [{
          label: "nbsp;",
          action: {
            type: 'encapsulate', options: {pre: "&nbsp;", post: ""}
          }
        }, {
          label: "()",
          action: {
            type: 'encapsulate', options: {pre: "(", post: ")"}
          }
        }, {
          label: "[]",
          action: {
            type: 'encapsulate', options: {pre: "[", post: "]"}
          }
        }, {
          label: "[[]]",
          action: {
            type: 'encapsulate', options: {pre: "[[", post: "]]"}
          }
        }, {
          label: "{{}}",
          action: {
            type: 'encapsulate', options: {pre: '{{', post: '}}'}
          }
        }, {
          label: "{{{}}}",
          action: {
            type: 'encapsulate', options: {pre: "{{{", 'peri': '1', post: "}}}"}
          }
        }, {
          label: "{{{|}}}",
          action: {
            type: 'encapsulate', options: {pre: "{{{|", 'peri': '1', post: "}}}"}
          }
        }, {
          label: "[[Kategorie:]]",
          action: {
            type: 'encapsulate', options: {pre: '[[Kategorie: ', post: ']]'}
          }
        }, {
          label: "[[Category:]]",
          action: {
            type: 'encapsulate', options: {pre: '[[Category: ', post: ']]'}
          }
        }, {
          label: "[[Attribut:]]",
          action: {
            type: 'encapsulate',
            options: {
              /* no selection */
              pre: "[[Attribut: ",
              post: "]]",
              /* a selection */
              regex: /\s*(.+)\s*/,
              regexReplace: "[[Attribut: \$1 |\$1]]"
            }
          }
        }, {
          label: "[[property:]]",
          action: {
            type: 'encapsulate',
            options: {
              /* no selection */
              pre: "[[property: ",
              post: "]]",
              /* a selection */
              regex: /\s*(.+)\s*/,
              regexReplace: "[[property: \$1 |\$1]]"
            }
          }
        }, {
          label: "#WEITERLEITUNG [[]]",
          action: {
            type: 'encapsulate', options: {pre: "#WEITERLEITUNG [[", post: "]]"}
          }
        }, {
          label: "#REDIRECT [[]]",
          action: {
            type: 'encapsulate', options: {pre: "#REDIRECT [[", post: "]]"}
          }
        }, {
          label: "ref",
          action: {
            type: 'encapsulate', options: {pre: '<ref name="">', peri: messagePT.periText.ref, post: '</ref>'}
          }
        }, {
          label: "references",
          action: {
            type: 'encapsulate', options: {pre: '<references/>', post: ''}
          }
        }, {
          label: "noinclude",
          action: {
            type: 'encapsulate', options: {pre: "<noinclude>", post: "</noinclude>"}
          }
        }, {
          label: "includeonly",
          action: {
            type: 'encapsulate', options: {pre: "<includeonly>", post: "</includeonly>"}
          }
        }, {
          label: "onlyinclude",
          action: {
            type: 'encapsulate', options: {pre: "<onlyinclude>", post: "</onlyinclude>"}
          }
        }, {
          label: "translate",
          action: {
            type: 'encapsulate',
            options: {pre: "<translate>", post: "</translate>"}
          }
        }, {
          label: "tvar",
          action: {
            type: 'encapsulate',
            options: {pre: "<tvar|name>", peri: messagePT.periText.tvar, post: "</>"}
          }
        }, {
          label: "code",
          action: {
            type: 'encapsulate', options: {pre: "<code>", post: "</code>"}
          }
        }, {
          label: "nowiki",
          action: {
            type: 'encapsulate', options: {pre: "<nowiki>", post: "</nowiki>"}
          }
        }, {
          label: "code nowiki code",
          action: {
            type: 'encapsulate', options: {pre: "<code><nowiki>", post: "</nowiki></code>"}
          }
        }, {
          label: "comment",
          action: {
            type: 'encapsulate', options: {pre: "<!-- ", 'peri': messagePT.periText.comment, post: " -->"}
          }
        }, {
          label: "comment lt--gt",
          action: {
            type: 'encapsulate', options: {pre: "&lt;!-- ", 'peri': messagePT.periText.comment, post: " -->"}
          }
        }, {
          label: "span",
          action: {
            type: 'encapsulate', options: {pre: '<span style="">', post: '</span>'}
          }
        }, {
          label: "span.plainlinks",
          action: {
            type: 'encapsulate', options: {pre: '<span class="plainlinks">', post: '</span>'}
          }
        }, {
          label: "div",
          action: {
            type: 'encapsulate', options: {pre: '<div style="">', post: '</div>'}
          }
        }, {
          label: "{{SORTIERUNG:}}",
          action: {
            type: 'encapsulate', options: {pre: "{{SORTIERUNG: ", post: "}}"}
          }
        }, {
          label: "{{DEFAULTSORT:}}",
          action: {
            type: 'encapsulate', options: {pre: "{{DEFAULTSORT: ", post: "}}"}
          }
        }, {
          'label': "div.definition-inline",
          'action': {
            'type': 'encapsulate',
            'options': {
              'pre': '<div class="definition-inline">\n; ',
              'peri': messagePT.periText.defInlineTerm,
              'post': ' : ' + messagePT.periText.defInlineDefinition + '\n</div>'
            }
          }
        }, {
          label: "{{#arraymap:}}",
          action: {
            type: 'encapsulate',
            options: {pre: "{{#arraymap: ", peri: '{{{field|}}}', post: '|;|§|[[My property::§]] |&#32;•&#32;}}'}
          }
        }, {
          label: "{{#arraymap:long}}",
          action: {
            type: 'encapsulate',
            options: {
              pre: "{{#arraymap: ",
              peri: '{{{field|}}}',
              post: '<!-- values\n-->|;<!-- split on ;\n-->|§<!-- assign temporary variable\n-->|[[My property::§]] <!-- output\n-->|&#32;•&#32;<!-- new output separator\n-->}}'
            }
          }
        }, {
          label: "if",
          action: {
            type: 'encapsulate', options: {pre: "{{#if: ", post: "| | }}"}
          }
        }, {
          label: "if long",
          action: {
            type: 'encapsulate',
            options: {pre: "<!--\n-->{{#if: ", post: "<!--\nthen-->|<!--\nelse-->|<!--\n-->}}<!-- if end\n-->"}
          }
        }, {
          label: "switch CONTENTLANGUAGE",
          action: {
            type: 'encapsulate',
            options: {
              pre: "{{#switch: {{CONTENTLANGUAGE}}",
              post: "<!--\n-->|de|de-formal= deutsch <!--\n-->| #default = english<!--\n-->}}<!-- switch end\n-->"
            }
          }
        }, {
          label: "switch",
          action: {
            type: 'encapsulate',
            options: {
              pre: "{{#switch: ",
              post: "<!--\n-->| one | two = <!--\n-->| #default = <!--\n-->}}<!-- switch end\n-->"
            }
          }
        }, {
          label: "table",
          action: {
            type: 'encapsulate',
            options: {
              pre: '<table>',
              peri: '<!--\n--><tr><!--\n  --><td></td><!--\n--></tr><!--\n-->',
              post: '</table>'
            }
          }
        }, {
          label: "tr",
          action: {
            type: 'encapsulate',
            options: {pre: '<tr>', peri: '<!--\n  --><td></td><!--\n-->', post: '</tr>'}
          }
        }, {
          label: "th",
          action: {
            type: 'encapsulate',
            options: {pre: '<th>', post: '</th>'}
          }
        }, {
          label: "td",
          action: {
            type: 'encapsulate',
            options: {pre: '<td>', post: '</td>'}
          }
        },
          '┌',
          '┬',
          '┐',
          '└',
          '┴',
          '┘',
          '│',
          '─',
          '├',
          '┼',
          '┤'
          /*  <s></s>   <sup></sup>   <sub></sub>  */
        ]
      },
      'templates': {
        'layout': 'characters',
        label: messagePT.sectionLabel.template,
        'characters': [
          /*
          {
            label: "Keyboard",
            action: {
              type: 'encapsulate', options: {pre: "{{Keyboard |", post: "}}"}
            }
          }, {
            label: "Zitat",
            action: {
              type: 'encapsulate', options: {pre: '{{Zitat |', post: '}}'}
            }
          }, {
            label: "Zitat versteckt",
            action: {
              type: 'encapsulate', options: {pre: '{{Zitat versteckt|', post: '}}'}
            }
          },
           */
          {
            label: "nbsp;",
            action: {
              type: 'encapsulate',
              options: {pre: "&nbsp;", post: ""}
            }
          }, {
            label: "()",
            action: {
              type: 'encapsulate',
              options: {pre: "(", post: ")"}
            }
          }, {
            label: "[]",
            action: {
              type: 'encapsulate',
              options: {pre: "[", post: "]"}
            }
          }, {
            label: "[[]]",
            action: {
              type: 'encapsulate',
              options: {pre: "[[", post: "]]"}
            }
          }, {
            label: "{{}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{", post: "}}"}
            }
          }, {
            label: "{{{}}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{{", post: "}}}"}
            }
          }, {
            label: "{{{|}}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{{", post: "|}}}"}
            }
          }, {
            label: "noinclude",
            action: {
              type: 'encapsulate',
              options: {pre: "<noinclude>", post: "</noinclude>"}
            }
          }, {
            label: "includeonly",
            action: {
              type: 'encapsulate',
              options: {pre: "<includeonly>", post: "</includeonly>"}
            }
          }, {
            label: "onlyinclude",
            action: {
              type: 'encapsulate',
              options: {pre: "<onlyinclude>", post: "</onlyinclude>"}
            }
          }, {
            label: "nowiki",
            action: {
              type: 'encapsulate',
              options: {pre: "<nowiki>", post: "</nowiki>"}
            }
          }, {
            label: "comment",
            action: {
              type: 'encapsulate',
              options: {pre: "<!-- ", post: " -->"}
            }
          }, {
            label: "{{#arraymap:}} long",
            action: {
              type: 'encapsulate',
              options: {
                pre: "{{#arraymap: ",
                peri: '{{{field|}}}',
                post: "<!--\n-->|;<!-- sep\n-->|§<!-- assign temporary var\n-->|[[My property::§]] <!--output\n-->|&#32;•&#32;<!--output sep\n-->}}<!-- end arraymap \n-->"
              }
            }
          }, {
            label: "{{#arraymap:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#arraymap: ", peri: '{{{field|}}}', post: "|;|§|[[My property::§]] |&#32;•&#32;}}"}
            }
          }, {
            label: "{{#ask:table}}",
            action: {
              type: 'encapsulate',
              options: {
                pre: "{{#ask: ",
                peri: '[[PAGE]] [[property::+]]',
                post: " | ?displayprop |? | mainlabel=- | link=none | format = table | limit = 500}}"
              }
            }
          }, {
            label: "{{#ask:list}}",
            action: {
              type: 'encapsulate',
              options: {
                pre: "{{#ask: ",
                peri: '[[PAGE]] [[property::+]]',
                post: " | ?displayprop | mainlabel=- | link=none | format = list | sep=&#32;•&#32; | limit = 500}}"
              }
            }
          }, {
            label: "{{#vardefine:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#vardefine: ", peri: 'myVar', post: "| }}"}
            }
          }, {
            label: "{{#varexist:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#varexist: ", peri: 'myVar', post: "}}"}
            }
          }, {
            label: "{{#var:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#var: ", peri: 'myVar', post: "}}"}
            }
          }, {
            label: "if",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#if: ", post: "| | }}"}
            }
          }, {
            label: "if long",
            action: {
              type: 'encapsulate',
              options: {pre: "<!--\n-->{{#if: ", post: "<!--\nthen-->|<!--\nelse-->|<!--\n-->}}<!-- end if\n-->"}
            }
          }, {
            label: "ifexist",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#ifexist: ", post: "| | }}"}
            }
          }, {
            label: "ifexist long",
            action: {
              type: 'encapsulate',
              options: {
                pre: "<!--\n-->{{#ifexist: ",
                post: "<!--\nthen-->|<!--\nelse-->|<!--\n-->}}<!-- end ifexist\n-->"
              }
            }
          }, {
            label: "{{#expr:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{#expr: ", peri: '1 + 6', post: "}}"}
            }
          }, {
            label: "switch",
            action: {
              type: 'encapsulate',
              options: {
                pre: "{{#switch: ",
                post: "<!--\n-->| one | two = <!--\n-->| #default = <!--\n-->}}<!-- end switch\n-->"
              }
            }
          }, {
            label: "{{DEFAULTSORT:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{DEFAULTSORT:", post: "}}"}
            }
          }, {
            label: "{{DISPLAYTITLE:}}",
            action: {
              type: 'encapsulate',
              options: {pre: "{{DISPLAYTITLE:", post: "}}"}
            }
          },
          '{{PAGENAME}}',
          '{{PAGENAMEE}}',
          '{{FULLPAGENAME}}',
          '{{FULLPAGENAMEE}}'
        ]
      }
    }
  })
}

/* 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', function () {
        $(document).ready(customizeThisUserWikiEditorToolbar)
      })
    }
  })
}

// </source>
// </pre>