https://bugzilla.wikimedia.org/show_bug.cgi?id=67990
--- Comment #2 from Krinkle <[email protected]> --- mwgrep is specifically designed to run a search across all wikis. It doesn't have an option to search one wiki. To search an individual wiki, just use Special:Search (with namespace=8 to limit results to the MediaWiki-namespace). mwgrep uses the same ElasticSearch backend that the new CirrusSearch uses (which you may have to opt-in via the preferences, or pass &srbackend=CirrusSearch to Special:Search). As general advice I'd also recommend you don't use search too much when working your way through deprecations. The console is more reliable for this. Both because search in general tends to be fragile (it's meant for English, not code, it misses random things all the time), and encourages a mindset of "0 matches means the code is good". Which is wrong not only because search is fragile, but also because lots of deprecations don't have a text match (e.g. specific signatures of jQuery methods). You should identify deprecations through the console by it emitting a warning. This way you catch them all, and you're also able to debug it locally, find where the warning is coming from (e.g. make some edits locally, try it out, etc.). And it also helps focus on code that is actually run on pages you use (as opposed to potentially abandoned/unused code). As we get closer to the deadline, I will make a few dumps of global mwgrep searches which you may use to also find the left overs on Commons (they'll be grouped by wiki) -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
