Last modified: 2014-04-06 08:00:12 UTC
Created attachment 8120 [details] Simple fix for OutputPage::makeResourceLoaderLink If a ResourceLoaderWikiModule (user or site) is empty, i.e. the relevant pages doesn't exist, there should be no link to it from the html to avoid unnecessary requests. Currently, it doesn't only output the link, but also adds a version parameter with the current timestamp, which bypasses all caches. This is due to a bug in OutputPage::makeResourceLoaderLink, where the modifiedTimestamp of the module is rounded to 0 if it returns 1. This bug occurs in the following circumstances: * For the site module, if MediaWiki:Common.js and MediaWiki:<Skin>.js is empty. * For the user css module, if not logged in. * For the user js module, if logged in and the user js pages are empty. Simple fix attached.
Timestamp issue fixed in r82219.
(In reply to comment #1) > Timestamp issue fixed in r82219. Wow, thanks for this report. It cut server load on the bits Apaches in half: http://file.status.net/i/identica/catrope-20110216T150241-xmvxh2t.png
Roan fixed this during the deploy.
(In reply to comment #3) > Roan fixed this during the deploy. No I didn't, only part of it. The timestamp issue was fixed, but the loading of the user module for users with no user JS/CSS (and anons!) persists.
Created attachment 8173 [details] Attaching the picture to the bug for posterity.
Fixed in r82468.