Extension:BoilerRoom

Revision as of 00:10, 22 December 2013 by OoEyes (talk | contribs)
MediaWiki extensions manual
BoilerRoom
Release status: stable
Implementation Parser function , Tag , Extended syntax
Description Allows wiki users to create boilerplate text in the Boilerplate namespace which can then be used on new pages.
Author(s) Shawn Bruckner (OoEyestalk)
Latest version 1.23 (2013-12-21)
MediaWiki 1.16.x - 1.21.x
Database changes No
License GNU General Public License 2.0
Download external source
  • $wgbrNamespaceIndex
  • $wgbrUseLargeSelector

  • boilerplate
  • boilerroombox
  • brbox

BoilerRoom is a dynamic text preloading extension which has the ability to load text from boilerplate pages into the edit textbox of new pages. With AJAX enabled on the server and JavaScript enabled on the user's browser, boilerplate text can even be loaded onto existing pages. The extension provides a boilerplate selector on edit pages for this purpose. It also allows you to create input boxes on wiki pages that allow users to input a title and open a new page for editing with the boilerplate text preloaded into the edit box.

BoilerRoom is different in its approach from similar extensions in that it was designed to allow the creation of boilerplate text without any need for text escaping. It deliberately does not respect <includeonly>, <onlyinclude>, and <noinclude> tags, instead providing its own mechanism through the special behavior of the provided <boilerplate> tag. This behavior simplifies certain situations, such as creating boilerplates for templates, where unusual escape mechanisms like <include<includeonly>only> would be necessary to achieve the same effect. Other <boilerplate> tags can be even placed inside without any need for an escape mechanism.

Compatibility

Version Release date Known compatibility[1]
1.23 (Latest) 2013 December 21 MediaWiki 1.17 to 1.21
1.22 2013 October 21 MediaWiki 1.17 to 1.21
1.21[2] 2013 October 21 MediaWiki 1.17 to 1.21 (but see note below)
1.2 [2][3] 2013 May 5 MediaWiki 1.17 to 1.21 (but see note below)
1.1 2012 July 29 MediaWiki 1.17 to 1.19
1.01 2012 February 8 MediaWiki 1.16.5 to 1.18
1.0 2011 November 4 MediaWiki 1.16.5 to 1.17
0.93 2011 September 25 MediaWiki 1.16.5 to 1.17
0.92 2011 September 14 MediaWiki 1.16.5 to 1.17
0.91 2011 September 11 MediaWiki 1.16.5 to 1.17
0.9 2011 September 5 MediaWiki 1.16.5 to 1.17
  1. There is a good chance BoilerRoom versions 1.01 and earlier are compatible with MediaWiki versions before 1.16.5, but this has not been tested. Compatibility with versions after 1.19 is not yet tested.
  2. 2.0 2.1 Important note: These old versions have a critical bug that prevents editing when there are no articles in the Boilerplate namespace. If you are using these versions, upgrading to version 1.22 or later is strongly recommended.
  3. Versions 1.2 and earlier are incompatible with MediaWiki's built-in preloading features, preventing them from working. This makes these versions incompatible with similar extensions like CreateBox and InputBox. This was fixed in 1.21.

Installation

  1. Extract this extension to the extensions subdirectory of your MediaWiki installation directory. It should be contained in a BoilerRoom subdirectory within extensions.
  2. If your wiki has custom namespaces using the indexes 450 and 451, add the following line to LocalSettings.php (changing xxx to an unused even index, ensuring that the following index is also unused):
    $wgbrNamespaceIndex = xxx;
  3. Add the following lines to LocalSettings.php. Due to the unique nature of the <boilerplate> tag used by this extension, it is advisable to include this line before any other extension includes to prevent unexpected interactions (but make sure it is placed after the $wgbrNamespaceIndex line if that is needed):
    require_once( "{$IP}/extensions/BoilerRoom/BoilerRoom.php" );

Note: Versions 0.92 and earlier used namespace indexes 300 and 301 as the defaults. If you are upgrading from those versions and you were using the default, you should add the following line before the require_once line:

$wgbrNamespaceIndex = 300;

Alternatively, if you are comfortable manipulating the database directly, you can update the namespace indexes of the page. Another option is to create a temporary custom namespace at index 300 and move them to new Boilerplate namespace manually.

Configuration

$wgbrNamespaceIndex
Sets the index at which the Boilerplate namespace will be created.
As of version 0.93, this is 450 by default. The Boilerplate talk namespace will be created at the following index, which is 451 by default.
In earlier versions, this was 300 by default, with the Boilerplate talk namespace being created at 301 by default.
$wgbrUseLargeSelector
Available in 1.0, this option allows you to use a large version of the four-button selector that appears above the standard toolbar rather than to the right of it by setting this option to true. This option has no effect for users using the advanced toolbar of the WikiEditor extension.

Usage

Creating boilerplate articles

The <boilerplate> tag is used to define the start and end of boilerplate articles. This is a unique, deliberately non-compliant tag with special behavior designed to prevent the need for any kind of text escaping within the boilerplate content. It's more of an extended syntax than a true tag. Specifically, it has the following behavior:

  • You must use <boilerplate> and </boilerplate> exactly as written here. Though spaces are permissible inside a compliant XML tag, this isn't a compliant tag. It is also case-sensitive.
  • Only the first <boilerplate> tag and last </boilerplate> tag on the page are considered.
    • This allows you to place <boilerplate> tags into the content.
    • Additionally, tags such as <includeonly> and <noinclude> don't require any unusual escaping. They are treated as plain-text content within <boilerplate> tags.
  • The boilerplate content opens at the first line after the <boilerplate> tag and closes at the end of the final line before the </boilerplate> tag. Content on the same lines as the tags is simply ignored if it is between the tags.

Or to show this information visually:

Header text describing the boilerplate may be placed here, as well as any other wikicode.
It will appear when directly viewing boilerplates and when transcluding them like templates.
<boilerplate> Text here is simply ignored and will not appear.
This line is where the boilerplate text begins.

<boilerplate>
Since only the first opening and last closing tags are considered,
boilerplate tags inside the boilerplate text are treated as plain text and will be
included as part of the boilerplate without modification.
</boilerplate>

<includeonly> and similar tags are also treated as plain text within the
boilerplate tags and will be included in boilerplate text without modification, so it
even works well for providing a boilerplate (or multiple) for templates.
</includeonly>

This line is where the boilerplate text ends.

Whereas this text is simply ignored.</boilerplate>

You can place any footer text here you wish, and this is a good spot for any categories
you want to include the boilerplate article itself in. That can be done in the header as
well.

The BoilerRoom selectors

The four-button selector

The four-button BoilerRoom selector, shown below, appears above the edit textbox on every page if the wiki has AJAX enabled and the user has JavaScript enabled. There are two different versions of the selector. The first is the small selector which is used by default in version 1.0:

 

Optionally, by setting $wgUseLargeSelector to true, a wiki can opt instead for the large selector:

 

Note: In versions before 1.0, the large selector was the only one available. Additionally, it was only a three button selector, as shown here.

It shows only the articles available within the Boilerplate namespace, excluding any redirects. As you can see, it does not display the Boilerplate portion of the title. Note, though, that even articles without <boilerplate> tags will be displayed as options, but nothing will happen when a user tries to include text from these pages; therefore, you should avoid allowing any non-boilerplate articles within the Boilerplate namespace.

As shown above, users have the ability to load boilerplate content before any existing text, after any existing text, or over existing text by replacing it. Be warned that most browsers will not record this as an undoable action, and as such, the extension asks for confirmation before replacing the existing text.

Note that the four-button selector is the only way BoilerRoom provides for using boilerplates on existing pages.

The one-button selector

The one-button BoilerRoom is shown when AJAX is not enabled on a wiki, or when a user does not have Javascript enabled. This selector only appears and functions on new pages, and unlike the other selector, it must reload the page to function. It does not function dynamically and cannot load boilerplate text over or into existing content.

 


The BoilerRoomBox

BoilerRoom also provides the BoilerRoomBox, shown below, which functions very similarly to the one-button selector described above. The most important difference is that the BoilerRoomBox is not automatically displayed anywhere, but is included on pages through the use of the <boilerroombox> and <brbox> tags or the {{#boilerroombox}} and {{#brbox}} parser functions. (brbox and boilerroombox are synonyms for each other and function identically.)

 

The usage of either the tag or the parser function is a matter of preference most of the time, but if you want to include a BoilerRoomBox as a parameter to a template, you'll need to use one of the two parser functions. The interactions between the tag form and the parser function may also differ with the tags and parser functions of other extensions, and this is why both forms are included.

The syntax for each is similar, as shown here side-by-side.

Tag form

<boilerroombox>
  boilerplate=
  title=
  label=
  align=
  width=
</boilerroombox>

Parser function form

{{#boilerroombox:
  |boilerplate=
  |title=
  |label=
  |align=
  |width=
}}

For the tag form, each parameter needs to be on its own line, with the end of line signifying the end of a value. For the parser function version, the pipe symbol signifies the end of the value and must be used between each parameter.

All of the parameters, explained below, are optional.

boilerplate
This identifies the article to preload into the edit box. It only loads content defined by <boilerroom> as explained above. If a namespace isn't included, the Boilerplate namespace is assumed. To use an article in the Main namespace, prefix the title with a colon (:). If none is including, this simply opens the requested page for normal editing and may be handy for skipping the search page when one wishes to proceed directly to the edit page.
title
This is the default title that appears in the box. It is probably best used to indicate a suggested prefix or suffix for the type of article it is used to create. The default is an empty box.
label
This is the text that appears on the button which opens the requested page for editing. The default label is "Edit".
align
The align can be left, right or center. This is applied as a CSS rule, so inherit is also a valid value. There is no default; if not included, no text-align rule is applied.
width
The size of the title entry box measured in number of characters. The default is 30.

Note that like the one-button selector, this cannot automatically load boilerplates on existing pages. It does, however, automatically select the requested boilerplate in the three-button selector if the conditions are right for that selector to appear (AJAX and Javascript enabled).


Version History

Version Release Date Changes
1.23 2013 December 21 Corrected cosmetic issue where characters appeared at the bottom of edit pages.
1.22 2013 October 21 Corrected critical error preventing editing when there are no articles in the Boilerplate namespace.
1.21 2013 October 21 Corrected conflict with built-in preloading feature, making InputBox and CreateBox compatible.
1.2 2013 May 5 Now works with WikiEditor. More refactoring to improve coding practices.
1.1 2012 July 29 Moderate refactoring to improve compatibility with future MediaWiki versions.
1.0 2011 November 4 Added small selector option and insert at cursor functionality.
0.93 2011 September 25 Default namespace index changed to the apparently unused value of 450.
0.92 2011 September 14 Input validation for the BoilerRoomBox greatly improved.
0.91 2011 September 11 Changed <boilerroom> to <boilerplate>.
0.9 2011 September 5 Initial beta release.

Known Issues

Unusual text appearing at bottom of edit pages (fixed in 1.23)

In versions 1.20 to 1.22, a minor issue was inadvertently introduced that causes the characters /*]]>*/ to appear at the bottom of edit pages. This is merely a cosmetic error that has no known effect on wiki functionality and has been fixed in version 1.23.

Error when editing when no boilerplates are available (fixed in 1.22)

Some recent versions of BoilerRoom, including 1.21, cause an error when open pages for editing if there are no pages in the Boilerplate namespace.

The easiest way to fix this is to install version 1.22 or later.

If this isn't an option, you can work around it by performing the following steps:

  1. Temporarily uninstall BoilerRoom by adding a # to beginning of the line containing require_once( "{$IP}/extensions/BoilerRoom/BoilerRoom.php" ); in LocalSettings.php.
  2. Temporarily add the following lines below it:
  3. define("NS_BOILERPLATE", isset( $wgbrNamespaceIndex ) ? $wgbrNamespaceIndex : 450); define("NS_BOILERPLATE_TALK", isset( $wgbrNamespaceIndex ) ? $wgbrNamespaceIndex + 1 : 451); $wgExtraNamespaces[NS_BOILERPLATE] = "Boilerplate"; $wgExtraNamespaces[NS_BOILERPLATE_TALK] = "Boilerplate_talk";
  4. Now, navigate to the wiki and create any page in the Boilerplate namespace (any page beginning with "Boilerplate:").
  5. Return to LocalSettings.php and remove the lines and # you added in step 1 and 2 to reinstall BoilerRoom.

Overrides built-in preloading feature (fixed in 1.21)

Versions of BoilerRoom before 1.21 currently prevent the built-in text preloading feature of MediaWiki from working correctly. This affects extensions like InputBox and CreateBox that use this feature. This issue has been corrected in version 1.21.

Selectors don't clear floats (fixed in 1.0)

There is a simple workaround for this issue. Paste the following CSS into MediaWiki:Common.css on your wiki:

.boilerRoomFieldSet {
  clear: both;
}