Difference between revisions of "User:Andreas Plank/common.js"

From Species-ID
Jump to: navigation, search
m
m (Blanked the page)
 
Line 1: Line 1:
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':"{{#arraymap:}}",
 
              'action':{
 
                'type':'encapsulate','options':{'pre':"{{#arraymap: ",'peri' : '{{{field|}}}', 'post':"|;|§|[[My property::§]] |&#32;•&#32;}}"}
 
              }
 
            },{
 
              '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",
 
              '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':"}}"}
 
              }
 
            },{
 
              'label':"{{DISPLAYTITLE:}}",
 
              'action':{
 
                'type':'encapsulate','options':{'pre':"{{DISPLAYTITLE:",'post':"}}"}
 
              }
 
            },
 
            '┌',
 
            '┬',
 
            '┐',
 
            '└',
 
            '┴',
 
            '┘',
 
            '│',
 
            '─',
 
            '├',
 
            '┼',
 
            '┤'
 
  
          /*  <s></s>  <sup></sup>  <sub></sub>  <ref></ref>  {{Reflist}}  <references/>  <span class="plainlinks"></span> */
 
          ]
 
        }
 
      }
 
    } );
 
  } );
 
}
 

Latest revision as of 12:49, 14 March 2016