Halopedia:Skins/Onyx
From Halopedia, the Halo wiki
Onyx is a MediaWiki skin designed to emulate and improve upon Oasis, the desktop skin used on wikis hosted by Wikia/FANDOM. It was primarily written by Dab1001 with help from Jack Phoenix, and is maintained by the Halopedia team. It is free and open-source under the GPL v2 license, and its source code can be found here.
First conceived by Dab1001 during the merger of Halo Nation into Halopedia in early 2019, its aim was to ease the transition for users going from Wikia's service to an independently-hosted wiki. TODO: Finish this section
Installation
TODO
Configuration options
Onyx features a number of configuration options to allow wikis to customise it to their needs. For convenience and to avoid polluting the global namespace, all Onyx configuration options can be set using an associative array assigned to the variable $wgOnyxConfig
. Nevertheless, if you would prefer to set each option individually as its own global variable, Onyx does support this: just convert the option name into camel case and prefix it with $wgOnyx
- for example, banner-logo
would become $wgOnyxBannerLogo
. The skin will prioritise values set in $wgOnyxConfig
over those set in individual global variables, if there is a conflict.
If any are left unset, or set to a value of an incorrect type, the skin will use a sensible default value instead. Despite this, however, it is recommended that you at least set banner-logo
and header-logo
, as these default to the value of $wgLogo
, which typically points to a square image ill-suited to the Onyx skin.
Example
This is an example Onyx configuration setup.
$wgOnyxConfig = [ 'navigation-source' => 'MediaWiki:Onyx/Navigation', 'toolbox-source' => 'MediaWiki:Onyx/Toolbox', 'banner-logo' => $wgScriptPath . '/images/4/47/myBannerLogo.png', 'header-logo' => $wgScriptPath . '/images/6/3A/myHeaderLogo.png' ];
This same configuration could also be achieved in the alternative format, like so:
$wgOnyxNavigationSource = 'MediaWiki:Onyx/Navigation'; $wgOnyxToolboxSource = 'MediaWiki:Onyx/Toolbox'; $wgOnyxBannerLogo = $wgScriptPath . '/images/4/47/myBannerLogo.png'; $wgOnyxHeaderLogo = $wgScriptPath . '/images/6/3A/myHeaderLogo.png';
List
The following is a list of all configuration options currently supported by Onyx.
Option Name | Type | Default Setting | Description | Version |
---|---|---|---|---|
navigation-source | string | "MediaWiki:Onyx-navigation" | The full page name (including namespace) from which the navigation menus should be drawn. If the specified page does not exist, the skin will default to the content of MediaWiki:Sidebar instead. | 1.0≤ |
toolbox-source | string | "MediaWiki:Onyx-toolbox" | The full page name (including namespace) from which the custom toolbox links should be drawn. If the specified page does not exist, the skin will default to the usual toolbox links instead. | 1.0≤ |
enable-custom-user-toolboxes | boolean | true | Determines whether users can customise their own toolboxes, by creating a sub-page of their user page in the same format as the toolbox customisation page. | 1.0≤ |
custom-user-toolbox-suffix | string | "Onyx-toolbox" | The name of the sub-page of the user page from which the custom toolbox information should be drawn, if custom user toolboxes are enabled. | 1.0≤ |
banner-logo | string | $wgLogo | The URL of the image that should be used for the logo on the banner. Set it in the same manner as you would $wgLogo. It is recommended that the image be exactly 45px in height, and at most 400px in width. The image will be automatically scaled down if it is too tall. | |
use-banner-logo-image | boolean | true | This decides whether an image logo should be displayed in the banner, or if it should instead be replaced by the wiki's title in plain text. True corresponds to displaying the logo image, and false to displaying the title as text. | |
header-logo | string | $wgLogo | The URL of the image that should be used for the logo on the page header. Set it in the same manner as you would $wgLogo. It is recommended that the image be exactly 135px in height, and at most 400px in width. The image will be automatically scaled down if it is too tall. | |
show-sidebar-by-default | boolean | true | Determines whether the sidebar should be collapsed or expanded upon initial page load, if there are no saved cookies indicating the user's preference. | |
enable-recent-changes-module | boolean | true | Enables or disables the recent changes module on the sidebar, with true corresponding to enabled. Disabling recent changes may have a minor performance increase, as it removes the need for another database read on page load. However, the results are cached, so the hit to performance should be minimal. | |
recent-changes-cache-expiry-time | integer | 30 | The time, in seconds, before the cached information used by the recent changes sidebar module should be considered expired, and hence refreshed. | |
recent-changes-amount | integer | 7 | The number of recent changes that should be displayed on the recent changes sidebar module. | |
enable-page-contents-module | boolean | true | Determines whether or not the page contents sidebar module should be displayed. This has no impact on server-side performance, as the contents list is populated using client-side JavaScript. | |
page-contents-min-headings | integer | 3 | The minimum number of headings the page needs to include in order for the page contents sidebar module to be displayed. |