Skip to content

Instantly share code, notes, and snippets.

@macbre
Last active July 3, 2017 11:52
Show Gist options
  • Save macbre/b7d9ca51392a45ed02e5d72041720eab to your computer and use it in GitHub Desktop.
Save macbre/b7d9ca51392a45ed02e5d72041720eab to your computer and use it in GitHub Desktop.
SUS-2288
#!/bin/bash
WIKICITIES_PARAMS=`dbparams.pl --name wikicities`
for VAR_NAME in `mysql $WIKICITIES_PARAMS --batch --disable-column-names -e 'select cv_name from city_variables_pool'`
do
# echo "Checking ${VAR_NAME}.."
# check the usage in the config
# WIKIA_CONFIG_ROOT=/usr/wikia/slot1/current/config
COUNT=`ack-grep --no-filename -i --php "$VAR_NAME" $WIKIA_CONFIG_ROOT -c`
if [ $COUNT -eq "0" ];
then
# echo "* \`${VAR_NAME}\` is **not used in config**"
# remove wg prefix
VAR_NAME_NO_PREFIX=`echo ${VAR_NAME} | sed s/^wg//`
# let's check app now
# WIKIA_DOCROOT=/usr/wikia/slot1/current/src
COUNT=`ack-grep --no-filename -i --php "$VAR_NAME_NO_PREFIX" $WIKIA_DOCROOT -c`
if [ $COUNT -eq "0" ];
then
echo "* \`${VAR_NAME}\` is **not used in app nor in config**"
fi
fi
done
  • exDomainList is not used in config
  • sfgRenameEditTabs is not used in config
  • smwgDefaultStore is not used in config
  • smwgEnabledInTextAnnotationParserStrictMode is not used in config
  • smwgEnableUpdateJobs is not used in config
  • smwgInlineErrors is not used in config
  • smwgQEqualitySupport is not used in config
  • smwgQMaxInlineLimit is not used in config
  • smwgQMaxLimit is not used in config
  • smwgQSubcategoryDepth is not used in config
  • smwgUseExternalDB is not used in config
  • wgAbuseFilterBlockTime is not used in config
  • wgAbuseFilterEmergencyDisableAge is not used in config
  • wgAbuseFilterEmergencyDisableCount is not used in config
  • wgAbuseFilterEmergencyDisableThreshold is not used in config
  • wgAchievementsEditAddPhotoOnly is not used in config
  • wgAchievementsEditOnly is not used in config
  • wgAchievementsExemptUsers is not used in config
  • wgAchievementsFirstRevision is not used in config
  • wgActionPaths is not used in config
  • wgAddGroupsLocal is not used in config
  • wgAddNoIndexToFilePages is not used in config
  • wgAdDriverAbTestIdTargeting is not used in config
  • wgAdDriverAdMixCountries is not used in config
  • wgAdDriverAdsRecoveryMessageCountries is not used in config
  • wgAdDriverAolBidderCountries is not used in config
  • wgAdDriverAppNexusAstBidderCountries is not used in config
  • wgAdDriverAppNexusBidderCountries is not used in config
  • wgAdDriverAppNexusBidderPlacementsConfig is not used in config
  • wgAdDriverAudienceNetworkBidderCountries is not used in config
  • wgAdDriverDelayBelowTheFold is not used in config
  • wgAdDriverDelayCountries is not used in config
  • wgAdDriverDelayTimeout is not used in config
  • wgAdDriverEnableInstartLogicRecovery is not used in config
  • wgAdDriverEnableInvisibleHighImpactSlot is not used in config
  • wgAdDriverEnablePageFairRecovery is not used in config
  • wgAdDriverEnableSourcePointMMS is not used in config
  • wgAdDriverEnableSourcePointRecovery is not used in config
  • wgAdDriverEvolve2Countries is not used in config
  • wgAdDriverForceLiftiumAd is not used in config
  • wgAdDriverGoogleFundingChoicesCountries is not used in config
  • wgAdDriverHighImpact2SlotCountries is not used in config
  • wgAdDriverHighImpactSlotCountries is not used in config
  • wgAdDriverHitMediaCountries is not used in config
  • wgAdDriverIncontentPlayerSlotCountries is not used in config
  • wgAdDriverIndexExchangeBidderCountries is not used in config
  • wgAdDriverInstartLogicRecoveryCountries is not used in config
  • wgAdDriverKikimoraPlayerTrackingCountries is not used in config
  • wgAdDriverKikimoraTrackingCountries is not used in config
  • wgAdDriverKILOCountries is not used in config
  • wgAdDriverKruxCountries is not used in config
  • wgAdDriverMEGACountries is not used in config
  • wgAdDriverMoatTrackingForFeaturedVideoAdCountries is not used in config
  • wgAdDriverMoatTrackingForFeaturedVideoAdSampling is not used in config
  • wgAdDriverMobileFloorAdhesionCountries is not used in config
  • wgAdDriverMobileTransitionInterstitialCountries is not used in config
  • wgAdDriverNetzAthletenCountries is not used in config
  • wgAdDriverOpenXPrebidBidderCountries is not used in config
  • wgAdDriverOutstreamVideoFrequencyCapping is not used in config
  • wgAdDriverOverridePrefootersCountries is not used in config
  • wgAdDriverPageFairDetectionCountries is not used in config
  • wgAdDriverPageFairRecoveryCountries is not used in config
  • wgAdDriverPrebidBidderCountries is not used in config
  • wgAdDriverRubiconFastlaneCountries is not used in config
  • wgAdDriverRubiconFastlaneMercuryFixCountries is not used in config
  • wgAdDriverRubiconFastlaneProviderCountries is not used in config
  • wgAdDriverRubiconFastlaneProviderSkipTier is not used in config
  • wgAdDriverRubiconPrebidCountries is not used in config
  • wgAdDriverSourcePointDetectionCountries is not used in config
  • wgAdDriverSourcePointDetectionMobileCountries is not used in config
  • wgAdDriverSourcePointRecoveryCountries is not used in config
  • wgAdDriverSrcPremiumCountries is not used in config
  • wgAdDriverTaboolaCountries is not used in config
  • wgAdDriverTrackState is not used in config
  • wgAdDriverTurtleCountries is not used in config
  • wgAdDriverUseAdsAfterInfobox is not used in config
  • wgAdDriverUseEvolve2 is not used in config
  • wgAdDriverUseWikiaBarBoxad2 is not used in config
  • wgAdDriverVelesBidderConfig is not used in config
  • wgAdDriverVelesBidderCountries is not used in config
  • wgAdDriverVelesVastLoggerCountries is not used in config
  • wgAdDriverWikiIsTop1000 is not used in config
  • wgAdsDisableLeaderboards is not used in config
  • wgAdServerPath is not used in config
  • wgAdServerUrl is not used in config
  • wgAdsInterstitialsCampaignCode is not used in config
  • wgAdsInterstitialsDurationInSeconds is not used in config
  • wgAdsInterstitialsEnabled is not used in config
  • wgAdsInterstitialsPagesBeforeFirstAd is not used in config
  • wgAdsInterstitialsPagesBetweenAds is not used in config
  • wgAdSkin is not used in config
  • wgAdslotsLazyLoad is not used in config
  • wgAdSS_OnlyAdmin is not used in config
  • wgAdSS_pricingLevel is not used in config
  • wgAdultPages is not used in config
  • wgAdultPagesDepreciationLevel is not used in config
  • wgAFSEnabled is not used in config
  • wgAFSKeywords is not used in config
  • wgAjaxExportList is not used in config
  • wgAjaxSearch is not used in config
  • wgAjaxWatch is not used in config
  • wgAkamaiLocalVersion is not used in config
  • wgAllowCategorizedRecentChanges is not used in config
  • wgAllowCopyUploads is not used in config
  • wgAllowDisplayTitle is not used in config
  • wgAllowMicrodataAttributes is not used in config
  • wgAllowPageInfo is not used in config
  • wgAllowPhotoPopGame is not used in config
  • wgAllowRdfaAttributes is not used in config
  • wgAllowRealName is not used in config
  • wgAllowSlowParserFunctions is not used in config
  • wgAllowSpecialInclusion is not used in config
  • wgAllowTitlesInSVG is not used in config
  • wgAlternateMaster is not used in config
  • wgAlwaysUseTidy is not used in config
  • wgAmazonMatchCountries is not used in config
  • wgAmazonMatchCountriesMobile is not used in config
  • wgAnalyticsProviderUseUA is not used in config
  • wgAnswersRecentUnansweredQuestionsLimit is not used in config
  • wgAnswersScript is not used in config
  • wgAnswersServer is not used in config
  • wgAnswersShowInlineRegister is not used in config
  • wgAntivirus is not used in config
  • wgAntivirusRequired is not used in config
  • wgAntivirusSetup is not used in config
  • wgApertureIncludeCityId is not used in config
  • wgApiDisableImages is not used in config
  • wgApiRunJobsPerRequest is not used in config
  • wgARecoveryEngineCustomLog is not used in config
  • wgArrayTest is not used in config
  • wgArticleVideoFeaturedVideos is not used in config
  • wgArticleVideoRelatedVideos is not used in config
  • wgAutoblockExpiry is not used in config
  • wgAutoConfirmCount is not used in config
  • wgAutoFollowWatchlist is not used in config
  • wgAvailableRights is not used in config
  • wgAvatarsUseSwiftStorage is not used in config
  • wgBadgeNoFrame is not used in config
  • wgBlackListCacheTime is not used in config
  • wgBlackTitleListFiles is not used in config
  • wgBlockedMessagesExt is not used in config
  • wgBlockOpenProxies is not used in config
  • wgBreakFrames is not used in config
  • wgBrowserBlackList is not used in config
  • wgBuckySampling is not used in config
  • wgCachedMessageArrays is not used in config
  • wgCachePages is not used in config
  • wgCapitalLinks is not used in config
  • wgCaptchaRegexes is not used in config
  • wgCaptchaWhitelist is not used in config
  • wgCategoryCollation is not used in config
  • wgCategoryMagicGallery is not used in config
  • wgCategoryPagingLimit is not used in config
  • wgCategoryTreeMaxChildren is not used in config
  • wgCategoryTreeOmitNamespace is not used in config
  • wgChatBanMigrated is not used in config
  • wgChatLoadTestChance is not used in config
  • wgChatOperationMode is not used in config
  • wgChatServersBasket is not used in config
  • wgCheckCopyrightUpload is not used in config
  • wgCheckFileExtensions is not used in config
  • wgCheckUserMessages is not used in config
  • wgCiteErrors is not used in config
  • wgCleanSignatures is not used in config
  • wgClockSkewFudge is not used in config
  • wgCluster is not used in config
  • wgColorErrors is not used in config
  • wgComboAjaxLogin is not used in config
  • wgCommentsOnlyNamespaces is not used in config
  • wgCommunityPageExperimentPages is not used in config
  • wgConfirmEditMessages is not used in config
  • wgContactLink is not used in config
  • wgCookieExpiration is not used in config
  • wgCookiePath is not used in config
  • wgCookieSecure is not used in config
  • wgCopyrightIcon is not used in config
  • wgCorpMainPageStats is not used in config
  • wgCORSAllowOrigin is not used in config
  • wgCountCategorizedImagesAsUsed is not used in config
  • wgCreateBlogPagePreload is not used in config
  • wgCreateMessages is not used in config
  • wgCreatePageCoverRedLinks is not used in config
  • wgCrossSiteAJAXdomains is not used in config
  • wgCustomConvertCommand is not used in config
  • wgDartCustomKeyValues is not used in config
  • wgDBClusterTimeout is not used in config
  • wgDBconnection is not used in config
  • wgDBerrorLog is not used in config
  • wgDBLightMode is not used in config
  • wgDBminWordLen is not used in config
  • wgDBmysql5 is not used in config
  • wgDBport is not used in config
  • wgDBprefix is not used in config
  • wgDBservers is not used in config
  • wgDBtransactions is not used in config
  • wgDBtype is not used in config
  • wgDebugComments is not used in config
  • wgDebugDumpSql is not used in config
  • wgDebugFunctionEntry is not used in config
  • wgDebugLogGroups is not used in config
  • wgDebugProfiling is not used in config
  • wgDebugRawPage is not used in config
  • wgDebugRedirects is not used in config
  • wgDebugSquid is not used in config
  • wgDefaultLanguageVariant is not used in config
  • wgDefaultMessagesDB is not used in config
  • wgDefaultTheme is not used in config
  • wgDelicious is not used in config
  • wgDiff3 is not used in config
  • wgDigg is not used in config
  • wgDisableAnonTalk is not used in config
  • wgDisableAnswersShortQuestionsRedirect is not used in config
  • wgDisableBadImageList is not used in config
  • wgDisableCookieCheck is not used in config
  • wgDisabledSpecialPages is not used in config
  • wgDisableGlobalCSS is not used in config
  • wgDisableGlobalJS is not used in config
  • wgDisableGoResult is not used in config
  • wgDisableInternalSearch is not used in config
  • wgDisableKruxKV is not used in config
  • wgDisableLangConversion is not used in config
  • wgDisableOldAdDriver is not used in config
  • wgDisableQueryPages is not used in config
  • wgDisableQueryPageUpdate is not used in config
  • wgDisableSearchContext is not used in config
  • wgDisableSearchUpdate is not used in config
  • wgDisableSpecialStatistics is not used in config
  • wgDisableTextSearch is not used in config
  • wgDisableWAMOnHubs is not used in config
  • wgDiscussionAlertsQueries is not used in config
  • wgDismissableSiteNoticeMessages is not used in config
  • wgDisplayLanguageSelectorOnLogin is not used in config
  • wgDjvuPostProcessor is not used in config
  • wgDjvuRenderer is not used in config
  • wgDjvuToXML is not used in config
  • wgDocType is not used in config
  • wgDontWantShared is not used in config
  • wgDotDisplay is not used in config
  • wgDTD is not used in config
  • wgDumpRequestBlacklist is not used in config
  • wgEditEncoding is not used in config
  • wgEditSimilarCounterValue is not used in config
  • wgEditSimilarMarker is not used in config
  • wgEmailConfirmToEdit is not used in config
  • wgEnable3rdpartyInputBox is not used in config
  • wgEnableAbPerformanceTestingExt is not used in config
  • wgEnableAchievementsForSharing is not used in config
  • wgEnableActivityFeedApiFeed is not used in config
  • wgEnableAdBulkUploadExt is not used in config
  • wgEnableAdEngineExt is not used in config
  • wgEnableAdMeldAPIClient is not used in config
  • wgEnableAdMeldAPIClientPixels is not used in config
  • wgEnableAdsFooter600x250 is not used in config
  • wgEnableAdsLazyLoad is not used in config
  • wgEnableAdsPrefooter is not used in config
  • wgEnableAdSS is not used in config
  • wgEnableAdTopRightButton is not used in config
  • wgEnableAjaxLogin is not used in config
  • wgEnableAmazonExt is not used in config
  • wgEnableAmazonMatch is not used in config
  • wgEnableAnswersSudoAd2 is not used in config
  • wgEnableAnswersTags is not used in config
  • wgEnableAperture is not used in config
  • wgEnableApiGateExt is not used in config
  • wgEnableArticle300x600 is not used in config
  • wgEnableAutoHubsExt is not used in config
  • wgEnableAwards is not used in config
  • wgEnableAWCForum is not used in config
  • wgEnableBackAndForthExt is not used in config
  • wgEnableBacklinks is not used in config
  • wgEnableBiLExt is not used in config
  • wgEnableBlogsAsClassifieds is not used in config
  • wgEnableBrokenRenameFixExt is not used in config
  • wgEnableCalendarBarrylbExt is not used in config
  • wgEnableCategoryHubsExt is not used in config
  • wgEnableCategoryPagesInMercury is not used in config
  • wgEnableChat2 is not used in config
  • wgEnableCloakCheck is not used in config
  • wgEnableCodeReviewExt is not used in config
  • wgEnableCommentsOnlyExt is not used in config
  • wgEnableCommunityPageExperiment is not used in config
  • wgEnableContributionAppreciationExt is not used in config
  • wgEnableCovertOpsExt is not used in config
  • wgEnableCreatepageInHubs is not used in config
  • wgEnableCreativeCommonsRdf is not used in config
  • wgEnableCrossWikiaSearchOption is not used in config
  • wgEnableCrunchyrollExt is not used in config
  • wgEnableCuratedContentUnauthorizedSave is not used in config
  • wgEnableCustomFooterExt is not used in config
  • wgEnableCustomReportsExt is not used in config
  • wgEnableDaemonLoaderExt is not used in config
  • wgEnableDatalagExt is not used in config
  • wgEnableDiscussionPostsCountInUserIdentityBox is not used in config
  • wgEnableDocstocExt is not used in config
  • wgEnableDublinCoreRdf is not used in config
  • wgEnableDynamicYield is not used in config
  • wgEnableEditEnhancements is not used in config
  • wgEnableEditingTipsExt is not used in config
  • wgEnableEditPageChanges is not used in config
  • wgEnableEditPageReskinExt is not used in config
  • wgEnableEditResearch is not used in config
  • wgEnableEmailTemplatesExt is not used in config
  • wgEnableEmoticonsExt is not used in config
  • wgEnableExternalLinksExt is not used in config
  • wgEnableEzAPIExt is not used in config
  • wgEnableFacebookConnectExt is not used in config
  • wgEnableFacebookConnectPushing is not used in config
  • wgEnableFacebookSync is not used in config
  • wgEnableFieldsetExt is not used in config
  • wgEnableFlashMp3Ext is not used in config
  • wgEnableFlashmp3whitelistExt is not used in config
  • wgEnableGamingCalendarExt is not used in config
  • wgEnableGlobalNavExt is not used in config
  • wgEnableGoogleAuthorInfo is not used in config
  • wgEnableGoogleFundingChoices is not used in config
  • wgEnableGraceExpiredExt is not used in config
  • wgEnableGroupedArticleCommentsRC is not used in config
  • wgEnableGroupedBlogCommentsWatchlist is not used in config
  • wgEnableHeliosExt is not used in config
  • wgEnableHome300x600 is not used in config
  • wgEnableHTMLetsExt is not used in config
  • wgEnableHubRssFeed is not used in config
  • wgEnableHuluVideoPanel is not used in config
  • wgEnableIframeAds is not used in config
  • wgEnableImageLightboxExt is not used in config
  • wgEnableImageReviewMercuryExt is not used in config
  • wgEnableImageServing is not used in config
  • wgEnableImageServingTest is not used in config
  • wgEnableJavaScriptErrorLogging is not used in config
  • wgEnableKruxOnMobile is not used in config
  • wgEnableLastfmExt is not used in config
  • wgEnableLatestQuestionsExt is not used in config
  • wgEnableLiquidThreadsExt is not used in config
  • wgEnableListsExt is not used in config
  • wgEnableListspinnerExt is not used in config
  • wgEnableLocalNavExt is not used in config
  • wgEnableLuaExt is not used in config
  • wgEnableMagCloudExt is not used in config
  • wgEnableMagicAnswer is not used in config
  • wgEnableMailerLog is not used in config
  • wgEnableMarketingToolboxExt is not used in config
  • wgEnableMeeboExt is not used in config
  • wgEnableMemcachedBulkMode is not used in config
  • wgEnableMessageTestHelperExt is not used in config
  • wgEnableMobileProductsExt is not used in config
  • wgEnableNetzAthleten is not used in config
  • wgEnableNewContactExt is not used in config
  • wgEnableNewGlobalFooter is not used in config
  • wgEnableNielsen is not used in config
  • wgEnableOnSiteNotifications is not used in config
  • wgEnableOur404HandlerExt is not used in config
  • wgEnableOutboundScreenExt is not used in config
  • wgEnablePageHeaderExperiment is not used in config
  • wgEnablePageLayoutBuilder is not used in config
  • wgEnablePageShareExt is not used in config
  • wgEnablePageShareWorldwide is not used in config
  • wgEnablePaperExt is not used in config
  • wgEnableParserCache is not used in config
  • wgEnablePayPalPayment is not used in config
  • wgEnablePersistentLC is not used in config
  • wgEnablePhotoPopExt is not used in config
  • wgEnablePolldaddyExt is not used in config
  • wgEnablePollExt is not used in config
  • wgEnablePremiumPageHeader is not used in config
  • wgEnableRandomUsersWithAvatarsExt is not used in config
  • wgEnableReadsFromAttributeService is not used in config
  • wgEnableRecipesTweaksExt is not used in config
  • wgEnableRelatedVideoSpotlight is not used in config
  • wgEnableReleaseNotesExt is not used in config
  • wgEnableRenderContentModuleOnlyExt is not used in config
  • wgEnableReviveSpotlights is not used in config
  • wgEnableSassUtilLogging is not used in config
  • wgEnableSearchDigestExt is not used in config
  • wgEnableSearchRankTrackerExt is not used in config
  • wgEnableSelfServiceAdvertisingSplashExt is not used in config
  • wgEnableSeoCrossLinkExt is not used in config
  • wgEnableSeoFriendlyImagesForMobile is not used in config
  • wgEnableSharedUserRightsExt is not used in config
  • wgEnableSidebarCache is not used in config
  • wgEnableSimpleUrlFetchExt is not used in config
  • wgEnableSiteMetricsExt is not used in config
  • wgEnableSliderTag is not used in config
  • wgEnableSpecialChangesXmlToFeedUrl is not used in config
  • wgEnableSpecialDevCookieExt is not used in config
  • wgEnableSpecialFunnel is not used in config
  • wgEnableSpecialSearchCaching is not used in config
  • wgEnableSpecialSpamWikisExt is not used in config
  • wgEnableSpecialWikiStats is not used in config
  • wgEnableSpellCheckerExt is not used in config
  • wgEnableSponsoringAdminExt is not used in config
  • wgEnableSponsoringExt is not used in config
  • wgEnableStructuredData is not used in config
  • wgEnableTandemAds is not used in config
  • wgEnableTandemAds_delay is not used in config
  • wgEnableTandemAds_slave is not used in config
  • wgEnableTheorytabExt is not used in config
  • wgEnableTimeMarkerExt is not used in config
  • wgEnableTopButton is not used in config
  • wgEnableTopButtonWide is not used in config
  • wgEnableUbisoft is not used in config
  • wgEnableUpdatedGlobalFooter is not used in config
  • wgEnableUserBadgesExt is not used in config
  • wgEnableUserEmail is not used in config
  • wgEnableUserengagementExt is not used in config
  • wgEnableUserProfilePagesExt is not used in config
  • wgEnableUserProfilePagesV3 is not used in config
  • wgEnableVenusArticle is not used in config
  • wgEnableVenusSkin is not used in config
  • wgEnableVideoSitemaps is not used in config
  • wgEnableVideoTrackingExt is not used in config
  • wgEnableWatchlistNotificationTimeout is not used in config
  • wgEnableWebPThumbnails is not used in config
  • wgEnableWidgetsExt is not used in config
  • wgEnableWidgetShoutbox is not used in config
  • wgEnableWikiaHomePageCollections is not used in config
  • wgEnableWikiaImageOneBoxInSearch is not used in config
  • wgEnableWikiaLabsExt is not used in config
  • wgEnableWikiaPhone is not used in config
  • wgEnableWikiaphoneCustomCSS is not used in config
  • wgEnableWikiaSearchAds is not used in config
  • wgEnableWikiaSearchV2Ext is not used in config
  • wgEnableWikiaStatsHPExt is not used in config
  • wgEnableWikiaTitleBlackListExt is not used in config
  • wgEnableWikiaWidgetExt is not used in config
  • wgEnableWikiBuilder is not used in config
  • wgEnableWikiFeeds is not used in config
  • wgEnableWikiPaymentExt is not used in config
  • wgEnableWikiTextLoggedInOutExt is not used in config
  • wgEnableYouTubeAuthSub is not used in config
  • wgEnotifFromEditor is not used in config
  • wgEnotifMinorEdits is not used in config
  • wgEnotifRevealEditorAddress is not used in config
  • wgEntertainmentTitlesToCatalogData is not used in config
  • wgErrorLog is not used in config
  • wgExcludedWantedFiles is not used in config
  • wgExcludeFromWAM is not used in config
  • wgExelateData is not used in config
  • wgExpensiveParserFunctionLimit is not used in config
  • wgExperimentalRobotsTxt is not used in config
  • wgExportAllowHistory is not used in config
  • wgExportAllowListContributors is not used in config
  • wgExportMaxHistory is not used in config
  • wgExtensionCredits is not used in config
  • wgExtensionFunctions is not used in config
  • wgExternalServers is not used in config
  • wgExtImagesWhitelistFiles is not used in config
  • wgExtraNamespacesLocal is not used in config
  • wgExtraRandompageSQL is not used in config
  • wgExtraSubtitle is not used in config
  • wgFavicon is not used in config
  • wgFeedCacheTimeout is not used in config
  • wgFeedDiffCutoff is not used in config
  • wgFeedLimit is not used in config
  • wgFileBlacklist is not used in config
  • wgFileBlacklistLocal is not used in config
  • wgFileCacheDirectory is not used in config
  • wgFileExtensionsLocal is not used in config
  • wgFilterCallback is not used in config
  • wgForceSkin is not used in config
  • wgForceUIMsgAsContentMsg is not used in config
  • wgForceVisualEditor is not used in config
  • wgFounderWelcomeAuthor is not used in config
  • wgGeneratePartnerFeeds is not used in config
  • wgGlobalHeaderFullWidth is not used in config
  • wgGlobalHeaderVerticalColors is not used in config
  • wgGoogleAdChannel is not used in config
  • wgGoogleAnalyticsAccount is not used in config
  • wgGoogleAnalyticsID is not used in config
  • wgGoogleAuthorLinks is not used in config
  • wgGoogleMapsDefaults is not used in config
  • wgGoogleProps is not used in config
  • wgGoogleSiteVerification is not used in config
  • wgGoogleWebToolsAccount is not used in config
  • wgGoToEdit is not used in config
  • wgGrammarForms is not used in config
  • wgGraphicalDelicious is not used in config
  • wgGraphicalDigg is not used in config
  • wgGroupsAddToSelfLocal is not used in config
  • wgGroupsRemoveFromSelfLocal is not used in config
  • wgHashedUploadDirectory is not used in config
  • wgHAWelcomeNotices is not used in config
  • wgHideAPI is not used in config
  • wgHideFlagsExt is not used in config
  • wgHideInterlanguageLinks is not used in config
  • wgHideNavigationHeaders is not used in config
  • wgHighValueCountries is not used in config
  • wgHomePageSkin is not used in config
  • wgHTCPMulticastAddress is not used in config
  • wgHTCPMulticastTTL is not used in config
  • wgHTCPPort is not used in config
  • wgHtml5 is not used in config
  • wgHTMLetsDirectory is not used in config
  • wgHTTPTimeout is not used in config
  • wgHubRssFeedCityIds is not used in config
  • wgHubsAdsEnabled is not used in config
  • wgHubsPages is not used in config
  • wgHubsWithoutSpotlightsList is not used in config
  • wgHuluVideoPanelAttributes is not used in config
  • wgHuluVideoPanelShow is not used in config
  • wgIgnKeywordsBlacklist is not used in config
  • wgIgnoreImageErrors is not used in config
  • wgIgnVideoBlacklist is not used in config
  • wgImageLimits is not used in config
  • wgImageMapAllowExternalLinks is not used in config
  • wgImageReviewWhitelisted is not used in config
  • wgImageServingForceNoResults is not used in config
  • wgImagesIndexed is not used in config
  • wgImportSources is not used in config
  • wgImportTargetNamespace is not used in config
  • wgIncludeWikiInCorporateFooterDropdown is not used in config
  • wgInezOptTest is not used in config
  • wgInfoboxEnabled is not used in config
  • wgInfospaceSearchSub_IDS is not used in config
  • wgInPageEnabled is not used in config
  • wgInputEncoding is not used in config
  • wgIntegrateVisualDNAAAT is not used in config
  • wgInternalServer is not used in config
  • wgInterwikiCache is not used in config
  • wgInterwikiExpiry is not used in config
  • wgInterwikiFallbackSite is not used in config
  • wgInterwikiMagic is not used in config
  • wgInterwikiScopes is not used in config
  • wgInterwikiTemplates is not used in config
  • wgIsPrivateWiki is not used in config
  • wgJobLogFile is not used in config
  • wgJsMimeType is not used in config
  • wgLastInterwikiUpdate is not used in config
  • wgLastRoviUpdate is not used in config
  • wgLatestQuestionsOnlyForAnons is not used in config
  • wgLegacyEncoding is not used in config
  • wgLegacySchemaConversion is not used in config
  • wgLinkCacheMemcached is not used in config
  • wgListsAsStandalone is not used in config
  • wgLivePreview is not used in config
  • wgLoadAdDriverOnLiftiumInit is not used in config
  • wgLoadFileinfoExtension is not used in config
  • wgLocalDatabases is not used in config
  • wgLocaltimezone is not used in config
  • wgLocalTZoffset is not used in config
  • wgLogActions is not used in config
  • wgLogHeaders is not used in config
  • wgLoginLocalFallback is not used in config
  • wgLogNames is not used in config
  • wgLogQueries is not used in config
  • wgLogTypes is not used in config
  • wgLogUserInvalidateCache is not used in config
  • wgLqtAllowedPages is not used in config
  • wgLVSDebugStatusEnabled is not used in config
  • wgLyricTagDisplayRingtone is not used in config
  • wgMajorSiteNoticeID is not used in config
  • wgMakeDumpLinks is not used in config
  • wgMakesysopMessages is not used in config
  • wgMakeWikiWebsite is not used in config
  • wgMakeWikiWebsiteNew is not used in config
  • wgMathDirectory is not used in config
  • wgMathPath is not used in config
  • wgMaxArticleSize is not used in config
  • wgMaxLevelOneNavElements is not used in config
  • wgMaxLevelThreeNavElements is not used in config
  • wgMaxLevelTwoNavElements is not used in config
  • wgMaxMsgCacheEntrySize is not used in config
  • wgMaxNameChars is not used in config
  • wgMaxShellFileSize is not used in config
  • wgMaxShellMemory is not used in config
  • wgMaxSquidPurgeTitles is not used in config
  • wgMaxTocLevel is not used in config
  • wgMediaWiki116Locked is not used in config
  • wgMetaNamespace is not used in config
  • wgMetaNamespaceTalk is not used in config
  • wgMimeDetectorCommand is not used in config
  • wgMimeInfoFile is not used in config
  • wgMimeType is not used in config
  • wgMimeTypeBlacklist is not used in config
  • wgMimeTypeFile is not used in config
  • wgMonacoNewSidebar is not used in config
  • wgMsgCacheExpiry is not used in config
  • wgNamespaceNamesPl is not used in config
  • wgNamespaceRobotPolicies is not used in config
  • wgNamespacesForEditPoints is not used in config
  • wgNamespacesWithSubpagesLocal is not used in config
  • wgNavigationLinks is not used in config
  • wgNewCommentFirst is not used in config
  • wgNewSearchSuggestions is not used in config
  • wgNewUserLog is not used in config
  • wgNielsenApid is not used in config
  • wgNLPLDASpotlightIds is not used in config
  • wgNLPSpotlightIds is not used in config
  • wgNoFollowDomainExceptions is not used in config
  • wgNoFollowLinks is not used in config
  • wgNoFollowNsExceptions is not used in config
  • wgNonincludableNamespaces is not used in config
  • wgNotificationEnableInvite is not used in config
  • wgNotificationEnableSend is not used in config
  • wgNotificationFetchContacts is not used in config
  • wgNotifyTCP is not used in config
  • wgNoWideAd is not used in config
  • wgOasisDisableWikiaScriptLoader is not used in config
  • wgOasisHD is not used in config
  • wgOasisResponsiveLimited is not used in config
  • wgOasisThemeSettings is not used in config
  • wgOasisThemeSettingsHistory is not used in config
  • wgOnlySysopsCanPatrol is not used in config
  • wgOur404HandlerBroaderRedirects is not used in config
  • wgOutboundScreenAdLayout is not used in config
  • wgOutboundScreenRedirectDelay is not used in config
  • wgOutputEncoding is not used in config
  • wgPageShowWatchingUsers is not used in config
  • wgPagesWithNoAdsForLoggedInUsersOverriden is not used in config
  • wgPagesWithNoAdsForLoggedInUsersOverriden_AD_LEVEL is not used in config
  • wgPaidAssetDropConfig is not used in config
  • wgParserTestFiles is not used in config
  • wgPartnerVideoIngestionData is not used in config
  • wgPartnerWikiConfig is not used in config
  • wgPasswordAttemptThrottle is not used in config
  • wgPasswordReminderResendTime is not used in config
  • wgPasswordSalt is not used in config
  • wgPFStringLengthLimit is not used in config
  • wgPhalanxDisableContent is not used in config
  • wgPhotoPopSettings is not used in config
  • wgPollDBName is not used in config
  • wgPollImagePath is not used in config
  • wgPopularBlogPostsOnlyTitles is not used in config
  • wgPortableInfoboxCustomImageWidth is not used in config
  • wgPorvataVastLoggerConfig is not used in config
  • wgPreSpamFilterCallback is not used in config
  • wgPrivateTracker is not used in config
  • wgProfileCallTree is not used in config
  • wgProfileLimit is not used in config
  • wgProfileOnly is not used in config
  • wgProfilePerHost is not used in config
  • wgProfilerType is not used in config
  • wgProfileSampleRate is not used in config
  • wgProfileToDatabase is not used in config
  • wgProtectUserpages is not used in config
  • wgProxyList is not used in config
  • wgProxyMemcExpiry is not used in config
  • wgProxyPorts is not used in config
  • wgProxyScriptPath is not used in config
  • wgPutIPinRC is not used in config
  • wgQueryCacheLimit is not used in config
  • wgRailInAside is not used in config
  • wgRandomWikiRecommend is not used in config
  • wgRateLimitsExcludedGroups is not used in config
  • wgRawHtml is not used in config
  • wgRCChangedSizeThreshold is not used in config
  • wgRCMaxRows is not used in config
  • wgRCShowChangedSize is not used in config
  • wgRCShowWatchingUsers is not used in config
  • wgReadOnlyFile is not used in config
  • wgRecirculationDiscussionsAlias is not used in config
  • wgRecirculationParselyCommunityTag is not used in config
  • wgRecirculationTestGroup is not used in config
  • wgRedHerring is not used in config
  • wgRedirectIconUrl is not used in config
  • wgRedirectImage is not used in config
  • wgRedirectPages is not used in config
  • wgRedirectScript is not used in config
  • wgRedirectSources is not used in config
  • wgRelatedPagesAddAfterSection is not used in config
  • wgRelatedVideoCategories is not used in config
  • wgRemoteUploads is not used in config
  • wgRemoveGroupsLocal is not used in config
  • wgRemovePermissionsFromHelpers is not used in config
  • wgRemovePermissionsFromVSTF is not used in config
  • wgReorderWidgets is not used in config
  • wgReportMailViaStomp is not used in config
  • wgRequestWikiMoreInfoDropDownCount is not used in config
  • wgRequireFBConnectionToComment is not used in config
  • wgReservedUsernames is not used in config
  • wgRestrictionLevels is not used in config
  • wgRestrictionTypes is not used in config
  • wgRevisionCacheExpiry is not used in config
  • wgReviveSpotlightsCountries is not used in config
  • wgRevokePermissions is not used in config
  • wgRevokePermissionsLocal is not used in config
  • wgRightsIcons is not used in config
  • wgRobotsNoindexBeforeDisallow is not used in config
  • wgRobotsTxtRemoveDeprecatedDirectives is not used in config
  • wgRT24487SpecialCase is not used in config
  • wgRunIndexingPipeline is not used in config
  • wgSalesTitles is not used in config
  • wgSaveDeletedFiles is not used in config
  • wgSearchBoostFor_title is not used in config
  • wgSearchDebug is not used in config
  • wgSearchDefaultFulltext is not used in config
  • wgSearchForwardUrl is not used in config
  • wgSearchPort is not used in config
  • wgSearchResultsPerPage is not used in config
  • wgSearchSkipBoostFunctions is not used in config
  • wgSearchType is not used in config
  • wgSearchURL is not used in config
  • wgSecretKey is not used in config
  • wgSelfServiceAdvertisingSplash_DestinationEmail is not used in config
  • wgSessionName is not used in config
  • wgSharedGlobalnavigation is not used in config
  • wgSharedMessages is not used in config
  • wgSharedUploadDBprefix is not used in config
  • wgShinyAdsSelfServeUrl is not used in config
  • wgShowAdModalRectangle is not used in config
  • wgShowArticleThumbDetailsIcon is not used in config
  • wgShowCreditsIfMax is not used in config
  • wgShowEXIF is not used in config
  • wgShowIPinHeader is not used in config
  • wgShowSQLErrors is not used in config
  • wgShowUpdatedMarker is not used in config
  • wgSimpleHtmlSearchIndexer is not used in config
  • wgSingleH1 is not used in config
  • wgSitenameForComscore is not used in config
  • wgSiteNotice is not used in config
  • wgSiteSupportPage is not used in config
  • wgSitewideDisableAdsOnMercury is not used in config
  • wgSitewideDisableGpt is not used in config
  • wgSitewideDisableKrux is not used in config
  • wgSitewideDisableLiftium is not used in config
  • wgSitewideDisablePaidAssetDrop is not used in config
  • wgSkinExtensionFunctions is not used in config
  • wgSkinPreviewPage is not used in config
  • wgSocialUserPage is not used in config
  • wgSortSpecialPages is not used in config
  • wgSpamBlacklistSettings is not used in config
  • wgSpamRegex is not used in config
  • wgSpecialContactUnlockURL is not used in config
  • wgSpecialPages is not used in config
  • wgSpecialSpamWikisLastUpdate is not used in config
  • wgSpecialVersionShowHooks is not used in config
  • wgSpellCheckerExtraWordsEn is not used in config
  • wgSpellCheckerExtraWordsGlobal is not used in config
  • wgSponsorAdsLimit is not used in config
  • wgStoriesLinkTagTimeout is not used in config
  • wgStrictFileExtensions is not used in config
  • wgStructuredDataServer is not used in config
  • wgSupressPageTitle is not used in config
  • wgSVGConverterPath is not used in config
  • wgSVGConverters is not used in config
  • wgSVGMaxSize is not used in config
  • wgSysopRangeBans is not used in config
  • wgSysopUserBans is not used in config
  • wgSystemHost is not used in config
  • wgTexvcBackgroundColor is not used in config
  • wgTheEyeConfig is not used in config
  • wgThumbLimits is not used in config
  • wgThumbnailEpoch is not used in config
  • wgThumbnailScriptPath is not used in config
  • wgTidyBin is not used in config
  • wgTidyConf is not used in config
  • wgTidyInternal is not used in config
  • wgTidyOpts is not used in config
  • wgTopButtonPosition is not used in config
  • wgTranscludeCacheExpiry is not used in config
  • wgTranslateNumerals is not used in config
  • wgTrivialMimeDetection is not used in config
  • wgTrustedMediaFormats is not used in config
  • wgTrustedMediaFormatsLocal is not used in config
  • wgUpdateRowsPerJob is not used in config
  • wgUpdateRowsPerQuery is not used in config
  • wgUploadBaseUrl is not used in config
  • wgUploadDirectory is not used in config
  • wgUploadDirectoryNFS is not used in config
  • wgUploadNavigationUrl is not used in config
  • wgUploadSizeWarning is not used in config
  • wgUseAdServer is not used in config
  • wgUseAjax is not used in config
  • wgUseAssetsManager is not used in config
  • wgUseCategoryBrowser is not used in config
  • wgUseCategoryMagic is not used in config
  • wgUseCommaCount is not used in config
  • wgUseCopyrightUpload is not used in config
  • wgUseDARTOnMainPage is not used in config
  • wgUseDatabaseMessages is not used in config
  • wgUseDumbLinkUpdate is not used in config
  • wgUseDynamicDates is not used in config
  • wgUseESI is not used in config
  • wgUseExternalEditor is not used in config
  • wgUseFileCache is not used in config
  • wgUseGzip is not used in config
  • wgUseInstantCommons is not used in config
  • wgUseMemCached is not used in config
  • wgUseMonaco2 is not used in config
  • wgUseNewAnswersSkin is not used in config
  • wgUseNewestSemanticMediaWiki is not used in config
  • wgUseNewReverseParser is not used in config
  • wgUseNPPatrol is not used in config
  • wgUsePathInfo is not used in config
  • wgUserEmailUseReplyTo is not used in config
  • wgUserFeedbackConfig is not used in config
  • wgUserHtml is not used in config
  • wgUserProfilePagesHideInterviewSection is not used in config
  • wgUsersNotifiedOnAllChanges is not used in config
  • wgUseSharedUploads is not used in config
  • wgUseSiteCss is not used in config
  • wgUseTeX is not used in config
  • wgUseTidy is not used in config
  • wgUseTrackbacks is not used in config
  • wgUseVideoVerticalFilters is not used in config
  • wgUseWallIndex is not used in config
  • wgUseWatchlistCache is not used in config
  • wgUseXMLparser is not used in config
  • wgUseZhdaemon is not used in config
  • wgValidationForAnons is not used in config
  • wgVariantArticlePath is not used in config
  • wgVerifyMimeType is not used in config
  • wgVideoPageToolEnableExt is not used in config
  • wgVideosModuleBlackList is not used in config
  • wgWallCopyFollowsHasBeenFiredBefore is not used in config
  • wgWallIndexed is not used in config
  • wgWAMPageConfig is not used in config
  • wgWAMRedirects is not used in config
  • wgWantedPagesThreshold is not used in config
  • wgWatchlistNotificationTimeout is not used in config
  • wgWhitelistFiles is not used in config
  • wgWhitelistRead is not used in config
  • wgWidgetAnswersForceCategory is not used in config
  • wgWidgetAnswersForceCategoryForAsk is not used in config
  • wgWidgetAnswersForceDomain is not used in config
  • wgWikiaAdvertiserCategory is not used in config
  • wgWikiaAutoHubsFeedsDisplayed is not used in config
  • wgWikiaAutoHubsStats is not used in config
  • wgWikiaBarConfig is not used in config
  • wgWikiaCreatePageUseFormatOnly is not used in config
  • wgWikiaCuratedContent is not used in config
  • wgWikiaEnableDefaultSystemMessagesExt is not used in config
  • wgWikiaEnableEditSimilarExt is not used in config
  • wgWikiaEnableNiceCategoryListExt is not used in config
  • wgWikiaEnableRespawnMapExt is not used in config
  • wgWikiaEnableShowHideExt is not used in config
  • wgWikiaEnableSocialTools is not used in config
  • wgWikiaEnableSpecialCreateWikiExt is not used in config
  • wgWikiaEnableSpecialPrivateDomainsExt is not used in config
  • wgWikiaEnableStringFunctionsExt is not used in config
  • wgWikiaEnableTitleEditExt is not used in config
  • wgWikiaEnableUserMasthead is not used in config
  • wgWikiaEnableVideoExt is not used in config
  • wgWikiaEnableWildcardsearchExt is not used in config
  • wgWikiaEnableXSoundBoxExt is not used in config
  • wgWikiaGameGuidesRecommend is not used in config
  • wgWikiaHomePageCollectionsHooks is not used in config
  • wgWikiaHomePageEntertainmentSlots is not used in config
  • wgWikiaHomePageHotWikiSlots is not used in config
  • wgWikiaHomePageHubsSlots is not used in config
  • wgWikiaHomePageHubsSlotsV2 is not used in config
  • wgWikiaHomePageLifestyleSlots is not used in config
  • wgWikiaHomePageNewWikiSlots is not used in config
  • wgWikiaHomePageVideoGamesSlots is not used in config
  • wgWikiaHubsFileRepoOnCorpWikiaCom is not used in config
  • wgWikiaHubsPages is not used in config
  • wgWikiaHubsSearchMapping is not used in config
  • wgWikiaMobileAppPackageIdLocalPart is not used in config
  • wgWikiaPartners is not used in config
  • wgWikiaRelatedVideoSid is not used in config
  • wgWikiaSearchABTestEnabled is not used in config
  • wgWikiaSearchNative is not used in config
  • wgWikiaSearchPageName is not used in config
  • wgWikiaSearchPort is not used in config
  • wgWikiaSearchServer is not used in config
  • wgWikiaSearchStaticDir is not used in config
  • wgWikiaSearchStylesheet is not used in config
  • wgWikiaSearchURL is not used in config
  • wgWikiaSearchUseProxy is not used in config
  • wgWikiaSitename is not used in config
  • wgWikiaUsePHPBB is not used in config
  • wgWikiaUseTemplatedCreatepage is not used in config
  • wgWikiaVideoCategoryPath is not used in config
  • wgWikiEntities is not used in config
  • wgWikiLdaTopics is not used in config
  • wgWikiTopic is not used in config
  • wgWikiTopics is not used in config
  • wgWikiVideoSearchTopics is not used in config
  • wgWikiVideoSearchTopicsAutomated is not used in config
  • wgWikiVideoSuggestTopics is not used in config
  • wgWikiwygEnabled is not used in config
  • wgWLCacheTimeout is not used in config
  • wgWysiwygDisableOnTalk is not used in config
  • wgWysiwygEnabledNamespaces is not used in config
  • wgWysiwygUseNewToolbar is not used in config
  • wgXhtmlDefaultNamespace is not used in config
  • wgXhtmlNamespaces is not used in config
  • wgZhdaemonHost is not used in config
  • wgZhdaemonPort is not used in config
grep -i $1 not_used_variables.md | awk -F"\`" '{print "\"" $2 "\""}' | tr "\n" ","
  • exDomainList is not used in app nor in config
  • wgAbuseFilterBlockTime is not used in app nor in config
  • wgAchievementsEditAddPhotoOnly is not used in app nor in config
  • wgAchievementsFirstRevision is not used in app nor in config
  • wgAddNoIndexToFilePages is not used in app nor in config
  • wgAdDriverAdsRecoveryMessageCountries is not used in app nor in config
  • wgAdDriverEnableInstartLogicRecovery is not used in app nor in config
  • wgAdDriverForceLiftiumAd is not used in app nor in config
  • wgAdDriverHitMediaCountries is not used in app nor in config
  • wgAdDriverInstartLogicRecoveryCountries is not used in app nor in config
  • wgAdDriverTaboolaCountries is not used in app nor in config
  • wgAdDriverUseWikiaBarBoxad2 is not used in app nor in config
  • wgAdsDisableLeaderboards is not used in app nor in config
  • wgAdServerPath is not used in app nor in config
  • wgAdServerUrl is not used in app nor in config
  • wgAdsInterstitialsCampaignCode is not used in app nor in config
  • wgAdsInterstitialsDurationInSeconds is not used in app nor in config
  • wgAdsInterstitialsEnabled is not used in app nor in config
  • wgAdsInterstitialsPagesBeforeFirstAd is not used in app nor in config
  • wgAdsInterstitialsPagesBetweenAds is not used in app nor in config
  • wgAdSkin is not used in app nor in config
  • wgAdslotsLazyLoad is not used in app nor in config
  • wgAdSS_OnlyAdmin is not used in app nor in config
  • wgAdSS_pricingLevel is not used in app nor in config
  • wgAFSEnabled is not used in app nor in config
  • wgAFSKeywords is not used in app nor in config
  • wgAkamaiLocalVersion is not used in app nor in config
  • wgAllowPhotoPopGame is not used in app nor in config
  • wgAlternateMaster is not used in app nor in config
  • wgAnalyticsProviderUseUA is not used in app nor in config
  • wgAnswersScript is not used in app nor in config
  • wgAnswersServer is not used in app nor in config
  • wgAnswersShowInlineRegister is not used in app nor in config
  • wgApertureIncludeCityId is not used in app nor in config
  • wgAvatarsUseSwiftStorage is not used in app nor in config
  • wgBlackListCacheTime is not used in app nor in config
  • wgBlackTitleListFiles is not used in app nor in config
  • wgBlockedMessagesExt is not used in app nor in config
  • wgCachedMessageArrays is not used in app nor in config
  • wgChatBanMigrated is not used in app nor in config
  • wgChatLoadTestChance is not used in app nor in config
  • wgChatOperationMode is not used in app nor in config
  • wgChatServersBasket is not used in app nor in config
  • wgCheckCopyrightUpload is not used in app nor in config
  • wgCheckUserMessages is not used in app nor in config
  • wgCiteErrors is not used in app nor in config
  • wgColorErrors is not used in app nor in config
  • wgComboAjaxLogin is not used in app nor in config
  • wgCommentsOnlyNamespaces is not used in app nor in config
  • wgCommunityPageExperimentPages is not used in app nor in config
  • wgConfirmEditMessages is not used in app nor in config
  • wgContactLink is not used in app nor in config
  • wgCreateMessages is not used in app nor in config
  • wgCreatePageCoverRedLinks is not used in app nor in config
  • wgDBLightMode is not used in app nor in config
  • wgDBminWordLen is not used in app nor in config
  • wgDBtransactions is not used in app nor in config
  • wgDebugSquid is not used in app nor in config
  • wgDisableBadImageList is not used in app nor in config
  • wgDisabledSpecialPages is not used in app nor in config
  • wgDisableGlobalCSS is not used in app nor in config
  • wgDisableGlobalJS is not used in app nor in config
  • wgDisableGoResult is not used in app nor in config
  • wgDisableKruxKV is not used in app nor in config
  • wgDisableOldAdDriver is not used in app nor in config
  • wgDisableSearchContext is not used in app nor in config
  • wgDiscussionAlertsQueries is not used in app nor in config
  • wgDismissableSiteNoticeMessages is not used in app nor in config
  • wgDisplayLanguageSelectorOnLogin is not used in app nor in config
  • wgDotDisplay is not used in app nor in config
  • wgEditSimilarCounterValue is not used in app nor in config
  • wgEditSimilarMarker is not used in app nor in config
  • wgEnable3rdpartyInputBox is not used in app nor in config
  • wgEnableAbPerformanceTestingExt is not used in app nor in config
  • wgEnableAdBulkUploadExt is not used in app nor in config
  • wgEnableAdEngineExt is not used in app nor in config
  • wgEnableAdMeldAPIClient is not used in app nor in config
  • wgEnableAdMeldAPIClientPixels is not used in app nor in config
  • wgEnableAdsFooter600x250 is not used in app nor in config
  • wgEnableAdsLazyLoad is not used in app nor in config
  • wgEnableAdsPrefooter is not used in app nor in config
  • wgEnableAdSS is not used in app nor in config
  • wgEnableAdTopRightButton is not used in app nor in config
  • wgEnableAjaxLogin is not used in app nor in config
  • wgEnableAmazonExt is not used in app nor in config
  • wgEnableAnswersSudoAd2 is not used in app nor in config
  • wgEnableAnswersTags is not used in app nor in config
  • wgEnableAperture is not used in app nor in config
  • wgEnableApiGateExt is not used in app nor in config
  • wgEnableArticle300x600 is not used in app nor in config
  • wgEnableAutoHubsExt is not used in app nor in config
  • wgEnableAwards is not used in app nor in config
  • wgEnableAWCForum is not used in app nor in config
  • wgEnableBackAndForthExt is not used in app nor in config
  • wgEnableBiLExt is not used in app nor in config
  • wgEnableBlogsAsClassifieds is not used in app nor in config
  • wgEnableBrokenRenameFixExt is not used in app nor in config
  • wgEnableCalendarBarrylbExt is not used in app nor in config
  • wgEnableCategoryHubsExt is not used in app nor in config
  • wgEnableCategoryPagesInMercury is not used in app nor in config
  • wgEnableChat2 is not used in app nor in config
  • wgEnableCloakCheck is not used in app nor in config
  • wgEnableCodeReviewExt is not used in app nor in config
  • wgEnableCommentsOnlyExt is not used in app nor in config
  • wgEnableCommunityPageExperiment is not used in app nor in config
  • wgEnableContributionAppreciationExt is not used in app nor in config
  • wgEnableCovertOpsExt is not used in app nor in config
  • wgEnableCreatepageInHubs is not used in app nor in config
  • wgEnableCreativeCommonsRdf is not used in app nor in config
  • wgEnableCrossWikiaSearchOption is not used in app nor in config
  • wgEnableCrunchyrollExt is not used in app nor in config
  • wgEnableCuratedContentUnauthorizedSave is not used in app nor in config
  • wgEnableCustomFooterExt is not used in app nor in config
  • wgEnableCustomReportsExt is not used in app nor in config
  • wgEnableDaemonLoaderExt is not used in app nor in config
  • wgEnableDatalagExt is not used in app nor in config
  • wgEnableDiscussionPostsCountInUserIdentityBox is not used in app nor in config
  • wgEnableDocstocExt is not used in app nor in config
  • wgEnableDublinCoreRdf is not used in app nor in config
  • wgEnableEditEnhancements is not used in app nor in config
  • wgEnableEditingTipsExt is not used in app nor in config
  • wgEnableEditPageChanges is not used in app nor in config
  • wgEnableEditResearch is not used in app nor in config
  • wgEnableEmailTemplatesExt is not used in app nor in config
  • wgEnableEmoticonsExt is not used in app nor in config
  • wgEnableExternalLinksExt is not used in app nor in config
  • wgEnableEzAPIExt is not used in app nor in config
  • wgEnableFacebookConnectExt is not used in app nor in config
  • wgEnableFacebookConnectPushing is not used in app nor in config
  • wgEnableFacebookSync is not used in app nor in config
  • wgEnableFieldsetExt is not used in app nor in config
  • wgEnableFlashMp3Ext is not used in app nor in config
  • wgEnableGamingCalendarExt is not used in app nor in config
  • wgEnableGlobalNavExt is not used in app nor in config
  • wgEnableGoogleAuthorInfo is not used in app nor in config
  • wgEnableGraceExpiredExt is not used in app nor in config
  • wgEnableHeliosExt is not used in app nor in config
  • wgEnableHome300x600 is not used in app nor in config
  • wgEnableHTMLetsExt is not used in app nor in config
  • wgEnableHubRssFeed is not used in app nor in config
  • wgEnableIframeAds is not used in app nor in config
  • wgEnableImageLightboxExt is not used in app nor in config
  • wgEnableImageReviewMercuryExt is not used in app nor in config
  • wgEnableImageServing is not used in app nor in config
  • wgEnableImageServingTest is not used in app nor in config
  • wgEnableKruxOnMobile is not used in app nor in config
  • wgEnableLastfmExt is not used in app nor in config
  • wgEnableLatestQuestionsExt is not used in app nor in config
  • wgEnableLiquidThreadsExt is not used in app nor in config
  • wgEnableListsExt is not used in app nor in config
  • wgEnableListspinnerExt is not used in app nor in config
  • wgEnableLocalNavExt is not used in app nor in config
  • wgEnableLuaExt is not used in app nor in config
  • wgEnableMagCloudExt is not used in app nor in config
  • wgEnableMagicAnswer is not used in app nor in config
  • wgEnableMailerLog is not used in app nor in config
  • wgEnableMarketingToolboxExt is not used in app nor in config
  • wgEnableMeeboExt is not used in app nor in config
  • wgEnableMessageTestHelperExt is not used in app nor in config
  • wgEnableMobileProductsExt is not used in app nor in config
  • wgEnableNewContactExt is not used in app nor in config
  • wgEnableNewGlobalFooter is not used in app nor in config
  • wgEnableOnSiteNotifications is not used in app nor in config
  • wgEnableOur404HandlerExt is not used in app nor in config
  • wgEnableOutboundScreenExt is not used in app nor in config
  • wgEnablePageHeaderExperiment is not used in app nor in config
  • wgEnablePageLayoutBuilder is not used in app nor in config
  • wgEnablePageShareExt is not used in app nor in config
  • wgEnablePageShareWorldwide is not used in app nor in config
  • wgEnablePaperExt is not used in app nor in config
  • wgEnablePayPalPayment is not used in app nor in config
  • wgEnablePersistentLC is not used in app nor in config
  • wgEnablePhotoPopExt is not used in app nor in config
  • wgEnablePolldaddyExt is not used in app nor in config
  • wgEnablePollExt is not used in app nor in config
  • wgEnablePremiumPageHeader is not used in app nor in config
  • wgEnableRandomUsersWithAvatarsExt is not used in app nor in config
  • wgEnableReadsFromAttributeService is not used in app nor in config
  • wgEnableRelatedVideoSpotlight is not used in app nor in config
  • wgEnableReleaseNotesExt is not used in app nor in config
  • wgEnableRenderContentModuleOnlyExt is not used in app nor in config
  • wgEnableSassUtilLogging is not used in app nor in config
  • wgEnableSearchDigestExt is not used in app nor in config
  • wgEnableSearchRankTrackerExt is not used in app nor in config
  • wgEnableSelfServiceAdvertisingSplashExt is not used in app nor in config
  • wgEnableSeoCrossLinkExt is not used in app nor in config
  • wgEnableSeoFriendlyImagesForMobile is not used in app nor in config
  • wgEnableSimpleUrlFetchExt is not used in app nor in config
  • wgEnableSiteMetricsExt is not used in app nor in config
  • wgEnableSliderTag is not used in app nor in config
  • wgEnableSpecialChangesXmlToFeedUrl is not used in app nor in config
  • wgEnableSpecialDevCookieExt is not used in app nor in config
  • wgEnableSpecialFunnel is not used in app nor in config
  • wgEnableSpecialSpamWikisExt is not used in app nor in config
  • wgEnableSpecialWikiStats is not used in app nor in config
  • wgEnableSpellCheckerExt is not used in app nor in config
  • wgEnableSponsoringAdminExt is not used in app nor in config
  • wgEnableSponsoringExt is not used in app nor in config
  • wgEnableStructuredData is not used in app nor in config
  • wgEnableTandemAds is not used in app nor in config
  • wgEnableTandemAds_delay is not used in app nor in config
  • wgEnableTandemAds_slave is not used in app nor in config
  • wgEnableTheorytabExt is not used in app nor in config
  • wgEnableTimeMarkerExt is not used in app nor in config
  • wgEnableTopButton is not used in app nor in config
  • wgEnableTopButtonWide is not used in app nor in config
  • wgEnableUbisoft is not used in app nor in config
  • wgEnableUpdatedGlobalFooter is not used in app nor in config
  • wgEnableUserBadgesExt is not used in app nor in config
  • wgEnableUserengagementExt is not used in app nor in config
  • wgEnableUserProfilePagesExt is not used in app nor in config
  • wgEnableUserProfilePagesV3 is not used in app nor in config
  • wgEnableVenusArticle is not used in app nor in config
  • wgEnableVenusSkin is not used in app nor in config
  • wgEnableVideoTrackingExt is not used in app nor in config
  • wgEnableWebPThumbnails is not used in app nor in config
  • wgEnableWidgetsExt is not used in app nor in config
  • wgEnableWidgetShoutbox is not used in app nor in config
  • wgEnableWikiaHomePageCollections is not used in app nor in config
  • wgEnableWikiaImageOneBoxInSearch is not used in app nor in config
  • wgEnableWikiaPhone is not used in app nor in config
  • wgEnableWikiaphoneCustomCSS is not used in app nor in config
  • wgEnableWikiaSearchAds is not used in app nor in config
  • wgEnableWikiaSearchV2Ext is not used in app nor in config
  • wgEnableWikiaStatsHPExt is not used in app nor in config
  • wgEnableWikiaTitleBlackListExt is not used in app nor in config
  • wgEnableWikiaWidgetExt is not used in app nor in config
  • wgEnableWikiBuilder is not used in app nor in config
  • wgEnableWikiFeeds is not used in app nor in config
  • wgEnableWikiPaymentExt is not used in app nor in config
  • wgEnableWikiTextLoggedInOutExt is not used in app nor in config
  • wgEnableYouTubeAuthSub is not used in app nor in config
  • wgEntertainmentTitlesToCatalogData is not used in app nor in config
  • wgExperimentalRobotsTxt is not used in app nor in config
  • wgExtraRandompageSQL is not used in app nor in config
  • wgForceSkin is not used in app nor in config
  • wgGeneratePartnerFeeds is not used in app nor in config
  • wgGlobalHeaderFullWidth is not used in app nor in config
  • wgGlobalHeaderVerticalColors is not used in app nor in config
  • wgGoogleAdChannel is not used in app nor in config
  • wgGoogleAnalyticsAccount is not used in app nor in config
  • wgGoogleAnalyticsID is not used in app nor in config
  • wgGoogleAuthorLinks is not used in app nor in config
  • wgGoogleProps is not used in app nor in config
  • wgGoogleSiteVerification is not used in app nor in config
  • wgGoogleWebToolsAccount is not used in app nor in config
  • wgGraphicalDelicious is not used in app nor in config
  • wgGraphicalDigg is not used in app nor in config
  • wgHAWelcomeNotices is not used in app nor in config
  • wgHideAPI is not used in app nor in config
  • wgHideFlagsExt is not used in app nor in config
  • wgHomePageSkin is not used in app nor in config
  • wgHTMLetsDirectory is not used in app nor in config
  • wgHubRssFeedCityIds is not used in app nor in config
  • wgHubsAdsEnabled is not used in app nor in config
  • wgHubsWithoutSpotlightsList is not used in app nor in config
  • wgIgnKeywordsBlacklist is not used in app nor in config
  • wgIgnVideoBlacklist is not used in app nor in config
  • wgImageMapAllowExternalLinks is not used in app nor in config
  • wgImageReviewWhitelisted is not used in app nor in config
  • wgIncludeWikiInCorporateFooterDropdown is not used in app nor in config
  • wgInezOptTest is not used in app nor in config
  • wgInfoboxEnabled is not used in app nor in config
  • wgInfospaceSearchSub_IDS is not used in app nor in config
  • wgInPageEnabled is not used in app nor in config
  • wgIntegrateVisualDNAAAT is not used in app nor in config
  • wgJobLogFile is not used in app nor in config
  • wgLatestQuestionsOnlyForAnons is not used in app nor in config
  • wgLinkCacheMemcached is not used in app nor in config
  • wgListsAsStandalone is not used in app nor in config
  • wgLoadAdDriverOnLiftiumInit is not used in app nor in config
  • wgLoginLocalFallback is not used in app nor in config
  • wgLogQueries is not used in app nor in config
  • wgLogUserInvalidateCache is not used in app nor in config
  • wgLqtAllowedPages is not used in app nor in config
  • wgLVSDebugStatusEnabled is not used in app nor in config
  • wgLyricTagDisplayRingtone is not used in app nor in config
  • wgMakeDumpLinks is not used in app nor in config
  • wgMakesysopMessages is not used in app nor in config
  • wgMakeWikiWebsite is not used in app nor in config
  • wgMakeWikiWebsiteNew is not used in app nor in config
  • wgMediaWiki116Locked is not used in app nor in config
  • wgMonacoNewSidebar is not used in app nor in config
  • wgNamespaceNamesPl is not used in app nor in config
  • wgNamespacesForEditPoints is not used in app nor in config
  • wgNewCommentFirst is not used in app nor in config
  • wgNewSearchSuggestions is not used in app nor in config
  • wgNLPLDASpotlightIds is not used in app nor in config
  • wgNLPSpotlightIds is not used in app nor in config
  • wgNotificationEnableInvite is not used in app nor in config
  • wgNotificationEnableSend is not used in app nor in config
  • wgNotificationFetchContacts is not used in app nor in config
  • wgNotifyTCP is not used in app nor in config
  • wgNoWideAd is not used in app nor in config
  • wgOasisDisableWikiaScriptLoader is not used in app nor in config
  • wgOasisHD is not used in app nor in config
  • wgOasisResponsiveLimited is not used in app nor in config
  • wgOnlySysopsCanPatrol is not used in app nor in config
  • wgOur404HandlerBroaderRedirects is not used in app nor in config
  • wgOutboundScreenAdLayout is not used in app nor in config
  • wgOutboundScreenRedirectDelay is not used in app nor in config
  • wgPartnerWikiConfig is not used in app nor in config
  • wgPasswordReminderResendTime is not used in app nor in config
  • wgPhotoPopSettings is not used in app nor in config
  • wgPollDBName is not used in app nor in config
  • wgPollImagePath is not used in app nor in config
  • wgPopularBlogPostsOnlyTitles is not used in app nor in config
  • wgPreSpamFilterCallback is not used in app nor in config
  • wgProfilerType is not used in app nor in config
  • wgProfileSampleRate is not used in app nor in config
  • wgProtectUserpages is not used in app nor in config
  • wgRateLimitsExcludedGroups is not used in app nor in config
  • wgRecirculationTestGroup is not used in app nor in config
  • wgRedHerring is not used in app nor in config
  • wgRedirectIconUrl is not used in app nor in config
  • wgRedirectImage is not used in app nor in config
  • wgRedirectScript is not used in app nor in config
  • wgRelatedPagesAddAfterSection is not used in app nor in config
  • wgRelatedVideoCategories is not used in app nor in config
  • wgRemoteUploads is not used in app nor in config
  • wgRemovePermissionsFromHelpers is not used in app nor in config
  • wgRemovePermissionsFromVSTF is not used in app nor in config
  • wgReportMailViaStomp is not used in app nor in config
  • wgRequestWikiMoreInfoDropDownCount is not used in app nor in config
  • wgRequireFBConnectionToComment is not used in app nor in config
  • wgRevokePermissions is not used in app nor in config
  • wgRevokePermissionsLocal is not used in app nor in config
  • wgRobotsNoindexBeforeDisallow is not used in app nor in config
  • wgRobotsTxtRemoveDeprecatedDirectives is not used in app nor in config
  • wgRunIndexingPipeline is not used in app nor in config
  • wgSalesTitles is not used in app nor in config
  • wgSaveDeletedFiles is not used in app nor in config
  • wgSearchBoostFor_title is not used in app nor in config
  • wgSearchDebug is not used in app nor in config
  • wgSearchDefaultFulltext is not used in app nor in config
  • wgSearchPort is not used in app nor in config
  • wgSearchSkipBoostFunctions is not used in app nor in config
  • wgSelfServiceAdvertisingSplash_DestinationEmail is not used in app nor in config
  • wgSharedGlobalnavigation is not used in app nor in config
  • wgSharedMessages is not used in app nor in config
  • wgShinyAdsSelfServeUrl is not used in app nor in config
  • wgShowAdModalRectangle is not used in app nor in config
  • wgShowArticleThumbDetailsIcon is not used in app nor in config
  • wgSimpleHtmlSearchIndexer is not used in app nor in config
  • wgSingleH1 is not used in app nor in config
  • wgSiteSupportPage is not used in app nor in config
  • wgSitewideDisableLiftium is not used in app nor in config
  • wgSocialUserPage is not used in app nor in config
  • wgSpamBlacklistSettings is not used in app nor in config
  • wgSpecialSpamWikisLastUpdate is not used in app nor in config
  • wgSpellCheckerExtraWordsEn is not used in app nor in config
  • wgSpellCheckerExtraWordsGlobal is not used in app nor in config
  • wgSponsorAdsLimit is not used in app nor in config
  • wgStructuredDataServer is not used in app nor in config
  • wgSysopRangeBans is not used in app nor in config
  • wgSysopUserBans is not used in app nor in config
  • wgSystemHost is not used in app nor in config
  • wgTheEyeConfig is not used in app nor in config
  • wgTopButtonPosition is not used in app nor in config
  • wgUseAdServer is not used in app nor in config
  • wgUseAssetsManager is not used in app nor in config
  • wgUseCategoryMagic is not used in app nor in config
  • wgUseDARTOnMainPage is not used in app nor in config
  • wgUseMemCached is not used in app nor in config
  • wgUseMonaco2 is not used in app nor in config
  • wgUseNewAnswersSkin is not used in app nor in config
  • wgUseNewestSemanticMediaWiki is not used in app nor in config
  • wgUseNewReverseParser is not used in app nor in config
  • wgUserEmailUseReplyTo is not used in app nor in config
  • wgUserFeedbackConfig is not used in app nor in config
  • wgUserHtml is not used in app nor in config
  • wgUserProfilePagesHideInterviewSection is not used in app nor in config
  • wgUseWallIndex is not used in app nor in config
  • wgUseWatchlistCache is not used in app nor in config
  • wgUseXMLparser is not used in app nor in config
  • wgUseZhdaemon is not used in app nor in config
  • wgValidationForAnons is not used in app nor in config
  • wgVideoPageToolEnableExt is not used in app nor in config
  • wgWallCopyFollowsHasBeenFiredBefore is not used in app nor in config
  • wgWallIndexed is not used in app nor in config
  • wgWikiaAdvertiserCategory is not used in app nor in config
  • wgWikiaAutoHubsFeedsDisplayed is not used in app nor in config
  • wgWikiaAutoHubsStats is not used in app nor in config
  • wgWikiaEnableDefaultSystemMessagesExt is not used in app nor in config
  • wgWikiaEnableEditSimilarExt is not used in app nor in config
  • wgWikiaEnableNiceCategoryListExt is not used in app nor in config
  • wgWikiaEnableRespawnMapExt is not used in app nor in config
  • wgWikiaEnableShowHideExt is not used in app nor in config
  • wgWikiaEnableSocialTools is not used in app nor in config
  • wgWikiaEnableSpecialCreateWikiExt is not used in app nor in config
  • wgWikiaEnableSpecialPrivateDomainsExt is not used in app nor in config
  • wgWikiaEnableStringFunctionsExt is not used in app nor in config
  • wgWikiaEnableTitleEditExt is not used in app nor in config
  • wgWikiaEnableUserMasthead is not used in app nor in config
  • wgWikiaEnableVideoExt is not used in app nor in config
  • wgWikiaEnableWildcardsearchExt is not used in app nor in config
  • wgWikiaEnableXSoundBoxExt is not used in app nor in config
  • wgWikiaHomePageCollectionsHooks is not used in app nor in config
  • wgWikiaHomePageHotWikiSlots is not used in app nor in config
  • wgWikiaHomePageNewWikiSlots is not used in app nor in config
  • wgWikiaHubsFileRepoOnCorpWikiaCom is not used in app nor in config
  • wgWikiaHubsPages is not used in app nor in config
  • wgWikiaHubsSearchMapping is not used in app nor in config
  • wgWikiaRelatedVideoSid is not used in app nor in config
  • wgWikiaSearchABTestEnabled is not used in app nor in config
  • wgWikiaSearchNative is not used in app nor in config
  • wgWikiaSearchPageName is not used in app nor in config
  • wgWikiaSearchPort is not used in app nor in config
  • wgWikiaSearchServer is not used in app nor in config
  • wgWikiaSearchStaticDir is not used in app nor in config
  • wgWikiaSearchStylesheet is not used in app nor in config
  • wgWikiaSearchURL is not used in app nor in config
  • wgWikiaSearchUseProxy is not used in app nor in config
  • wgWikiaSitename is not used in app nor in config
  • wgWikiaUseTemplatedCreatepage is not used in app nor in config
  • wgWikiaVideoCategoryPath is not used in app nor in config
  • wgWikiVideoSuggestTopics is not used in app nor in config
  • wgWikiwygEnabled is not used in app nor in config
  • wgWLCacheTimeout is not used in app nor in config
  • wgWysiwygEnabledNamespaces is not used in app nor in config
  • wgWysiwygUseNewToolbar is not used in app nor in config
  • wgZhdaemonHost is not used in app nor in config
  • wgZhdaemonPort is not used in app nor in config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment