Jump to content

MediaWiki:Gadget-HotCat.js/local defaults

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Lupo (talk | contribs) at 21:58, 15 November 2012 (Prepare for default enabling HC). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

//

if (typeof (HotCat) != 'undefined') {
  HotCat.uncat_regexp = /\{\{\s*([Uu]ncat(egori[sz]ed)?|[Nn]ocat|[Nn]eedscategory|[Cc]ategori[sz]e)[^}]*\}\}/g ;
  HotCat.single_minor = false;
  HotCat.use_up_down = false;
  HotCat.upload_disabled = true;
  HotCat.redir_category = 'Wikipedia soft redirected categories';
  HotCat.disambig_category = 'Disambiguation categories';

  HotCat.messages.using = ' using [[WP:HC|HotCat]]';

  //Blacklisted categories cannot be added through HotCat.
  HotCat.blacklist = /\b[Ss]tubs?$|^[Ss]tubs?\b/;

  // Non-confirmed users will always go through the diff screen.
  HotCat.no_autocommit = (function (default_setting) {
    if ((mw.config.get('wgUserGroups').join(' ') + ' ').indexOf('confirmed ') < 0) return true;
    return default_setting;
  })(HotCat.no_autocommit);

  // Disable for non-logged-in users
  HotCat.disable = (function (default_disable) {
    return function () {
      if (!mw.config.get('wgUserName')) return true;
      return default_disable();
    };
  })(HotCat.disable);
}
//