[10:17:27] do my wikipedia and wikimedia logins share the same password? [10:18:13] hmm... apparently they do [13:45:43] hello, i have a question about the resource loader. running mediawiki with varnish in front and noticed that many load.php requests are hitting apache because of the version parameter in the url that seems to always be the current datetime. [13:47:41] my question is how can configure mediawiki not to bust the cache by hitting load.php with new version values? $wgResourceLoaderMaxage is set to 30 days for versioned resources. [13:50:02] here is an example request: /load.php?debug=false&lang=en&modules=jquery.ui.button%2Ccore%2Cwidget&version=20160320T134757Z&* [13:51:42] Hello. I use MW over https, all ok, except when invoking Edit (ext. WIkiEditor), there is only partial encryption, Wikieditor serves /modules/images/toolbar/button-sprite.svg?d6d13 on http. How can I fix it? Thanks [13:56:23] guest2133: it looks like you are loading resources through a http: url [13:56:32] not just wikieditor [14:04:00] Unfortunately it is with Wikieditor only, logo is secure, favicon is secure, only toolbar is insecure [14:47:54] Platonides: Could it be this code [14:47:59] autoIcon: function ( icon, path ) { [14:47:59] var src = $.wikiEditor.autoLang( icon ); [14:48:00] path = path || $.wikiEditor.imgPath; [14:48:00] // Prepend path if src is not absolute [14:48:00] if ( src.substr( 0, 7 ) !== 'http://' && src.substr( 0, 8 ) !== 'https://' && src[ 0 ] !== '/' ) { [14:48:00] src = path + src; [14:48:02] } [14:48:04] return src + '?' + mw.loader.getVersion( 'jquery.wikiEditor' ); [14:48:06] },