User:MarkS/Extra edit buttons

Extra edit buttons allows the user to change the buttons on the top of the edit panel. The main features are:

  • Ability to add buttons to the toolbar. Extra Edit buttons makes a large number of extra buttons available to the user. Simply including the script will add a set of extra buttons to your toolbar.
  • The option to change the order of the buttons.
  • The option to remove the standard buttons
  • The option to include extra user defined buttons.
  • Popup dialog boxes to easily customise the markup code that is entered.

Supported Browsers

I normally test Extra Edit buttons:

The code will normally be tweaked to ensured that it works fully on these browsers.

I may sometimes test on:

  • SeaMonkey (Windows XP SP2)
  • Firefox on Linux (Ubuntu).
  • Konqueror (Ubunutu)
  • Earlier version of IE

Users

A list of users of XEB is kept at List of users. The list will be used to help contact interested parties in the event of new features/radical changes/problems. XEB will work whether or not you are on the list of users.

Installing

Simple Install

For extra edit page buttons, put the following code in your monobook.js, replacing "monobook" with the name of your skin, in all lowercase (using "standard" for Classic skin).

{{subst:js|User:MarkS/extraeditbuttons.js}}

Once this has been done, refresh Wikipedia in your browser (select Refresh or Reload) and the new buttons will be available on your toolbar. You do not need to do anything further. If after using the extra edit buttons for some time you wish to alter the buttons available or the order of the buttons then please read the more detailed instructions below.

Customised Install

To fully customise extra edit buttons then add the following code to your monobook.js, replacing "monobook" with the name of your skin, in all lowercase (using "standard" for Classic skin).

XEBOrder='A,B,C,D';rmEditButtons=[1,2,3];myButtons=[];{{subst:js|User:MarkS/extraeditbuttons.js}}

Note:

  • XEBOrder specifies which buttons to display and the order in which to display them
  • rmEditButtons lists the standard buttons to remove (use rmEditButtons=['all'] to remove them all)
  • myButtons lists extra buttons which you wish to use with extra edit buttons.

If you don't add one or more of these variables to your monobook.js then extra edit buttons will still work.

The buttons

Extra edit buttons includes the buttons listed below. Those marked as standard are added to your toolbar if you install XEB. The remaining buttons can be included by using the XEBOrder option (see below).

You can also specify completely new buttons to be included using the myButtons option (see below).

IconNameStandardCodePopupComments / What is shown when editing
Bold0'''Bold text'''
Italic1''Italic text''
Wiki link2[[Link title]]
Web link3[http://www.example.com link title]
Heading4== Headline text ==
Image5[[Image:Example.jpg]]
Media File Link6[[Media:Example.ogg]]
Mathematical Formula7<math>Insert formula here</math>
No Wiki8<nowiki>Insert non-formatted text here</nowiki>
Signature9-- ~~~~
Horizontal Line10----
Button redirect11#REDIRECT [[]]
Secondary Headline*A ===Secondary headline===
Line breakB<br />
Align left*D<div style="text-align: left; direction: ltr; margin-left: 1em;">Left-aligned text</div>
Centred text*C<div style="text-align: center;">Centred text</div>
Align Right*D1<div style="text-align: right; direction: ltr; margin-left: 1em;">Right-aligned text</div>
Coloured text*F<span style="color: ColourName">Coloured text</span>
Underline*U<u>Underlined text</u>
Strike through text*S<s>Struck out text</s>
SuperscriptI1<sup></sup>
SubscriptI2<sub>Subscript text</sub>
Small text*J1<small>Small Text</small>
Insert table*EYesDisplays a popup allow the user to set the type of table they want. Typical markup inserted:

{| class="wikitable"
|-
| 1 || 2
|-
| 3 || 4
|}

Insert a gallery*G<gallery>Image:M63.jpg|[[M63]]Image:Mona Lisa.jpg|[[Mona Lisa]]Image:Truite arc-en-ciel.jpg|A [[trout]]</gallery>
Definition list*Q

; Definition
: Item 1
: Item 2

Numbered list*W

# Element 1
# Element 2
# Element 3

Bulleted list*X

* Element 1
* Element 2
* Element 3

Category*K[[Category:Category name]]
Tabs*L:
Block quote text*M<blockquote style="border: 1px solid blue; padding: 2em;">Block quote</blockquote>
Comment*H<!--Comment-->
Insert code*O<code>Code</code>
Reference (see below)*RYes<ref>Insert reference material</ref>
Add a template*T{{Template name}}
RedirectV#REDIRECT [[Article Name]]
Unsigned postFS{{subst:unsigned|user name or IP|date}}
Big textJ2<big>Big text</big>
Non breaking spaceN 
Pre formatted textP<pre>Pre formatted text</pre>
Link to a sub pageP1[[Page/Sub_Page]]
Start a reference (see below)R1<ref name="Reference name
Add reference material (see below)R2
End a reference (see below)R3
Reference footerR4

==Notes==
<!--See http://en.wikipedia.org/wiki/Wikipedia:Footnotes for an explanation of how to generate footnotes using the <ref(erences/)> tags-->
<div class='references-small'>
<references/>
</div>

Teletype textT1<tt>Teletype Text</tt>
Substitute templateTL{{subst:tl|Template name}}
Start a tableTS{|
Table cellTC|
Table rowTR|-
End a tableTE|}
No includeY1<noinclude>Text</noinclude>
Include onlyY2<includeonly>Text</includeonly>
SubstituteZ{{subst:Template}}
Advanced imageAI[[Image:M63.jpg|thumb|right|px|Caption]]
Geo linkGEOYesDisplays a popup to enter latitude and longitude, type of place (landmark, city ...). The popup then inserts the relevant coor template

By default only buttons with a "*" in the standard column are displayed. This is keeps the total number of buttons down and avoids showing the more complex buttons in the default arrangement. To show the extra (non-default) buttons or alter the order of the buttons are showed see the section below 'Changing the layout').


Reference Buttons

The reference buttons come in two parts:

  1. Button 'R' (included by default) includes the basic reference tags
  2. Button 'R1','R2' and 'R3' allow you to build up a reference in parts. R1 starts a reference. R2 lets you add the reference material and 'R3' finishes the reference. You are likely to want all these buttons or none of them

Changing the layout: XEBOrder

XEB displays the standard buttons in the order listed above automatically.

You can change the order of the buttons and which buttons are displayed by creating a Javascript variable XEBOrder. Set this variable equal to a string containing each button's code separated by commas. The order of the buttons in XEBOrder is the order they are displayed on the toolbar. For example:

XEBOrder = "A,B,C,E,G,I1,I2,R1,R2,R4,T1,Y1,Y2,Z,AI,N";mw.loader.load( 'http:https://www.search.com.vn/wiki/index.php?lang=en&q=User:MarkS/Extra edit buttons/dev.js'              + '&action=raw&ctype=text/javascript' );

Removing buttons: rmEditButtons

rmEditButtons is an array which lists the index numbers of the standard english wikipedia buttons you wish to remove. For example:

rmEditButtons=[0,2]

will remove buttons 0 and 2 from your toolbar.

rmEditButtons=['Administrators']

will remove all the standard buttons from your toolbar. You may wish to use this option if you want to fully customise the toolbar and specify where the standard buttons appear in the toolbar.

rmEditButtons can only remove buttons that Wikipedia itself places on your toolbar. These buttons have numbered IDs. IF you wish to remove buttons from the default extra buttons supplied by XEB then you must use the XEBOrder variable and specify all the buttons you want XEB to add to your toolbar.

Standard Wikipedia buttons

The Wikimedia software used to power Wikipedia provides 10 standard buttons. The English version of Wikipedia then provides a further 11 standard buttons. These 21 buttons are the default toolbar shown to users. XEB provides access to these buttons using numeric codes starting from 0 (so Bold is 0, Italic is 1). You can use these codes in two ways: (i) You can include them in XEBOrder to make a standard button appear somewhere else in the toolbar, (ii) You can use then in rmEditButtons to stop wikipedia displaying them. In this way you can customise the whole toolbar.

User defined buttons: myButtons

XEB can also work with extra buttons created by the user. To do this you must define the myButtons variable in your monobook.js. The format of myButtons is:

myButtons={'_CODE1':['url1','Tooltip1','Before1','After1','Text1'],           '_CODE2':['url2','Tooltip2','Before2','After2','Text2']};

where:

  • Code is a code for the button. You should place this code in XEBOrder to make your button appear on the toolbar. You can use any text you like. However, it is recommended that you start the code with an underscore to make sure it doesn't clash with any future standard XEB buttons. This must be in upper case letters.
  • URL is the full URL to the button image. You must enter the URL of the image on its own, rather than the Wikimedia page that describes the button, so use: http://upload.wikimedia.org/wikipedia/commons/f/f0/Bouton_Vandale0.png rather than http://commons.wikimedia.org/wiki/Image:Bouton_Vandale0.png
  • ToolTip is the popup tooltip that will appear when the mouse moves over the button.
  • Before is the text to insert before the current cursor location.
  • After is the text to place after the current cursor location.
  • Text is the text that is placed between before and after. If the user has selected text in the edit box when the button is pressed this selected text will be placed between before and after instead.

This example defines two extra buttons:

myButtons={'_ZZ':['http://upload.wikimedia.org/wikipedia/commons/e/e9/Button_headline2.png','Mark Test','Before','After','Middle'],'_ZA':['http://upload.wikimedia.org/wikipedia/commons/1/13/Button_enter.png','Mark2 Test','111','333','222']};

For more examples and usable buttons, see the !voting/discussion buttons made by Willscrlt.

Pictures for myButtons

This is the list of buttons we know of so far (the list below includes the standard buttons). Buttons used by the 'extra buttons' have captions. Please upload any new buttons you find to the commons:Category:MediaWiki edit toolbar and add them to the gallery below (in alphabetical image order, so we can find duplicates and easily know what is there). Buttons not in Commons cat are tagged as MOVE TO COMMONS (please upload them to Commons and remove the tag from the gallery). The list as of now may contain duplicates, images not upload to commons and images at commons not at category — please help fix it!

Popups

From the 6 March 2007 XEB includes popups on a number of buttons. Popups are dialog boxes that float over the web page when you click on the button. The dialog boxes are to make it easier to customise in more detail the markup code that gets entered.

The popups currently available are:

Button CodeButton DescriptionComment
GEOGEO LinkAllows the user to set:
  • Latitude and Longitude. You can enter just the degrees, the degrees and minutes or the degrees, minutes and seconds.
  • Should the location appear in the title bar or in the middle of the page
  • The type of location (city/landmark...).
  • The region of the location

The popup then generates a coor template.

ETableAllows the user to set:
  • Number of rows
  • Number of columns
  • If the table is sortable
  • Whether or not a title row is required.
AIAdvanced ImageAllows the user to set:
  • Image Size
  • Image location
  • Image caption
  • Image URL
RReferenceAllows the user to set:
  • The name of the footnote
  • The text of the footnote

Requests

If you want something extra added or changed then you can:

  • Amend the code. Please note: If you amend the main code (User:MarkS/extraeditbuttons.js) then everybody who uses XEB will pick up the change at the same. For this reason you should test changes in a development version (see below) before amending the live code.
  • Leave a request on the talk page, ideally with the code you want added.

Changes

Wikipedia has revised how it builds toolbar buttons. Wikipedia now seems to build its toolbar buttons through on onload event after the page has loaded. Extra edit buttons overrode this which stopped the buttons working. However, as the buttons are now loading after the page has loaded the extra edit buttons now have to be added first. The choice was either add the buttons before wikipedia's or add them on a separate line. I have gone for a separate line.
I have removed all the original code which insert HTML into the toolbar and replaced it by filling in the javascript array wmCustomEditButtons. This seems to be the official way to do it and the resulting code is a lot neater.
  • June 26 2006 Added 4 extra buttons: template, category, reflink and references
  • October 13 2006 Complete rewrite of the code added. Ability to change the order of the buttons and which buttons are shown.
  • November 19 2006 Added tl button and updated two images.
  • December 13 2006 All toolbar buttons (XEB and standard buttons) are now fully customizable. Changes to the timing of when the buttons are setup. Users can now defined their own buttons. Ability to remove some or all of the standard buttons. Order of standard Wikipedia buttons can changed.
  • 6 March 2007 Major upgrade. XEB now features popups on some of the buttons. These display a dialog box to complete with parameters. The markup code then depends on the inserted text.
  • 8 March 2007. Quick update to fix a bug. It looks as if the order of items in the array which stores the mediaWiki standard buttons has changed. When these were copied to XEB then the URL of the image ended up as the popup text. This quick update copies the info a different way. The bug only affect people who reused the standard MediaWiki buttons elsewhere in the toolbar.
  • 28 April 2007. Update to the way text from popups is inserted into the page. This mainly affects IE which had problems putting the text in right place after Wikipedia's edit box had lost focus. Version: 3.1

Development Versions

My test version can be found under User:MarkS/Extra edit buttons/dev.js. This version may or may not be different to the live version. You can use this version by updating your monobook.js to use the test version rather than the live version.

If trying out your own changes then you can use the test version or you may find it easier to take a copy of the live code and create a test version under your userpages. Change the reference in your monobook.js to this test version. Then try out your changes. Once your changes have been made and tested then either update the live code or ask me. Note: When I update the live version I usually test in IE7, Opera and Firefox (Windows versions).

Installing XEB on your own Wiki

Installing XEB on setups other than Wikipedia is not something that is supported. However, the steps may help:

  1. You will need your own setup of the MediaWiki software. This is not something I can help you with. However, I have used meta:Wiki on a stick and found it easy to setup. I have also installed XEB on it.
  2. You must enable users to run Javascript by setting $wgAllowUserJS to true in LocalSettings.php (see: [1])
  3. For the simplest install create a user called MarkS (or see below at 6).
  4. Copy the XEB script from User:MarkS/extraeditbuttons.js to the same location on your wiki
  5. Copy the XEB css from User:MarkS/XEB/live.css to the same location on your wiki
  6. Get users to include the script by editing their monobook.js. (Note: The easiest way to do this without creating a user MarkS is adding an accordant line in [MonoBook].php (the php of your skin)!) You might be able to do this the same way that it works on Wikipedia (see the top of this article). Alternatively use the following lines (changing the URL as necessary):
importScriptURI('https://www.search.com.vn/wiki/index.php?lang=en&q=User:MarkS/extraeditbuttons.js&action=raw&ctype=text/javascript');
7. Once the script is running you should move the images from MediaWiki to your own wiki (unless you have enabled InstantCommons, in which case you won't have to).

There may be other ways to install the script. For example it could be installed in common.js which would provide the script to all users. I have never tried this.

Credits

  • Brian0918 who supplied the code to English Wikipedia from Hebrew Wikipedia
  • Ingoolemo for supply the code for four of the buttons and the original GIF images (which I converted to PNG)
  • Olliminatore for supplying a major rewrite of the code producing something significantly shorter and simpler
  • Karl Dickman for converting some GIF images to PNG images