summaryrefslogtreecommitdiff
path: root/plugins/PiwikAnalytics
AgeCommit message (Collapse)Author
2010-12-08Tweak to PiwikAnalytics plugin to help browsers to pre-load piwik.js, may ↵Brion Vibber
shave a little off load time. Piwik's current default recommended JS for loading creates a <script> tag via document.write(). In addition to being generally evil, this means the browser doesn't know it's going to need piwik.js until that chunk of script gets executed... which can't happen until all scripts referenced *before* it have been loaded and executed. The only reason for that bit of script though seems to be to pick 'http' or 'https' depending on the current page's scheme. This can be done more simply by using a protocol-relative link (eg "//piwik.status.net/piwik.js"), which the browser will resolve as appropriate. Since it's now sitting in the <script> tag, the browser's lookahead code will now see it and be able to start loading it while earlier things are parsing/executing. May be better still to move to an asynchronous load after DOM-ready, but I'm not sure if that'll screw with the analytics code (eg, not being able to start things on the DOM-ready events since they're past).
2010-10-28Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-10-18Localisation updates from http://translatewiki.netSiebrand Mazeland
2010-10-09Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-10-03Localisation updates from http://translatewiki.netSiebrand Mazeland
2010-10-01Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-09-28Localisation updates from http://translatewiki.netSiebrand Mazeland
* first export of L10n for languages other than English. Could use some testing/QA.
2010-09-23Update POT files for plugins.Siebrand Mazeland
2010-09-19Update pot files for plugins.Siebrand Mazeland
2010-09-19Add pot files.Siebrand Mazeland
2010-09-19* L10n updateSiebrand Mazeland
* superfluous whitespace removed.
2010-09-15Move standalone plugin files into subdirectories so they can have locale ↵Brion Vibber
data, etc added to them at leisure.