Advertisement
Guest User

Untitled

a guest
Aug 14th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // LockOldBlogs configuration
  2. window.LockOldBlogs = {
  3.     expiryDays: 30,
  4.     expiryMessage: 'This blog is considered archived because it hasn\'t been commented on in over <expiryDays> days, there is no need to comment',
  5.     nonexpiryCategory: 'Never archived blogs'
  6. };
  7.  
  8. // UserTags configuration
  9. window.UserTagsJS = {
  10.     modules: {},
  11.     tags: {
  12.         LUTF: { u: 'Local utility task force' },
  13.         wikimod: { u: 'Wiki moderator' },
  14.         pres: { u: 'President' },
  15.                 HB:  { u: 'Head builder' },
  16.                 VP:  { u: 'Vice president' } ,
  17.                 HD:  { u: 'Head developer' }
  18.     }
  19. };
  20.  
  21. window.UserTagsJS.modules = {
  22.     inactive: {
  23.         days: 60,
  24.         namespaces: [0],
  25.         // 0 article edits = inactive
  26.         zeroIsInactive: true
  27.     },
  28.     custom: {
  29.         'Rider_ranger47': ['LUTF'],
  30.         'Sir_Joseph_Grey': ['pres'],
  31.         'The_Scotsman': ['VP'],
  32.         'Masqueradeus': ['HD'],
  33.         'LíthìumŒ': ['HB']
  34.     },
  35.     explode: {
  36.         // Add 'wiki mod' to everyone who has rollback
  37.         'wiki moderator': ['rollback']
  38.     },
  39.     implode: {
  40.         // Remove rollback and chatmoderator, if ALL 2 exist, and replace with 'moderator'
  41.         'moderator': ['rollback', 'chatmoderator']
  42.     }
  43. };
  44.  
  45. // CacheCheck configuration
  46. window.cacheSkip = [];
  47. window.cacheSkipLimit = 1000;
  48.  
  49. // Script imports
  50. window.importArticles( {
  51.     type: 'script',
  52.     articles: [
  53.         'u:dev:CacheCheck/code.js',
  54.         'u:dev:Countdown/code.js',
  55.         'u:dev:DisableBotMessageWalls/code.js',
  56.         'u:dev:ExtendedNavigation/code.js',
  57.         'u:dev:LockOldBlogs/code.js',
  58.         'u:dev:Standard_Edit_Summary/code.js',
  59.         'u:dev:UserTags/code.js',
  60.     ]
  61. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement