Extension:Graphical Category Browser

Category:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
Graphical Category Browser
Release status: stableCategory:Stable extensions
Implementation Special page Category:Special page extensions
Description A graphical browser for categories
Author(s) Xypron
Latest version 1.9 (2022-12-25)
MediaWiki 1.35+Category:Extensions with manual MediaWiki version
License GNU General Public License 3.0 or later
Download Category:Extensions in SourceForge version control
Category:All extensionsCategory:Extensions not in ExtensionJson

The Graphical Category Browser extension shows the interconnection of categories as a graph enhances navigability of the site.

What this extension does

  • A special page "Graphical Categories Browser" is added.
  • A graph is added on top of each category page showing the relationships to other categories.

Images are file cached. Cache control to match HTML and image output is supplied.

Installation

  • Download script and copy to extensions.
  • Correct $xyDotPath and $xyCategoriesCache to your needs.
  • Create directory images/xyGraphvizCache
  • Add the following line to LocalSettings.php
require_once("$IP/extensions/xyCategoryBrowser/xyCategoryBrowser.php");

To change the design you may override entries in the following array:

$xyCategoryGraphStyle = array(
  "COLOR_NODE"          => "#EEEEEE", // color of category nodes
  "COLOR_NODE_ERROR"    => "#FF0000", // color for internal error
  "COLOR_NODE_REDIRECT" => "#FFCCCC", // color of redirected category nodes
  "COLOR_NODE_MISSING"  => "#FFFFCC", // color of missing category nodes
  "COLOR_LINK_REDIRECT" => "#FF0000", // color of redirect links
  "HEIGHT"              => "1920",    // height in pixels (96th of an inch)
  "WIDTH"               => "768"      // width in pixels (96th of an inch)
);
Category:Category extensions Category:GraphViz extensions Category:Graph extensions Category:Page content extensions
Category:All extensions Category:CategoryPageView extensions Category:Category extensions Category:Extensions in SourceForge version control Category:Extensions not in ExtensionJson Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:GPL licensed extensions Category:GraphViz extensions Category:Graph extensions Category:Page content extensions Category:Special page extensions Category:Stable extensions