Jump to content

Extension:TocTree

From mediawiki.org
Revision as of 15:05, 29 October 2012 by Mmullie (WMF) (talk | contribs)
MediaWiki extensions manual
TocTree
Release status: beta
Implementation API
Author(s) Roland Unger, Matthias Mullie
Latest version 1.12.0
MediaWiki 1.20
Database changes No
Licence GPLv2
Download
Translate the TocTree extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

Installation

To install this extension, add the following to LocalSettings.php:

require_once( "$IP/extensions/TocTree/TocTree.php" );

Customization

The PHP script will add two new options to the user preferences. They were added to the Misc section:

  • Floated table of contents
  • Expand table of contents

Defaults are collapsed but not floated tocs. You can overwrite the default values by setting true in your LocalSettings.php file:

 $wgDefaultUserOptions ['toc-floated'] = false;
$wgDefaultUserOptions ['toc-expand'] = false;

Prevention of TOC floating

The author has the opportunity to prevent floating of the TOC set by the user(s) by using a div tag with the style class noFloat enclosing the TOC.

<div class="noFloat">__TOC__</div>

Known Problems

There are the well-known problems of floated boxes like:

  • Missing list bullets, see for instance Missing Bullet Points
  • Design problems of narrow tocs and positoning problems with text and wide right-floated boxes.

Additional:

  • Bidi support (right-to-left writing direction) implemented but not yet tested (for instance needed for Hebrew and Arabic).
  • Tested only with Monobook skin.

Feedback

Open tickets in Wikimedia's Bugzilla under the "TocTree" component in the "MediaWiki extensions" product.