User:Andreas Plank/common.js

From Species-ID
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
if ( typeof $j !== 'undefined' && typeof $j.fn.wikiEditor !== 'undefined' ) {
  $j( function() {
     $j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
      'sections': {
        'programming': {
          'type': 'booklet',
          'label': 'Programming'
        }
      }
    } );
    $j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
      'section': 'programming',
      'pages': {
        'tags': {
          'layout': 'characters',
          'label': 'Wiki/HTML Tags',
          'characters': [{
              'label':"nbsp;",
              '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':"[[Category:]]",
              'action':{
                'type':'encapsulate','options':{'pre':"[[Category: ",'post':"]]"}
              }
            },{
              'label':"#REDIRECT [[]]",
              'action':{
                'type':'encapsulate','options':{'pre':"#REDIRECT [[",'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':"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':"<!-- ",'post':" -->"}
              }
            },{
              'label':"span",
              'action':{
                'type':'encapsulate','options':{'pre':'<span style="">','post':'</span>'}
              }
            },{
              'label':"div",
              'action':{
                'type':'encapsulate','options':{'pre':'<div style="">','post':'</div>'}
              }
            },{
              'label':"switch",
              'action':{
                'type':'encapsulate','options':{'pre':"{{#switch: ",'post':"<!--\n-->| one | two = <!--\n-->| #default = <!--\n-->}}<!-- switch end\n-->"}
              }
            },{
              'label':"{{DEFAULTSORT:}}",
              'action':{
                'type':'encapsulate','options':{'pre':"{{DEFAULTSORT:",'post':"}}"}
              }
            },
            '┌',
            '┬',
            '┐',
            '└',
            '┴',
            '┘',
            '│',
            '─',
            '├',
            '┼',
            '┤'

          /*  <s></s>   <sup></sup>   <sub></sub>  <ref></ref>   {{Reflist}}   <references/>  <span class="plainlinks"></span> */
          ]
        }
      }
    } );
  } );
}