Jump to content

Laajennus:TocTree

From mediawiki.org
This page is a translated version of the page Extension:TocTree and the translation is 24% complete.
MediaWikin laajennukset-ohje
TocTree
Julkaisustatus: vakaa
Toteutus Käyttöliittymä
Kuvaus Allows for expansion and collapsing of the table of contents
Tekijä(t) Roland Unger, Matthias Mullie
Viimeisin versio 1.12.0
MediaWiki >= 1.43
Lisenssi GNU General Public License 2.0 tai myöhempi
Lataa
Quarterly downloads 13 (Ranked 118th)
Voit kääntää TocTree-laajennuksen mikäli se on saatavilla translatewiki.netissä
Ongelmat Avoimet tehtävät · Raportoi ongelmasta

The TocTree extension allows for initial expansion and collapsing of the table of contents.

Asennus

  • Lataa ja siirrä purettu kansio nimeltä TocTree extensions/-kansioosi.
    Kehittäjien ja koodipaikkauksia tekevien tahojen tulisi asentaa laajennos git-versionhallintaohjelmaa käyttäen:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/TocTree
  • Lisää seuraava koodi LocalSettings.php -tiedostosi loppuosaan:
    wfLoadExtension( 'TocTree' );
    
  • Yes Tehty – Mene wikisi sivulle Special:Version vahvistaaksesi, että laajennoksen asennus onnistui.

Mukauttaminen

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>

Tunnetut ongelmat

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

  • Missing list bullets
  • Design problems of narrow TOCs and positioning 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).
  • Support of only the MonoBook and Vector skins.