User talk:Robinr78/common.js: Difference between revisions

From Robin's SM-201 Website
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pre>
var customizeToolbar = function () {
var customizeToolbar = function () {
/* srtable as of 2021-0218 */
/* stable as of 2023-0107 */


/* ================================================== */
/*  Enable section:SM-201 */
/*  Enable section:SM-201 */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
Line 11: Line 13:
}
}
} );
} );
/* Enable section:Other */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  'sections': {
'Other': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Other'
}
}
} );




Line 34: Line 25:
} );
} );


/* --- Enable Format:Comment */


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
Line 115: Line 105:
});
});


/* --- Enable Format:Template Item */
/* --- Enable Format:Template Dot */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Item": {
"Dot": {
label: 'Item',
label: 'Dot',
type: 'button',
type: 'button',
icon: 'http://sm-201.org/a/images/0/02/Button_dot.png',
icon: 'http://sm-201.org/a/images/0/02/Button_dot.png',
Line 148: Line 138:
options: {
options: {
pre: "{{bc|",
pre: "{{bc|",
                                        post:"}}"
                    post:"}}"
}
}
}
}
Line 154: Line 144:
}
}
});
});


/* --- Enable Format:Book title */
/* --- Enable Format:Book title */
Line 175: Line 166:
});
});


/* --- Enable Format:Book title */
/* --- Enable Format:Underline */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Book link": {
"Underline": {
label: 'Book link',
label: 'Underline',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e0/Editor_book.png',
icon: 'http://www.sm-201.org/a/images/7/73/Editor_ul.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '"<I>[[',
pre:  "<u>",
                                        post: ']]</I>"'
post: "</u>",
}
}
}
}
Line 195: Line 186:
});
});


/* --- Enable Format:Book title */
/* --- Enable Format:Strike through*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Book title": {
"Strike": {
label: 'Book Title',
label: 'Strike',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e0/Editor_book.png',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '"<I>',
pre:  '<s>',
                                        post: '</I>"'
post: '</s>',
}
}
}
}
Line 215: Line 206:
});
});


/* --- Enable button Other:Also:Movies */
/* --- Enable Format:button [[ link ]] */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Movies": {
"Template": {
label: 'Movies',
label: 'Link',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/6/6d/Editor_m_.png',  
icon: 'http://www.sm-201.org/a/images/c/c0/Button_link.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Movies",
pre: '[[',
                    post:"}}"
post: ']]'
}
}
}
}
}
}
}
}
});
} );


/* --- Enable Format:Underline */
/* --- Enable Format:button {{ }} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'format',
tools: {
tools: {
"Underline": {
"Template": {
label: 'Underline',
label: 'Template',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/7/73/Editor_ul.png',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<u>",
pre: "{{",
post: "</u>",
post: "}}"
}
}
}
}
}
}
}
}
});
} );


/* --- Enable Format:Strike through*/
/* --- Enable Format:button Quotes */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Strike": {
"Quotes": {
label: 'Strike',
label: 'Quotes',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_quot.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '<s>',
pre:  '"',
post: '</s>',
post: '"',
}
}
}
}
Line 275: Line 266:
});
});


/* --- Enable Format:button [[link]] */
/* --- Enable Format:button moz-column */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Template": {
"Columns": {
label: 'Link',
label: 'Columns',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c0/Button_link.png',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '[[',
pre:  "<div style='-moz-column-count:2; column-count:2;'>",
post: ']]'
post: "</div>",
}
}
}
}
}
}
}
}
} );
});


/* --- Enable Format:button {{ }} */
/* --- Enable Format:button Center */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'format',
group: 'Format',
tools: {
tools: {
"Template": {
"Center": {
label: 'Template',
label: 'Center',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_center.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{",
pre: '<center>',
post: "}}"
post: '</center>',
}
}
}
}
}
}
}
}
} );
});


/* --- Enable Format:button Quotes */
/* --- Enable Format:button Justify */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Format',
tools: {
tools: {
"Quotes": {
"Justify": {
label: 'Quotes',
label: 'Justify',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_quot.png',
icon: 'http://www.sm-201.org/a/images/0/0f/Button_just.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '"',
pre:  '<p align="justify">',
post: '"',
post: '</p>',
}
}
}
}
Line 335: Line 326:
});
});


/* --- Enable Format:button moz-column */
/* Enable Group:Inc:  ================================== */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
'groups': {
'Inc': {
'label': 'Inc'
}
}
} );
 
/* --- Enable button Inc:Includeonly */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
group: 'Inc',
tools: {
tools: {
"Columns": {
"Incl": {
label: 'Columns',
label: 'Incl',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
  icon: 'http://www.sm-201.org/a/images/3/3b/Button_in.jpg',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<div style='-moz-column-count:2; column-count:2;'>",
pre: "<includeonly>",
post: "</div>",
                                        post:"</includeonly>"
}
}
}
}
Line 355: Line 356:
});
});


/* --- Enable Format:button Center */
/* --- Enable button Inc:Noinclude */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Inc',
tools: {
tools: {
"Center": {
"Noinclude": {
label: 'Center',
label: 'Noinclude',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_center.png',
      icon: 'http://www.sm-201.org/a/images/1/1b/Button_no.jpg',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '<center>',
pre: "<noinclude>",
post: '</center>',
                                        post:"</noinclude>"
}
}
}
}
Line 375: Line 376:
});
});


/* --- Enable Format:button Justify */
/* --- Enable button Inc:Nowiki */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Format',
group: 'Inc',
tools: {
tools: {
"Justify": {
"Nowiki": {
label: 'Justify',
label: 'Nowiki',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/0/0f/Button_just.png',
      icon: 'http://www.sm-201.org/a/images/a/a6/Button_quiet.jpg',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '<p align="justify">',
pre: "<nowiki>",
post: '</p>',
                                        post:"</nowiki>"
}
}
}
}
Line 395: Line 396:
});
});


/* Enable Group:Inc:  */
 
/* Enable group:SM-201:Cats ============================ */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
    section: 'SM-201',
'groups': {
'groups': {
'Inc': {
'Cats': {
'label': 'Inc'  
'label': 'Cats'  
}
}
}
}
} );
} );


/* --- Enable button Inc:Includeonly */
/* --- Enable button Cats:Category  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Inc',
group: 'Cats',
tools: {
tools: {
"Incl": {
"Cats": {
label: 'Incl',
label: 'Category',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/3b/Button_in.jpg',  
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<includeonly>",
pre: '[[Category:',
                                        post:"</includeonly>"
post: ']]'
}
}
}
}
}
}
}
}
});
} );
 


/* --- Enable button Inc:Noinclude */
/* --- Enable button Cats:Category2  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Inc',
group: 'Cats',
tools: {
tools: {
"Noinclude": {
"Cats": {
label: 'Noinclude',
label: 'Category',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/1/1b/Button_no.jpg',  
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<noinclude>",
pre: '{{cat|',
                                        post:"</noinclude>"
post: '}'
}
}
}
}
}
}
}
}
});
} );


/* --- Enable button Inc:Nowiki */
 
/* --- Enable button SM201|Cats:{{lc */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Inc',
group: 'Cats',
tools: {
tools: {
"Nowiki": {
"{{lc": {
label: 'Nowiki',
label: '{{lc',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/a/a6/Button_quiet.jpg',  
icon: 'http://www.sm-201.org/a/images/3/36/Button_lc.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<nowiki>",
pre: "{{lc|",
                                        post:"</nowiki>"
post: "}}"
}
}
}
}
Line 465: Line 469:
});
});


/* Enable group:Notes: */
 
/* Enable group:Refs: ========================= */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
     section: 'SM-201',
     section: 'SM-201',
Line 508: Line 513:
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<ref group="Note"",
pre: '<ref group="Note">',
                    post:"</ref>"
}
}
}
}
});
 
/* --- Enable button Refs:<src> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
group: 'Refs',
tools: {
"Src": {
label: 'Src',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
action: {
type: 'encapsulate',
options: {
pre: '<ref group="Source">',
                     post:"</ref>"
                     post:"</ref>"
}
}
Line 549: Line 574:
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "== References ==<br><References />,
pre: "== References ==\n",
                                         post:""
                                         post:"<References />"
}
}
}
}
Line 562: Line 587:
group: 'Refs',
group: 'Refs',
tools: {
tools: {
"Ref": {
"Note": {
label: 'RefList',
label: 'Note',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
   icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
Line 569: Line 594:
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<references group="Note" />",
pre: '== Notes ==\n',
                                        post:""
                                        post:'<references group="Note" />'
}
}
}
}
Line 577: Line 602:
});
});


 
/* --- Enable button Refs:<reflist> */
 
 
 
 
/* --- Enable button model */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Refs',
group: 'Refs',
tools: {
tools: {
"Main": {
"Ref": {
label: 'Main',
label: 'SrcList',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/6/6d/Editor_m_.png',  
icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Main|",
pre: '== Sources ==\n',
                    post:"}}"
                                        post:'<references group="Source" />'
}
}
}
}
Line 602: Line 622:
});
});


 
/* --- Enable button Notes:@wr */
 
/* ---- Enable Links:Site ok */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Refs',
group: 'Refs',
tools: {
tools: {
"Refs": {
"Needs": {
label: 'YGroups',
label: '{wref"}',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png',
   icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{YGroups|",
pre: '{{wref"|',
                     post:"}}"
                     post:"}}"
}
}
Line 624: Line 642:
});
});


/* --- Enable button Notes:@wr */
/* Enable group:Notes: ======================== */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
    section: 'SM-201',
group: 'Refs',
'groups': {
'Notes': {
'label': 'Notes'
}
}
} );
 
 
/* --- Enable button Notes:header| */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
group: 'Notes',
tools: {
tools: {
"Needs": {
"Needs": {
label: '{wref"}',
label: 'Header',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
   icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '{{wref"|',
pre: "{{Header|",
                    post:"}}"
                                        post:" 01/23}}"
}
}
}
}
}
}
}
}
});
} );


/* Enable group:Notes: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'SM-201',
'groups': {
'Notes': {
'label': 'Notes'
}
}
} );


/* --- Enable button Notes:Category  */
/* --- Enable button Notes:headred */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Cats": {
"Needs": {
label: 'Category',
label: 'Headred',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
  icon: 'http://www.sm-201.org/a/images/c/c8/Button_redirect.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '[[Category:',
pre: "{{Headred|",
post: ']]'
                                        post:" 01/23}}"
}
}
}
}
}
}
}
}
} );
});


/* --- Enable button Notes:Calendar */
/* --- Enable button Notes:Defaultsort */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"mm/yr": {
"{DS}": {
label: '02/21',
label: '(DS)',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/a/a7/Button_cal.png',
  icon: 'http://www.sm-201.org/a/images/1/18/Editor_d.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "02/21",
pre: "{{DEFAULTSORT:",
post: ""
                                        post:"}}"
}
}
}
}
}
}
}
}
} );
});
 


/* --- Enable button Notes:header */
/* --- Enable button Notes:footer */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Needs',
group: 'Notes',
tools: {
tools: {
"Needs": {
"Footer": {
label: 'Header',
label: 'Footer',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
   icon: 'http://www.sm-201.org/a/images/3/31/Editor_f.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Header",
pre: "{{Footer",
                                        post:"}}"
                                      post:"}}"
}
}
}
}
Line 714: Line 735:
});
});


/* --- Enable button Notes:header| */
/* --- Enable button Notes:Category:needs */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
Line 720: Line 741:
tools: {
tools: {
"Needs": {
"Needs": {
label: 'Header',
label: 'Needs',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
   icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Header|",
pre: "{{Needs}",
                                         post:" 02/21}}"
                                         post:""
}
}
}
}
Line 734: Line 755:
});
});


/* --- Enable button Notes:footer */
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
/* --- Enable button Notes:Heads2 */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Footer": {
"A2": {
label: 'Footer',
label: 'Heads2',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/31/Editor_f.png',
icon: 'http://www.sm-201.org/a/images/e/e9/Button_headline2.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Footer",
pre: '== ',
                                        post:"}}"
post: ' =='
}
}
}
}
}
}
}
}
});
} );
 


/* --- Enable button Notes:Category:needs */
/* --- Enable button Notes:Heads3  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Needs": {
"A3": {
label: 'Notes',
label: 'Heads3',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
icon: 'http://www.sm-201.org/a/images/3/3a/Button_headline3.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Needs",
pre: '=== ',
                                        post:"}}"
post: ' ==='
}
}
}
}
}
}
}
}
});
} );


/* --- Enable button model */
/* --- Enable button Notes:Wiki:@  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Model": {
"Needs": {
label: 'Model',
label: 'Wikimain',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/6/6d/Editor_m_.png',  
  icon: 'http://www.sm-201.org/a/images/8/82/Wikilogo-20.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Infobox model",
pre: "{{Wikimain|",
                                         post:""
                                         post:"|_}}"
}
}
}
}
Line 794: Line 817:
});
});


/* --- Enable button Pornstud  */
/* --- Enable button Notes:Wikilink */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Pornstud": {
"{{Wl|": {
label: 'Model',
label: '{{wl|',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/9/9f/Button_male.png',  
  icon: 'http://www.sm-201.org/a/images/e/ef/Button_para.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Infobox pornstud",
pre: "{{Wl|",
                                         post:""
                                         post:"}}"
}
}
}
}
Line 814: Line 837:
});
});


/* --- Enable Pornstar */
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
/* --- Enable button Notes:Redirect */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Model": {
"Redirect": {
label: 'Model',
label: 'Redirect',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ea/Cat-model.jpg',
  icon: 'http://www.sm-201.org/a/images/c/c8/Button_redirect.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
                                pre: '{{Infobox pornstar',
pre: "#REDIRECT [[",
post: ''
                                        post:"]]"
}
}
}
}
}
}
}
}
} );
});
 


/* --- Enable button Notes:toporn  */
/* --- Enable button Notes:Wikilink */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"toporn": {
"ReCat": {
label: '',
label: 'ReCat',
type: 'button',
type: 'button',
icon: 'http://sm-201.org/a/images/1/19/Editor_t.png',
  icon: 'http://www.sm-201.org/a/images/7/70/RedirectCat.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '{{toporn|add=} }',
pre: "#REDIRECT [[]]\n{{Headred|<from> 01/23}}\n",
post: ''
                                        post:"{{DEFAULTSORT:<from>}}\n{{cat| }"
}
}
}
}
}
}
}
}
} );
});


 
/* --- Enable button Notes:SHP matrix */
/* --- Enable button Notes:ok  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Notes',
tools: {
tools: {
"Needs": {
"SHP": {
label: 'sa-porn',
label: 'SHP',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
   icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{sa-porn",
pre: "{{shp|rpm=|emh=|bah=|etv=|bur=|msh=|pin=|sph=|show=|eve=|wwii=|yank=}}",
                     post:"}}"
                     post:""
}
}
}
}
Line 875: Line 900:
});
});


/* --- Enable button Notes:ltx8  */
/* Main Links ======================================= */
 
/* Enable group:Links: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
'groups': {
'Links': {
'label': 'Links'
}
}
} );
 
 
/* ---- Enable Links:See also */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"ltx8": {
"Links": {
label: 'ltx8',
label: 'See also',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/1/16/Editor_l.png',
   icon: 'http://www.sm-201.org/a/images/c/c7/Button_see-also.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{ltx8|Latex‏|Latex shopping‏‎|Latex clothing|Latex stores|Latex online|Latex clothing designers|Latex clothing manufacturers|Latex suppliers",
pre: "{{sa|",
post:"‏‎"
                post:"}}"
}
}
}
}
Line 895: Line 933:
});
});


/* --- Enable button Notes:Heads2  */
/* ### So far, so good */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
 
/* --- Enable Links:External links*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"A2": {
'External': {
label: 'Heads2',
label: 'External',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e9/Button_headline2.png',
icon: 'http://www.sm-201.org/a/images/e/e3/Editor_e.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '==',
                pre: "== External links ==",
post: '=='
post: '',
}
}
}
}
}
}
}
}
} );
});


 
/* ---- Enable Links:Sanity */
/* --- Enable button Notes:dagger  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"dagger": {
"Links": {
label: 'dagger',
label: 'Sanity',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/b/b1/Button_dagger.png',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '&dagger;',
pre: "{{Sanity check|01/23|R/}}",
post: ''
                post:""
}
}
}
}
}
}
}
}
} );
});
 


/* --- Enable button Notes:Wiki:@  */
/* ---- Enable Links:Site ok */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"Needs": {
"Links": {
label: 'Wikimain',
label: 'Link OK',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/8/82/Wikilogo-20.png',  
   icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Wikimain|",
pre: "{{Site-ok|01/23 R/}} ",
                                        post:"|_}}"
                    post:""
}
}
}
}
Line 956: Line 997:
});
});


/* --- Enable button Notes:Redirect */
/* ---- Enable Links:Red */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"Redirect": {
"Links": {
label: 'Redirect',
label: 'Footer',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/c/c8/Button_redirect.png',
   icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "#REDIRECT [[",
pre: "{{Site-red|01/23 R/}}{{Site-def|01/23 R/}}",
                                        post:"]]"
                    post:"{{Site-hij|01/23 R/}}"
}
}
}
}
Line 976: Line 1,017:
});
});


/* --- Enable button Notes:SHP matrix */
 
/* --- Enable Links:Strike through*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"SHP": {
"Strike": {
label: 'SHP',
label: 'Strike',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{shp|rpm=|emh=|bah=|etv=|bur=|msh=|pin=|sph=|show=|eve=|wwii=|yank=}}",
pre: '<s>',
                    post:""
post: '</s>',
}
}
}
}
Line 996: Line 1,038:
});
});


/* --- Enable button Notes:Defaultsort  */
/* ---- Enable Links:<cr> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Links',
tools: {
tools: {
"{DS}": {
"Links": {
label: '(DS)',
label: '<cr>',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/1/18/Editor_d.png',
   icon: 'http://www.sm-201.org/a/images/c/c7/Button_cr.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{DEFAULTSORT:",
pre: "<br>",
                                        post:"}}"
                    post:""
}
}
}
}
Line 1,016: Line 1,058:
});
});


/* --- Enable button Notes:insert image */
 
$('#wpTextbox1').wikiEditor('addToToolbar', {
 
/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
'groups': {
tools: {
'Files': {
"Needs": {
'label': 'Files'
label: 'image:',
}
}
} );
 
/* --- Enable Files:Copyright unknown */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
group: 'Files',
tools: {
"Copy": {
label: 'Copy',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/5/5e/Editor_i.png',
   icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
    pre: "Image:",
pre: 'Copyright info not available/ownership unknown',
                                    post:""
post: ''
}
}
}
}
}
}
}
}
});
} );
 
 


/* --- Enable button mt - MT coloumn */
/* --- Enable Files:{{fs */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Files',
tools: {
tools: {
"MT": {
"{fs": {
label: 'MT',
label: '{fs',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/a/ad/Button_mt.png',
icon: 'http://sm-201.org/a/images/0/02/Button_dot.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "|| &nbsp; ",
pre: '.',
                    post:""
post: '.'
}
}
}
}
}
}
}
}
});
} );


 
/* --- Enable Files:Mo/Yr */
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
 
 
/* --- Enable button Notes:@wr */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Notes',
group: 'Files',
tools: {
tools: {
"Needs": {
"Date": {
label: '{wr}',
label: 'Date',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
icon: 'http://www.sm-201.org/a/images/0/01/Button-cal.jpg',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{@wr",
pre: '01/23',
                    post:"}}"
post: ''
}
}
}
}
}
}
}
}
});
} );
 
 


/* Enable group:Links: */
/* --- Enable Files:Thumbnail */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
'groups': {
group: 'Files',
'Links': {
tools: {
'label': 'Links'  
"rasw": {
label: 'rasw',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/d/d5/Editor_r.png',
action: {
type: 'encapsulate',
options: {
pre:  '* {{rasw|',
post: '}'
}
}
}
}
}
}
} );
} );


 
/* --- Enable Files:Thumbnail */
/* --- Enable Links:External links*/
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Links',
group: 'Files',
tools: {
tools: {
'External': {
"Thumb": {
label: 'External',
label: 'Thumb',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e3/Editor_e.png',
icon: 'http://www.sm-201.org/a/images/6/6f/Button_thumb.jpg',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
                pre: "== External links ==",
pre: '[[File:',
post: '',
post: '|thumb|right|200px|{{bc|}}]]'
}
}
}
}
}
}
}
}
});
} );




 
/* --- Enable Files:Gallery */
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
 
/* ---- Enable Links:Sanity */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Links',
group: 'Files',
tools: {
tools: {
"Links": {
"Gallery": {
label: 'Sanity',
label: 'Gallery',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
icon: 'http://www.sm-201.org/a/images/6/60/Button_insert_table.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Sanity check|02/21|R/}}",
pre: '<gallery mode="packed" heights="200px" caption=""> ',
                post:""
post: '</gallery>'
}
}
}
}
}
}
}
}
});
} );
 


/* ---- Enable Links:Site ok */
/* --- Enable Files:Screenies */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'SM-201',
group: 'Links',
group: 'Files',
tools: {
tools: {
"Links": {
"Screenies": {
label: 'Link OK',
label: 'Screenies',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png',
icon: 'http://www.sm-201.org/a/images/0/0a/Button_screenie.jpg',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Site-ok|02/21 R/}} ",
pre: '[[MOVB]] screenies for ',
                    post:""
post: ''
}
}
}
}
}
}
}
}
});
} );
/* Enable section:Page =============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  'sections': {
'Info': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Info'
}
}
} );
 


/* ---- Enable Links:Red */
/* Enable Group:Format: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Info',
'groups': {
'Page': {
'label': 'Page'
}
}
} );
 
/* --- Enable button model */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Links',
group: 'Page',
tools: {
tools: {
"Links": {
"Model": {
label: 'Footer',
label: 'Model',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
      icon: 'http://www.sm-201.org/a/images/6/6d/Editor_m_.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Site-red|02/21 R/}} ",
pre: "{{Infobox model",
                    post:""
                                        post:""
}
}
}
}
Line 1,176: Line 1,256:
});
});


/* --- Enable Links:Strike through*/
/* --- Enable Pornstar */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Links',
group: 'Page',
tools: {
tools: {
"Strike": {
"Model": {
label: 'Strike',
label: 'Model',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
icon: 'http://www.sm-201.org/a/images/e/ea/Cat-model.jpg',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '<s>',
                                pre:  '{{Infobox pornstar}',
post: '</s>',
post: ''
}
}
}
}
}
}
}
}
});
} );
 


/* ---- Enable Links:<cr> */
/* --- Enable button Pornstud  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Links',
group: 'Page',
tools: {
tools: {
"Links": {
"Pornstud": {
label: '<cr>',
label: 'Model',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/c/c7/Button_cr.png',
      icon: 'http://www.sm-201.org/a/images/9/9f/Button_male.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "<br>",
pre: "{{Infobox pornstud",
                    post:""
                                        post:""
}
}
}
}
Line 1,216: Line 1,297:
});
});


/* Enable Group:Files:  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
'groups': {
'Files': {
'label': 'Files'
}
}
} );


/* --- Enable Files:Copyright unknown */
/* --- Enable button Notes:top-tg  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Files',
group: 'Page',
tools: {
tools: {
"Copy": {
"top-tg": {
label: 'Copy',
label: 'Top-tg',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/2/22/Button-copy.jpg',
icon: 'http://sm-201.org/a/images/5/5a/Editor_ques.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  'Copyright info not available/ownership unkown',
pre:  '{{top-tg|add=vedette and}}',
post: ''
post: ''
}
}
Line 1,246: Line 1,318:
} );
} );


/* --- Enable Files:Mo/Yr */
/* --- Enable button Notes:toporn  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Files',
group: 'Page',
tools: {
tools: {
"Date": {
"toporn": {
label: 'Date',
label: 'top',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/0/01/Button-cal.jpg',
icon: 'http://sm-201.org/a/images/1/19/Editor_t.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre:  '02/2120',
pre:  '{{toporn|add=}}',
post: ''
post: ''
}
}
Line 1,266: Line 1,338:
} );
} );


/* --- Enable Files:Thumbnail */
/* --- Enable button Japan cinema  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Files',
group: 'Page',
tools: {
tools: {
"Thumb": {
"Japorn": {
label: 'Thumb',
label: 'Japorn',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/6/6f/Button_thumb.jpg',
      icon: 'http://www.sm-201.org/a/images/c/c4/Circle_j.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '[[File:',
pre: "{{Japanese erotic cinema}}{{Japanese porn stars}}",
post: '|thumb|right|200px| ]]'
                    post:""
}
}
}
}
}
}
}
}
} );
});
 


/* --- Enable Files:Gallery */
/* --- Enable button sa-porn  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'SM-201',
section: 'Info',
group: 'Files',
group: 'Page',
tools: {
tools: {
"Gallery": {
"porn": {
label: 'Gallery',
label: 'sa-porn',
type: 'button',
type: 'button',
icon: 'http://www.sm-201.org/a/images/3/35/Editor_g.png',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: '<gallery mode="packed" heights="200px" caption=""> ',
pre: "{{sa-porn}}{{porn stars}} {{porn}}",
post: '</gallery>'
                    post:""
}
}
}
}
}
}
}
}
} );
});
 
/*  =========================================== Add "Other" Buttons==== */


/* Enable section:Categories */
/* Enable section:Other ============================= */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Cats',
  'sections': {
'groups': {
'Other': {
'Cats': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Cats'
'label': 'Other'
}
}
}
} );
/* Enable group:Other: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'Other',
'groups': {
'Also': {
'label': 'Also'
}
}
}
} );
} );


/* --- Enable button Cats:Also:Mast */
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"ASFR": {
"valign": {
label: 'ASFR',
label: 'vt',
type: 'button',
type: 'button',
       icon: 'http://sm-201.org/a/images/e/e0/Editor_a.png',  
       icon: 'http://sm-201.org/a/images/8/8e/Button_vt.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Sex asfr",
pre: '|- valign ="top"\n',
                                        post:"}}"
                    post:'| {{#if: data | {{!}} text {{!!}} data }}'
}
}
}
}
Line 1,350: Line 1,409:
});
});


/* --- Enable button Other:DS roles  */
 
/* --- Enable Other:data*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"{DS}": {
"valign": {
label: 'DS roles',
label: 'data',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/18/Editor_d.png',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{DS roles",
pre: '{{{',
                                        post:"}}"
                    post:'|}}}'
}
}
}
}
Line 1,370: Line 1,430:
});
});


/* --- Enable button Other:Also:Human sexuality */
 
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"Human": {
"Pipe": {
label: 'Human',
label: '{|}',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Human sex",
pre: "|",
                                        post:"}}"
                    post:""
}
}
}
}
Line 1,390: Line 1,451:
});
});


/* --- Enable button Other:DS roles  */
 
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"ID": {
"Expl 1": {
label: 'Sex ids',
label: '{!}',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/5/5e/Editor_i.png',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Sex ids",
pre: "{{!",
                                         post:"}}"
                                         post:"}}"
}
}
Line 1,410: Line 1,472:
});
});


/* --- Enable button Other:Also:Sex Industry */
/* --- Enable Other:Table:{!!}  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"Industy": {
"Expl 2": {
label: 'Industry',
label: '{!!}',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/9/9e/Button_$.png',
      icon: 'http://sm-201.org/a/images/b/b6/Button_%21%21.png',  
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Sex Industry",
pre: "{{!!}}",
                                         post:"}}"
                                         post:""
}
}
}
}
Line 1,431: Line 1,493:




/* --- Enable button Other:Also:LGBT slang */
/* --- Enable Other:Table:Line1 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"LGBT slang": {
"Line1": {
label: 'LGBT slang',
label: 'Line1',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/16/Editor_l.png',
icon: 'http://www.sm-201.org/a/images/7/74/Button_L1.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{LGBT slang",
pre: " {{Line1}}",
                                        post:"}}"
post: ""
}
}
}
}
Line 1,450: Line 1,512:
}
}
});
});
 
/* --- Enable Other:Table:Line2 */
 
/* --- Enable button Other:Also:Other */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"sa-off": {
"Line2": {
label: 'sa-off',
label: 'Line2',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/b/b6/Editor_o.png',  
icon: 'http://www.sm-201.org/a/images/7/7d/Button_L2.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{sa-offenses",
pre: " {{Line2}}",
                                        post:"}}"
post: ""
}
}
}
}
Line 1,472: Line 1,532:
});
});


/* ---- Enable Footers:Porn */
 
/* --- Enable Other:Table:' !! ' - New column */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"Porno": {
"!!": {
label: 'Porno',
label: '!!',
type: 'button',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
icon: 'http://www.sm-201.org/a/images/b/b6/Button_%21%21.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Porno",
pre: " || ",
                                         post: "}}"
                                         post:""
}
}
}
}
Line 1,493: Line 1,554:




/* --- Enable button Other:Also:Relationship */
/* --- Enable Other:Table:Empty column  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"Relationship": {
"MT": {
label: 'Relationship',
label: 'MT',
type: 'button',
type: 'button',
   icon: 'http://www.sm-201.org/a/images/d/d5/Editor_r.png',
   icon: 'http://www.sm-201.org/a/images/a/ad/Button_mt.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Relationships",
pre: "|| &nbsp; ",
                                        post:"}}"
                    post:""
}
}
}
}
Line 1,513: Line 1,574:
});
});


 
/* --- Enable Other:Table:wp0 */
/* --- Enable button Cats:Also:Sex terms */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"Sexual terms": {
"wp0": {
label: 'Sexual terms',
label: 'wp0',
type: 'button',
type: 'button',
      icon: 'http://sm-201.org/a/images/1/19/Editor_t.png',  
  icon: 'http://www.sm-201.org/a/images/9/95/Button_wp0.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Sexual terms",
pre: "{{wp0|",
                                        post:"}}"
                    post:"|2}}"
}
}
}
}
Line 1,535: Line 1,595:




/* --- Enable button Refs:<reflist> */
/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Also',
group: 'Table',
tools: {
tools: {
"BDSM": {
"Columns": {
label: 'BDSM',
label: 'Columns',
type: 'button',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/3/32/Button_reflist.png',  
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{Outline of BDSM",
pre: "<div style='-moz-column-count:2; column-count:2;'>",
                                        post:"}}"
post: "</div>"
}
}
}
}
Line 1,556: Line 1,616:




/* Enable Group:Format: */
/* --- Enable Other:Table:Columns */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Other',
'groups': {
'Tables': {
'label': 'Table'
}
}
} );
 
 
/* --- Enable button Expl */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Table',
group: 'Table',
tools: {
tools: {
"Expl 1": {
"Top": {
label: 'Expl 1 !',
label: 'Top',
type: 'button',
type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png',  
icon: 'http://www.sm-201.org/a/images/7/78/Arrow-up.jpg',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{!",
pre: "{{top}}",
                                        post:"}}"
post: ""
}
}
}
}
Line 1,587: Line 1,636:
});
});


 
/* Other Talk ======================================= */
/* --- Enable button Expl */
/* Enable Group:Talk:  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Other',
'groups': {
'Talk': {
'label': 'Talk'
}
}
} );
 
/* --- Enable Other:Talk:Date chg*/
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Other',
section: 'Other',
group: 'Table',
group: 'Talk',
tools: {
tools: {
"Expl 2": {
"date": {
label: 'Expl 1 !',
label: 'date',
type: 'button',
type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Button_%21%21.png',  
icon: 'http://www.sm-201.org/a/images/a/a7/Button_cal.png',
action: {
action: {
type: 'encapsulate',
type: 'encapsulate',
options: {
options: {
pre: "{{!!",
pre: 'January 01, 2023',
                                        post:"}}"
post: ''
}
}
}
}
}
}
}
}
});
} );
 




/* Leave everything below this line alone ===================== */
};


/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
/* --- Enable button sa-porn  */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
$('#wpTextbox1').wikiEditor('addToToolbar', {
mw.loader.using( 'user.options' ).then( function () {
section: 'Info',
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
group: 'Page',
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
tools: {
$.when(
"bond": {
mw.loader.using( 'ext.wikiEditor' ), $.ready
label: 'sa-bond',
).then( customizeToolbar );
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-bond}}{{bondmods}}",
                    post:""
}
}
}
}
});
 
/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Info',
'groups': {
'Pers': {
'label': 'Pers'
}
}
} );
}
} );
 
 
 
/* --- Enable button Info|Pers|Name  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"name": {
label: 'name',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
action: {
type: 'encapsulate',
options: {
pre: "|        name = ",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Info:Pers:rose */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"rose": {
label: 'rose',
type: 'button',
icon: 'http://www.sm-201.org/a/images/1/16/Button_pink.jpg',
action: {
type: 'encapsulate',
options: {
pre: "| color    = mistyrose",
                                        post:""
}
}
}
}
} );
 
 
/* --- Enable Table:button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"blue": {
label: 'blank',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ec/Button_base.png',
action: {
type: 'encapsulate',
options: {
pre:  "| color    = lightblue",
post: ""
}
}
}
}
});
 
 
/* --- Enable button Info|Pers|DOB  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"birth": {
label: 'birth',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
action: {
type: 'encapsulate',
options: {
pre: "|    birthdate = {{dob",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pers|Birthplace  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"place": {
label: 'place',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
action: {
type: 'encapsulate',
options: {
pre: "|  birthplace = ",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pers|Alias */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"Alias": {
label: 'alias',
type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Editor_o.png',
action: {
type: 'encapsulate',
options: {
pre: "|    othername = ",
                                        post:""
}
}
}
}
});
 
/* --- Enable button Porn|Pers:{Star} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"Star": {
label: '{Star}',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/14/Button_star2.jpg',
action: {
type: 'encapsulate',
options: {
pre: "{{star}}"
}
}
}
}
});
 
/* --- Enable button Info|Pers|cause */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"cause": {
label: 'cause',
type: 'button',
icon: 'http://www.sm-201.org/a/images/2/29/Button_dagger2.jpg',
action: {
type: 'encapsulate',
options: {
pre: "|    deathcause = ",
                                        post:""
}
}
}
}
});
 
 
/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Info',
'groups': {
'Vitals': {
'label': 'Vitals'
}
}
} );
 
 
/* --- Enable Info:Vitals:vlabel button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Vitals',
tools: {
"Vitals": {
label: 'vlabel',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/5/55/Boobs.jpg',
action: {
type: 'encapsulate',
options: {
pre: "|      vitals = {{vitals|",
                                        post:""
}
}
}
}
});
 
/* --- Enable Info:Vitals:Eyes button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Vitals',
tools: {
"Eyes": {
label: 'Eye',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e3/Editor_e.png',
action: {
type: 'encapsulate',
options: {
pre: "|    eye color = ",
                                        post:""
}
}
}
}
});
 
/* --- Enable Info:Vitals:height*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Vitals',
tools: {
"height": {
label: 'Height',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
action: {
type: 'encapsulate',
options: {
pre: "|      height = ",
                                        post:"{{ht|?|?))"
}
}
}
}
});
 
/* --- Enable Info:Vitals:weight*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Vitals',
tools: {
"weight": {
label: 'Weight',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/ff/Editor_w.png',
action: {
type: 'encapsulate',
options: {
pre: "|      weight = ",
                                        post:"{{wt|}}"
}
}
}
}
});
 
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Info',
'groups': {
'Pro': {
'label': 'Pro'
}
}
} );
 
/*  &&&& */
 
 
/* --- Enable button Info|Pro|Genres = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"Genre": {
label: 'Genre',
type: 'button',
icon: 'http://www.sm-201.org/a/images/3/35/Editor_g.png',
action: {
type: 'encapsulate',
options: {
pre: "|        genre = ",
                                        post:""
}
}
}
}
});
 
 
 
 
/* --- Enable button Info|Pro|Specs = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"Specs": {
label: 'Specialty',
type: 'button',
icon: 'http://www.sm-201.org/a/images/a/a9/Button_star.png',
action: {
type: 'encapsulate',
options: {
pre: "{{porn stars}}",
                                    post:""
}
}
}
}
});
 
/* --- Enable button Info|Pro|Name  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"years": {
label: 'years',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png',
action: {
type: 'encapsulate',
options: {
pre: "|  yearsactive = ",
                                      post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pro|Boygirl = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"boygirl": {
label: 'boygirl',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
action: {
type: 'encapsulate',
options: {
pre: "|      boygirl =  [[BJ]], [[Vaginal]], [[Anal]]",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pro|Boygirl = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"lesbian": {
label: 'lesbian',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/16/Editor_l.png',
action: {
type: 'encapsulate',
options: {
pre: "|      lesbian = [[Softcore]], [[Dildo]]",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pro|Lesbian = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"solo": {
label: 'solo',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
action: {
type: 'encapsulate',
options: {
pre: "|        solo = [[Masturbation]], [[Dildo]]",
                                        post:""
}
}
}
}
});
 
 
 
/* --- Enable button Info|Pro|cat=Mistresses  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"Mistresses": {
label: 'Mistresses',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/4/48/Whip.jpg',
action: {
type: 'encapsulate',
options: {
pre: '[[Category:Mistresses]',
post: ''
}
}
}
}
});
 
 
/* --- Enable button Other:Also:Circle-S */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"Penthouse": {
label: 'Penthouse',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/2/23/Cam.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Penthouse Pets 2020|year=}}",
                                post:""
}
}
}
}
});
 
 
/* --- Enable button Info|Pro|Imdb etc =  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pro',
tools: {
"imdb": {
label: 'imdb',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/5/5e/Editor_i.png',
action: {
type: 'encapsulate',
options: {
pre:  '|        iafd = \n|        imdb = \n',
post: '|        afdb = \n|        wiki = \n'
}
}
}
}
});
 
 
/* --- Enable button Info|Pers:{cat} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Info',
group: 'Pers',
tools: {
"cat": {
label: 'cat',
type: 'button',
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-porn}}{{footer}}{{porn stars}}"
}
}
}
}
});
/*  &&&& */
 
/* Enable Group:Table */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Other',
'groups': {
'Table': {
'label': 'Table'
}
}
} );
 
 
/* --- Enable Table:button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"blank": {
label: 'blank',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ec/Button_base.png',
action: {
type: 'encapsulate',
options: {
pre:  "| {{blank}} || ",
post: ""
}
}
}
}
});
 
 
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"valign": {
label: 'vt',
type: 'button',
      icon: 'http://sm-201.org/a/images/8/8e/Button_vt.png',
action: {
type: 'encapsulate',
options: {
pre: '|- valign ="top"\n',
                    post:'| {{#if: data | {{!}} text {{!!}} data }}'
}
}
}
}
});
 
 
/* --- Enable Other:data*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"valign": {
label: 'data',
type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
action: {
type: 'encapsulate',
options: {
pre: '{{{',
                    post:'|}}}'
}
}
}
}
});
 
 
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Pipe": {
label: '{|}',
type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png',
action: {
type: 'encapsulate',
options: {
pre: "|",
                    post:""
}
}
}
}
});
 
 
/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Expl 1": {
label: '{!}',
type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png',
action: {
type: 'encapsulate',
options: {
pre: "{{!",
                                        post:"}}"
}
}
}
}
});
 
/* --- Enable Other:Table:{!!}  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Expl 2": {
label: '{!!}',
type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Button_%21%21.png',
action: {
type: 'encapsulate',
options: {
pre: "{{!!}}",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable Other:Table:Line1*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Line1": {
label: 'Line1',
type: 'button',
icon: 'http://www.sm-201.org/a/images/7/74/Button_L1.png',
action: {
type: 'encapsulate',
options: {
pre:  " {{Line1}}",
post: ""
}
}
}
}
});
/* --- Enable Other:Table:Line2*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Line2": {
label: 'Line2',
type: 'button',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_L2.png',
action: {
type: 'encapsulate',
options: {
pre:  " {{Line2}}",
post: ""
}
}
}
}
});
 
 
/* --- Enable Other:Table:' !! ' - New column */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"!!": {
label: '!!',
type: 'button',
icon: 'http://www.sm-201.org/a/images/b/b6/Button_%21%21.png',
action: {
type: 'encapsulate',
options: {
pre: " || ",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable Other:Table:Empty column  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"MT": {
label: 'MT',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/a/ad/Button_mt.png',
action: {
type: 'encapsulate',
options: {
pre: "|| &nbsp; ",
                    post:""
}
}
}
}
});
 
/* --- Enable Other:Table:wp0 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"wp0": {
label: 'wp0',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/9/95/Button_wp0.png',
action: {
type: 'encapsulate',
options: {
pre: "{{wp0|",
                    post:"|2}}"
}
}
}
}
});
 
 
/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Columns": {
label: 'Columns',
type: 'button',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
action: {
type: 'encapsulate',
options: {
pre:  "<div style='-moz-column-count:2; column-count:2;'>",
post: "</div>"
}
}
}
}
});
 
 
/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Table',
tools: {
"Top": {
label: 'Top',
type: 'button',
icon: 'http://www.sm-201.org/a/images/7/78/Arrow-up.jpg',
action: {
type: 'encapsulate',
options: {
pre:  "{{top}}",
post: ""
}
}
}
}
});
 
 
 
/* Enable group:Other:Cats */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'Cats',
'groups': {
'Cats': {
'label': 'Cats'
}
}
} );
 
 
/* =================== group cats enable ==========
 
/* Enable group:Other: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'Other',
'groups': {
'Cats': {
'label': 'Cats'
}
}
} );
 
/* --- Enable button other|cats|!more  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"!more": {
label: '!more',
type: 'button',
icon: 'http://www.sm-201.org/a/images/6/66/Editor_!.png',
action: {
type: 'encapsulate',
options: {
pre: "{{!more}",
                                        post:""
}
}
}
}
});
 
 
/* --- Enable button Other:Cats:Letter_A  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"cats a": {
label: 'cats a',
type: 'button',
    icon: 'http://www.sm-201.org/a/images/2/23/Circle_a.png',
action: {
type: 'encapsulate',
options: {
pre: "{{cat|actors|actresses|artists|authors}",
                    post:""
}
}
}
}
});
 
 
/* --- Enable button Other:Cats:BondMod  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"BondMod": {
label: 'BondMod',
type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ea/Cat-model.jpg',
action: {
type: 'encapsulate',
options: {
pre: "{{bondmod} {{bondmods} {{BL Models} {{Nudes}",
                    post:"{{actresses} {{Porn stars}"
}
}
}
}
});
 
 
/* --- Enable button Other:Also:Circle-J */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Circle-J": {
label: 'Circle-J',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/c/c4/Circle_j.png',
action: {
type: 'encapsulate',
options: {
pre: "{{AV Idols} }{{Japanese erotic cinema}",
                post:"{{Japanese Porn stars}"
}
}
}
}
});
 
 
/* --- Enable button Other:Also:Circle-S */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Penthouse": {
label: 'Penthouse',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/2/23/Cam.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Penthouse Pets 2020|year=}}",
                                post:""
}
}
}
}
});
 
 
/* --- Enable button Other:Cats:Playboy */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Playboy": {
label: 'Playboy',
type: 'button',
      icon: 'http://www.sm-201.org/a/images/0/06/Playboy-i.jpg',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-playboy}}",
                                post:""
}
}
}
}
});
 
 
 
/* --- Enable button spank  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"spank": {
label: 'spank',
type: 'button',
icon: 'http://www.sm-201.org/a/images/9/99/Cat-spank.jpg',
action: {
type: 'encapsulate',
options: {
pre: "{{spank}",
                                        post:""
}
}
}
}
});
 
/* --- Enable button Other:Cats:spider pool  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"spank": {
label: 'spider',
type: 'button',
icon: 'http://www.sm-201.org/a/images/b/bc/Cat-spider.jpg',
action: {
type: 'encapsulate',
options: {
pre: "{{cat|Spider Pool|Spider Pool history|Spider Pool models}",
                    post:""
}
}
}
}
});
 
 
/* --- Enable button Other:Cats:BDSMAuthors  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Auth": {
label: 'BDSMauth',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
action: {
type: 'encapsulate',
options: {
pre: "{{bdsmauthors}",
                                        post:""
}
}
}
}
});
 
 
 
/* --- Enable button Other:Cats:(Computer technology)  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"CT": {
label: 'CT',
type: 'button',
    icon: 'http://sm-201.org/a/images/b/be/Editor_c.png',
action: {
type: 'encapsulate',
options: {
pre: "Computer technology",
                                        post:""
}
}
}
}
});
 
 
 
 
/* --- Enable button sa-bondfurn  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Furn": {
label: 'Furn',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/31/Editor_f.png',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-bondfurn}",
                                        post:""
}
}
}
}
});
 
/* --- Enable button sa-bondpos  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Pos": {
label: 'Pos',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-bondpos}",
                                        post:""
}
}
}
}
});
 
/* --- Enable button sa-bondpos  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Performer": {
label: 'Performer',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/33/Editor_q.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Burl perf}}",
                                        post:"[[Category:Vedettes]]"
}
}
}
}
});
 
 
/* --- Enable button sa-bondrest  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'Other',
group: 'Cats',
tools: {
"Rest": {
label: 'Rest',
type: 'button',
  icon: 'http://www.sm-201.org/a/images/d/d5/Editor_r.png',
action: {
type: 'encapsulate',
options: {
pre: "{{sa-bondrest}"
}
}
}
}
});
 
 
 
 
/* Leave everything below this line alone ===================== */
};
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor' ), $.ready
).then( customizeToolbar );
}
} );
}
}
</pre>

Latest revision as of 16:55, 8 January 2023

var customizeToolbar = function () {
/* stable as of 2023-0107 */

/* ================================================== */
/*  Enable section:SM-201 */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'sections': {
		'SM-201': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'SM-201'
	}
	}
} );


/* Enable Group:Format: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	'groups': {
		'Format': {
			'label': 'Format' 
		}
	}
} );


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Comment": {
			label: 'Comment',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/6/66/Editor_!.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<!-- ',
					post: ' -->'
				}
			}
		}
	}
} );

/* --- Enable Format:Apostrophe */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Apostrope": {
			label: 'Apostrophe',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/3/39/Editor_apos.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "'",
					post: "'"
				}
			}
		}
	}
} );

/* --- Enable Format:<clear /> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Clear": {
			label: 'Clear',
			type: 'button',
icon: 'http://sm-201.org/a/images/b/be/Editor_c.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<br clear="all"> ',
					post: '' 
				}
			}
		}
	}
});

/* --- Enable Format:List Item */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Item2": {
			label: 'Item2',
			type: 'button',
icon: 'http://sm-201.org/a/images/7/79/Button_item.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: '* [[',
					post: ']]' 
				}
			}
		}
	}
});

/* --- Enable Format:Template Dot */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Dot": {
			label: 'Dot',
			type: 'button',
icon: 'http://sm-201.org/a/images/0/02/Button_dot.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: ' • [[',
					post: ']]' 
				}
			}
		}
	}
});

/* --- Enable Format:Tempate:BC */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"{{bc": {
			label: '{{bc',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{bc|",
                    post:"}}"
				}
			}
		}
	}
});


/* --- Enable Format:Book title */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"{{Titles": {
			label: 'Titles',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/f4/Button_ititle.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Titles|",
                                        post:"}}"
				}
			}
		}
	}
});

/* --- Enable Format:Underline */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Underline": {
			label: 'Underline',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/73/Editor_ul.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "<u>",
					post: "</u>",
				}
			}
		}
	}
});

/* --- Enable Format:Strike through*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Strike": {
			label: 'Strike',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<s>',
					post: '</s>',
				}
			}
		}
	}
});

/* --- Enable Format:button [[ link ]] */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Template": {
			label: 'Link',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c0/Button_link.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '[[',
					post: ']]'
				}
			}
		}
	}
} );

/* --- Enable Format:button {{ }} */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'format',
	tools: {
		"Template": {
			label: 'Template',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{",
					post: "}}"
				}
			}
		}
	}
} );

/* --- Enable Format:button Quotes */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Quotes": {
			label: 'Quotes',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_quot.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '"',
					post: '"',
				}
			}
		}
	}
});

/* --- Enable Format:button moz-column */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Columns": {
			label: 'Columns',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "<div style='-moz-column-count:2; column-count:2;'>",
					post: "</div>",
				}
			}
		}
	}
});

/* --- Enable Format:button Center */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Center": {
			label: 'Center',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_center.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<center>',
					post: '</center>',
				}
			}
		}
	}
});

/* --- Enable Format:button Justify */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Format',
	tools: {
		"Justify": {
			label: 'Justify',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/0f/Button_just.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<p align="justify">',
					post: '</p>',
				}
			}
		}
	}
});

/* Enable Group:Inc:  ================================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	'groups': {
		'Inc': {
			'label': 'Inc' 
		}
	}
} );

/* --- Enable button Inc:Includeonly */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Inc',
	tools: {
		"Incl": {
			label: 'Incl',
			type: 'button',
   icon: 'http://www.sm-201.org/a/images/3/3b/Button_in.jpg', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "<includeonly>",
                                        post:"</includeonly>"
				}
			}
		}
	}
});

/* --- Enable button Inc:Noinclude */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Inc',
	tools: {
		"Noinclude": {
			label: 'Noinclude',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/1/1b/Button_no.jpg', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "<noinclude>",
                                        post:"</noinclude>"
				}
			}
		}
	}
});

/* --- Enable button Inc:Nowiki */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Inc',
	tools: {
		"Nowiki": {
			label: 'Nowiki',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/a/a6/Button_quiet.jpg', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "",
                                        post:""
				}
			}
		}
	}
});


/* Enable group:SM-201:Cats  ============================ */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'SM-201',
	'groups': {
		'Cats': {
			'label': 'Cats' 
		}
	}
} );

/* --- Enable button Cats:Category  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Cats',
	tools: {
		"Cats": {
			label: 'Category',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '[[Category:',
					post: ']]'
				}
			}
		}
	}
} );


/* --- Enable button Cats:Category2  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Cats',
	tools: {
		"Cats": {
			label: 'Category',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '{{cat|',
					post: '}'
				}
			}
		}
	}
} );


/* --- Enable button SM201|Cats:{{lc */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Cats',
	tools: {
		"{{lc": {
			label: '{{lc',
			type: 'button',
 icon: 'http://www.sm-201.org/a/images/3/36/Button_lc.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "{{lc|",
					post: "}}"
				}
			}
		}
	}
});


/* Enable group:Refs: ========================= */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'SM-201',
	'groups': {
		'Refs': {
			'label': 'Refs' 
		}
	}
} );


/* --- Enable button Refs:<ref> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Ref": {
			label: 'RefLink',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/7/79/Button_reflink.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "<ref>",
                                        post:"</ref>"
				}
			}
		}
	}
});

/* --- Enable button Refs:<ref> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Note": {
			label: 'Note',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: '<ref group="Note">',
                    post:"</ref>"
				}
			}
		}
	}
});

/* --- Enable button Refs:<src> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Src": {
			label: 'Src',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<ref group="Source">',
                    post:"</ref>"
				}
			}
		}
	}
});

/* --- Enable button Notes:Calendar  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Access": {
			label: 'Access',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/a/a7/Button_cal.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "accessed = ",
					post: ""
				}
			}
		}
	}
} );


/* --- Enable button Refs:<reflist> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Ref": {
			label: 'RefList',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/3/32/Button_reflist.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "== References ==\n",
                                        post:"<References />"
				}
			}
		}
	}
});

/* --- Enable button Refs:<reflist> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Note": {
			label: 'Note',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '== Notes ==\n',
                                        post:'<references group="Note" />'
				}
			}
		}
	}
});

/* --- Enable button Refs:<reflist> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Ref": {
			label: 'SrcList',
			type: 'button',
 icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '== Sources ==\n',
                                        post:'<references group="Source" />'
				}
			}
		}
	}
});

/* --- Enable button Notes:@wr */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Refs',
	tools: {
		"Needs": {
			label: '{wref"}',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '{{wref"|',
                    post:"}}"
				}
			}
		}
	}
});

/* Enable group:Notes: ======================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'SM-201',
	'groups': {
		'Notes': {
			'label': 'Notes' 
		}
	}
} );


/* --- Enable button Notes:header| */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Needs": {
			label: 'Header',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Header|",
                                        post:" 01/23}}"
				}
			}
		}
	}
} );


/* --- Enable button Notes:headred */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Needs": {
			label: 'Headred',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/c/c8/Button_redirect.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Headred|",
                                        post:" 01/23}}"
				}
			}
		}
	}
});

/* --- Enable button Notes:Defaultsort  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"{DS}": {
			label: '(DS)',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/18/Editor_d.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{DEFAULTSORT:",
                                        post:"}}"
				}
			}
		}
	}
});


/* --- Enable button Notes:footer  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Footer": {
			label: 'Footer',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/31/Editor_f.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Footer",
                                      post:"}}"
				}
			}
		}
	}
});

/* --- Enable button Notes:Category:needs */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Needs": {
			label: 'Needs',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Needs}",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Notes:Heads2  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"A2": {
			label: 'Heads2',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e9/Button_headline2.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '== ',
					post: ' =='
				}
			}
		}
	}
} );


/* --- Enable button Notes:Heads3  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"A3": {
			label: 'Heads3',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/3/3a/Button_headline3.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '=== ',
					post: ' ==='
				}
			}
		}
	}
} );

/* --- Enable button Notes:Wiki:@  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Needs": {
			label: 'Wikimain',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/8/82/Wikilogo-20.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Wikimain|",
                                        post:"|_}}"
				}
			}
		}
	}
});

/* --- Enable button Notes:Wikilink */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"{{Wl|": {
			label: '{{wl|',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/ef/Button_para.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Wl|",
                                        post:"}}"
				}
			}
		}
	}
});



/* --- Enable button Notes:Redirect */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"Redirect": {
			label: 'Redirect',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/c/c8/Button_redirect.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "#REDIRECT [[",
                                        post:"]]"
				}
			}
		}
	}
});


/* --- Enable button Notes:Wikilink */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"ReCat": {
			label: 'ReCat',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/7/70/RedirectCat.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "#REDIRECT [[]]\n{{Headred|<from> 01/23}}\n",
                                        post:"{{DEFAULTSORT:<from>}}\n{{cat| }"
				}
			}
		}
	}
});

/* --- Enable button Notes:SHP matrix */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Notes',
	tools: {
		"SHP": {
			label: 'SHP',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{shp|rpm=|emh=|bah=|etv=|bur=|msh=|pin=|sph=|show=|eve=|wwii=|yank=}}",
                    post:""
				}
			}
		}
	}
});

/* Main Links ======================================= */

/* Enable group:Links: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	'groups': {
		'Links': {
			'label': 'Links' 
		}
	}
} );


/* ---- Enable Links:See also */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Links": {
			label: 'See also',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/c/c7/Button_see-also.png',
			action: {
				type: 'encapsulate',
				options: {
		pre: "{{sa|",
                post:"}}"
				}
			}
		}
	}
});

/* ### So far, so good */


/* --- Enable Links:External links*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		'External': {
			label: 'External',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e3/Editor_e.png',
			action: {
				type: 'encapsulate',
				options: {
		                pre: "== External links ==",
				post: '',
				}
			}
		}
	}
});

/* ---- Enable Links:Sanity */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Links": {
			label: 'Sanity',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
			action: {
				type: 'encapsulate',
				options: {
		pre: "{{Sanity check|01/23|R/}}",
                post:""
				}
			}
		}
	}
});


/* ---- Enable Links:Site ok */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Links": {
			label: 'Link OK',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Site-ok|01/23 R/}} ",
                    post:""
				}
			}
		}
	}
});

/* ---- Enable Links:Red */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Links": {
			label: 'Footer',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Site-red|01/23 R/}}{{Site-def|01/23 R/}}",
                    post:"{{Site-hij|01/23 R/}}"
				}
			}
		}
	}
});


/* --- Enable Links:Strike through*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Strike": {
			label: 'Strike',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/c/c9/Button_strike.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<s>',
					post: '</s>',
				}
			}
		}
	}
});

/* ---- Enable Links:<cr> */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'SM-201',
	group: 'Links',
	tools: {
		"Links": {
			label: '<cr>',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/c/c7/Button_cr.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "<br>",
                    post:""
				}
			}
		}
	}
});



/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	'groups': {
		'Files': {
			'label': 'Files' 
		}
	}
} );

/* --- Enable Files:Copyright unknown */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"Copy": {
			label: 'Copy',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/eb/Button_@.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  'Copyright info not available/ownership unknown',
					post: ''
				}
			}
		}
	}
} );



/* --- Enable Files:{{fs */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"{fs": {
			label: '{fs',
			type: 'button',
icon: 'http://sm-201.org/a/images/0/02/Button_dot.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '.',
					post: '.'
				}
			}
		}
	}
} );

/* --- Enable Files:Mo/Yr */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"Date": {
			label: 'Date',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/01/Button-cal.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '01/23',
					post: ''
				}
			}
		}
	}
} );



/* --- Enable Files:Thumbnail */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"rasw": {
			label: 'rasw',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/d/d5/Editor_r.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '* {{rasw|',
					post: '}'
				}
			}
		}
	}
} );

/* --- Enable Files:Thumbnail */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"Thumb": {
			label: 'Thumb',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/6/6f/Button_thumb.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '[[File:',
					post: '|thumb|right|200px|{{bc|}}]]'
				}
			}
		}
	}
} );


/* --- Enable Files:Gallery */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"Gallery": {
			label: 'Gallery',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/6/60/Button_insert_table.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '<gallery mode="packed" heights="200px" caption=""> ',
					post: '</gallery>'
				}
			}
		}
	}
} );


/* --- Enable Files:Screenies */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'SM-201',
	group: 'Files',
	tools: {
		"Screenies": {
			label: 'Screenies',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/0a/Button_screenie.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '[[MOVB]] screenies for ',
					post: ''
				}
			}
		}
	}
} );
/* Enable section:Page =============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
   'sections': {
		'Info': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'Info'
	}
	}
} );


/* Enable Group:Format: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	'groups': {
		'Page': {
			'label': 'Page' 
		}
	}
} );

/* --- Enable button model */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"Model": {
			label: 'Model',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/6/6d/Editor_m_.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Infobox model",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable Pornstar */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"Model": {
			label: 'Model',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ea/Cat-model.jpg',
			action: {
				type: 'encapsulate',
				options: {
	                                pre:  '{{Infobox pornstar}',
					post: ''
				}
			}
		}
	}
} );


/* --- Enable button Pornstud  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"Pornstud": {
			label: 'Model',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/9/9f/Button_male.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Infobox pornstud",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Notes:top-tg  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"top-tg": {
			label: 'Top-tg',
			type: 'button',
icon: 'http://sm-201.org/a/images/5/5a/Editor_ques.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '{{top-tg|add=vedette and}}',
					post: ''
				}
			}
		}
	}
} );

/* --- Enable button Notes:toporn  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"toporn": {
			label: 'top',
			type: 'button',
icon: 'http://sm-201.org/a/images/1/19/Editor_t.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  '{{toporn|add=}}',
					post: ''
				}
			}
		}
	}
} );

/* --- Enable button Japan cinema  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"Japorn": {
			label: 'Japorn',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/c/c4/Circle_j.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Japanese erotic cinema}}{{Japanese porn stars}}",
                    post:""
				}
			}
		}
	}
});


/* --- Enable button sa-porn  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"porn": {
			label: 'sa-porn',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-porn}}{{porn stars}} {{porn}}",
                    post:""
				}
			}
		}
	}
});

/* Enable section:Other ============================= */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
   'sections': {
		'Other': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'Other'
	}
	}
} );

/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"valign": {
			label: 'vt',
			type: 'button',
      icon: 'http://sm-201.org/a/images/8/8e/Button_vt.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: '|- valign ="top"\n',
                    post:'| {{#if: data | {{!}} text {{!!}} data }}'
				}
			}
		}
	}
});


/* --- Enable Other:data*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"valign": {
			label: 'data',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '{{{',
                    post:'|}}}'
				}
			}
		}
	}
});


/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Pipe": {
			label: '{|}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|",
                    post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Expl 1": {
			label: '{!}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{!",
                                        post:"}}"
				}
			}
		}
	}
});

/* --- Enable Other:Table:{!!}  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Expl 2": {
			label: '{!!}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Button_%21%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{!!}}",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:Line1 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Line1": {
			label: 'Line1',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/74/Button_L1.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  " {{Line1}}",
					post: ""
				}
			}
		}
	}
});
/* --- Enable Other:Table:Line2 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Line2": {
			label: 'Line2',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_L2.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  " {{Line2}}",
					post: ""
				}
			}
		}
	}
});


/* --- Enable Other:Table:' !! ' - New column */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"!!": {
			label: '!!',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/b/b6/Button_%21%21.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: " || ",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:Empty column  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"MT": {
			label: 'MT',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/a/ad/Button_mt.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "||   ",
                    post:""
				}
			}
		}
	}
});

/* --- Enable Other:Table:wp0 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"wp0": {
			label: 'wp0',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/9/95/Button_wp0.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{wp0|",
                    post:"|2}}"
				}
			}
		}
	}
});


/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Columns": {
			label: 'Columns',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "<div style='-moz-column-count:2; column-count:2;'>",
					post: "</div>"
				}
			}
		}
	}
});


/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Top": {
			label: 'Top',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/78/Arrow-up.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "{{top}}",
					post: ""
				}
			}
		}
	}
});

/* Other Talk ======================================= */
/* Enable Group:Talk:  */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Other',
	'groups': {
		'Talk': {
			'label': 'Talk' 
		}
	}
} );

/* --- Enable Other:Talk:Date chg*/
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Other',
	group: 'Talk',
	tools: {
		"date": {
			label: 'date',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/a/a7/Button_cal.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  'January 01, 2023',
					post: ''
				}
			}
		}
	}
} );




/* --- Enable button sa-porn  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Page',
	tools: {
		"bond": {
			label: 'sa-bond',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-bond}}{{bondmods}}",
                    post:""
				}
			}
		}
	}
});

/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	'groups': {
		'Pers': {
			'label': 'Pers' 
		}
	}
} );



/* --- Enable button Info|Pers|Name  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"name": {
			label: 'name',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/0/0e/Editor_n.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|         name = ",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Info:Pers:rose */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"rose": {
			label: 'rose',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/1/16/Button_pink.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "| color     = mistyrose",
                                        post:""
				}
			}
		}
	}
} );


/* --- Enable Table:button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"blue": {
			label: 'blank',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ec/Button_base.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "| color     = lightblue",
					post: ""
				}
			}
		}
	}
});


/* --- Enable button Info|Pers|DOB  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"birth": {
			label: 'birth',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|    birthdate = {{dob",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pers|Birthplace  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"place": {
			label: 'place',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|   birthplace = ",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pers|Alias */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"Alias": {
			label: 'alias',
			type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Editor_o.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|    othername = ",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable button Porn|Pers:{Star} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"Star": {
			label: '{Star}',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/14/Button_star2.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{star}}"
				}
			}
		}
	}
});

/* --- Enable button Info|Pers|cause */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"cause": {
			label: 'cause',
			type: 'button',
 icon: 'http://www.sm-201.org/a/images/2/29/Button_dagger2.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|    deathcause = ",
                                        post:""
				}
			}
		}
	}
});


/* Enable Group:Files: ============================== */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	'groups': {
		'Vitals': {
			'label': 'Vitals' 
		}
	}
} );


/* --- Enable Info:Vitals:vlabel button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Vitals',
	tools: {
		"Vitals": {
			label: 'vlabel',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/5/55/Boobs.jpg', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|       vitals = {{vitals|",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable Info:Vitals:Eyes button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Vitals',
	tools: {
		"Eyes": {
			label: 'Eye',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/e3/Editor_e.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|    eye color = ",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable Info:Vitals:height*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Vitals',
	tools: {
		"height": {
			label: 'Height',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/e/e4/Editor_h.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|       height = ",
                                        post:"{{ht|?|?))"
				}
			}
		}
	}
});

/* --- Enable Info:Vitals:weight*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Vitals',
	tools: {
		"weight": {
			label: 'Weight',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/ff/Editor_w.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|       weight = ",
                                        post:"{{wt|}}"
				}
			}
		}
	}
});

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Info',
	'groups': {
		'Pro': {
			'label': 'Pro' 
		}
	}
} );

/*  &&&& */


/* --- Enable button Info|Pro|Genres = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"Genre": {
			label: 'Genre',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/3/35/Editor_g.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|        genre = ",
                                        post:""
				}
			}
		}
	}
});




/* --- Enable button Info|Pro|Specs = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"Specs": {
			label: 'Specialty',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/a/a9/Button_star.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{porn stars}}",
                                     post:""
				}
			}
		}
	}
});

/* --- Enable button Info|Pro|Name  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"years": {
			label: 'years',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/f/f1/Editor_y.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|  yearsactive = ",
                                      post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pro|Boygirl = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"boygirl": {
			label: 'boygirl',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|      boygirl =  [[BJ]], [[Vaginal]], [[Anal]]",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pro|Boygirl = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"lesbian": {
			label: 'lesbian',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/1/16/Editor_l.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|      lesbian = [[Softcore]], [[Dildo]]",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pro|Lesbian = */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"solo": {
			label: 'solo',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/6/60/Editor_s.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "|         solo = [[Masturbation]], [[Dildo]]",
                                        post:""
				}
			}
		}
	}
});



/* --- Enable button Info|Pro|cat=Mistresses  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"Mistresses": {
			label: 'Mistresses',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/4/48/Whip.jpg', 
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[Category:Mistresses]',
					post: '' 
				}
			}
		}
	}
});


/* --- Enable button Other:Also:Circle-S */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"Penthouse": {
			label: 'Penthouse',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/2/23/Cam.png', 
		action: {
				type: 'encapsulate',
				options: {
				pre: "{{Penthouse Pets 2020|year=}}",
                                post:""
				}
			}
		}
	}
});


/* --- Enable button Info|Pro|Imdb etc =  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pro',
	tools: {
		"imdb": {
			label: 'imdb',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/5/5e/Editor_i.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre:  '|         iafd = \n|         imdb = \n',
					post: '|         afdb = \n|         wiki = \n' 
				}
			}
		}
	}
});


/* --- Enable button Info|Pers:{cat} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Info',
	group: 'Pers',
	tools: {
		"cat": {
			label: 'cat',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/d/d0/Button_Cat.Png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-porn}}{{footer}}{{porn stars}}"
				}
			}
		}
	}
});
/*  &&&& */

/* Enable Group:Table */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Other',
	'groups': {
		'Table': {
			'label': 'Table' 
		}
	}
} );


/* --- Enable Table:button*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"blank": {
			label: 'blank',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ec/Button_base.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "| {{blank}} || ",
					post: ""
				}
			}
		}
	}
});


/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"valign": {
			label: 'vt',
			type: 'button',
      icon: 'http://sm-201.org/a/images/8/8e/Button_vt.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: '|- valign ="top"\n',
                    post:'| {{#if: data | {{!}} text {{!!}} data }}'
				}
			}
		}
	}
});


/* --- Enable Other:data*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"valign": {
			label: 'data',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/5/5f/Button_temp.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '{{{',
                    post:'|}}}'
				}
			}
		}
	}
});


/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Pipe": {
			label: '{|}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "|",
                    post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:{!} */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Expl 1": {
			label: '{!}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/a/af/Button_%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{!",
                                        post:"}}"
				}
			}
		}
	}
});

/* --- Enable Other:Table:{!!}  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Expl 2": {
			label: '{!!}',
			type: 'button',
      icon: 'http://sm-201.org/a/images/b/b6/Button_%21%21.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{!!}}",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:Line1*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Line1": {
			label: 'Line1',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/74/Button_L1.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  " {{Line1}}",
					post: ""
				}
			}
		}
	}
});
/* --- Enable Other:Table:Line2*/
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Line2": {
			label: 'Line2',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/7d/Button_L2.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  " {{Line2}}",
					post: ""
				}
			}
		}
	}
});


/* --- Enable Other:Table:' !! ' - New column */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"!!": {
			label: '!!',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/b/b6/Button_%21%21.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: " || ",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable Other:Table:Empty column  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"MT": {
			label: 'MT',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/a/ad/Button_mt.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "||   ",
                    post:""
				}
			}
		}
	}
});

/* --- Enable Other:Table:wp0 */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"wp0": {
			label: 'wp0',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/9/95/Button_wp0.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{wp0|",
                    post:"|2}}"
				}
			}
		}
	}
});


/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Columns": {
			label: 'Columns',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/0/04/Button_multicol.png',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "<div style='-moz-column-count:2; column-count:2;'>",
					post: "</div>"
				}
			}
		}
	}
});


/* --- Enable Other:Table:Columns */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Table',
	tools: {
		"Top": {
			label: 'Top',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/7/78/Arrow-up.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre:  "{{top}}",
					post: ""
				}
			}
		}
	}
});



/* Enable group:Other:Cats */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'Cats',
	'groups': {
		'Cats': {
			'label': 'Cats'
		}
	}
} );


/* =================== group cats enable ==========

/* Enable group:Other: */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    section: 'Other',
	'groups': {
		'Cats': {
			'label': 'Cats' 
		}
	}
} );

/* --- Enable button other|cats|!more  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"!more": {
			label: '!more',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/6/66/Editor_!.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{!more}",
                                        post:""
				}
			}
		}
	}
});


/* --- Enable button Other:Cats:Letter_A  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"cats a": {
			label: 'cats a',
			type: 'button',
     icon: 'http://www.sm-201.org/a/images/2/23/Circle_a.png', 
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{cat|actors|actresses|artists|authors}",
                    post:""
				}
			}
		}
	}
});


/* --- Enable button Other:Cats:BondMod  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"BondMod": {
			label: 'BondMod',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/e/ea/Cat-model.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{bondmod} {{bondmods} {{BL Models} {{Nudes}",
                    post:"{{actresses} {{Porn stars}"
				}
			}
		}
	}
});


/* --- Enable button Other:Also:Circle-J */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Circle-J": {
			label: 'Circle-J',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/c/c4/Circle_j.png', 
		action: {
				type: 'encapsulate',
				options: {
				pre: "{{AV Idols} }{{Japanese erotic cinema}",
                post:"{{Japanese Porn stars}"
				}
			}
		}
	}
});


/* --- Enable button Other:Also:Circle-S */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Penthouse": {
			label: 'Penthouse',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/2/23/Cam.png', 
		action: {
				type: 'encapsulate',
				options: {
				pre: "{{Penthouse Pets 2020|year=}}",
                                post:""
				}
			}
		}
	}
});


/* --- Enable button Other:Cats:Playboy */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Playboy": {
			label: 'Playboy',
			type: 'button',
      icon: 'http://www.sm-201.org/a/images/0/06/Playboy-i.jpg', 
		action: {
				type: 'encapsulate',
				options: {
				pre: "{{sa-playboy}}",
                                post:""
				}
			}
		}
	}
});



/* --- Enable button spank  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"spank": {
			label: 'spank',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/9/99/Cat-spank.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{spank}",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable button Other:Cats:spider pool  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"spank": {
			label: 'spider',
			type: 'button',
icon: 'http://www.sm-201.org/a/images/b/bc/Cat-spider.jpg',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{cat|Spider Pool|Spider Pool history|Spider Pool models}",
                    post:""
				}
			}
		}
	}
});


/* --- Enable button Other:Cats:BDSMAuthors  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Auth": {
			label: 'BDSMauth',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/b4/Editor_b.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{bdsmauthors}",
                                        post:""
				}
			}
		}
	}
});



/* --- Enable button Other:Cats:(Computer technology)  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"CT": {
			label: 'CT',
			type: 'button',
     icon: 'http://sm-201.org/a/images/b/be/Editor_c.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "Computer technology",
                                        post:""
				}
			}
		}
	}
});




/* --- Enable button sa-bondfurn  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Furn": {
			label: 'Furn',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/31/Editor_f.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-bondfurn}",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable button sa-bondpos  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Pos": {
			label: 'Pos',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/b/bf/Editor_p.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-bondpos}",
                                        post:""
				}
			}
		}
	}
});

/* --- Enable button sa-bondpos  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Performer": {
			label: 'Performer',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/3/33/Editor_q.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{Burl perf}}",
                                        post:"[[Category:Vedettes]]"
				}
			}
		}
	}
});


/* --- Enable button sa-bondrest  */
$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'Other',
	group: 'Cats',
	tools: {
		"Rest": {
			label: 'Rest',
			type: 'button',
  icon: 'http://www.sm-201.org/a/images/d/d5/Editor_r.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{sa-bondrest}"
				}
			}
		}
	}
});




/* Leave everything below this line alone ===================== */
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( function () {
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbar );
		}
	} );
}