dev

This script/stylesheet is for PERSONAL use only!

You are free to install this script/stylesheet for yourself, but it is not allowed to be used wiki-wide (e.g., in MediaWiki:ImportJS, MediaWiki:Common.js, MediaWiki:Common.css, MediaWiki:Fandomdesktop.js, MediaWiki:Fandomdesktop.css, or MediaWiki:FandomMobile.css), as it would violate Fandom's Terms of Use.
(See the customization policy)

BlogLink дадае спасылкі на спіс блогаў удзельніка і старонку яго ўнёску у выпадным меню ля аватара ў скіне Oasis і ў скіне Monobook у верхняй правай частцы старонкі. Заснаваны на скрыпце ContribsLink удзельніка KnazO.

Скрыпт правярае, ці улучаны блогі ў Wiki Features перад стварэннем спасылкі ў меню; калі блогі адключаны, ствараецца толькі спасылка на ўнёсак. Скрыпт сумяшчальны з PseudoTalkPages, таму калі гэты скрыпт таксама падлучаны, BlogLink будзе адлюстроўваць спасылку на псеўдастаронку абмеркавання (Pseudo Talk). У кожным разе ніякіх лішніх ці непрацоўных спасылак не з'явіцца.

Installation

Налада

Дзякуючы ўлучэнню аб'екта window удзельнікі могуць наладзіць скрыпт на свой густ. Хоць па змаўчанні скрыпт дадае спасылкі на блог, унёсак і спасылку на PseudoTalkPage (калі выкарыстоўваецца), удзельнікі могуць абіраць толькі патрэбныя спасылкі.

window.blogLinkConfig = {
    contribs:false   // Хавае спасылку на ўнёсак
    activity:false   // Hides UserProfileActivity link
};

Using configuration options with Fandom Developers Wiki scripts

The instructions on this page describe how to use configuration options with a script. Here on the Fandom Developers Wiki, many scripts provide optional configuration settings as a mean to alter or enhance the default behavior of the script. When installing configuration options in your JavaScript file, please note that they need to go above the import statement in order to work — unless the directions say otherwise. In case MediaWiki:ImportJS is used to load the scripts, it will be executed last.

Configuration options load too late, don't work
// 1. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

// 2. AjaxRC configuration option
window.ajaxRefresh = 30000;
Proper placement of configuration options
// 1. AjaxRC configuration option
window.ajaxRefresh = 30000;

// 2. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

Changelog

13/12/24
General-purpose rewrite; update for new global nav, removal of deprecated code, and removal of I18n-js dependency
19/10/20
Addition of UCP-exclusive link to Special:UserProfileActivity
23/08/20
Basic UCP support, pending eventual rewrite
21/10/17
Slight rewrite, addition of Community Central support, addition of user config options
09/09/17
PseudoTalkPages compatibility, doesn’t include a blog link when blogs are not enabled.
21/02/17
Initial revision