[00:25:21] Hi, there is a template that I want to delete, the problem is that it is used to link articles from other projects, the template is {{Wikipedia}} and the formats vary like {{Wikipedia|United States of America|USA}} how can I remove them with AWB? https://es.wikivoyage.org/wiki/Plantilla:Wikipedia [04:41:06] got offensive spambots hitting in another channel, i don't know they they will make it this far, but might wanna go +s heilds up for a bit [05:53:48] hello, is there a plan to migrate https://wm-bot.wmflabs.org/browser/ or already a new url is generated? [11:32:50] hey, is it possible to use the params from a template and use them somewhere else? e.g. i have an infobox template used on a few pages and i want to use the data from each page using it and compile it all into one big ass table. [11:38:27] cark: https://www.mediawiki.org/wiki/Extension:DynamicPageList3 can do crazy things like this AFAIK [11:40:08] storing data in wikibase also enables handling data in many ways [11:44:02] can wikibase allow to generate such lists? [11:44:21] (itself or with any extension like Scribunto, DPL, etc) [11:45:16] cark if you want to use data from inside templates to generate a table, then you likely want SMW or Cargo [11:45:39] cark here is a comparison of some options https://professional.wiki/en/articles/managing-data-in-mediawiki [11:49:12] Vulpix: you are right, it is too hard for wikibase if scribunto is not available [11:51:10] sorry, my English failed. wikibase with en:Module:Wb can generate list or what you want [11:51:56] The data would not be coming from a template though [11:53:17] Hello, any clues why i am getting 404 errors on main page in default MediaWiki install? The page displays correctly in browser, but in log i can see: ""GET /wiki/Hlavn%C3%AD_strana HTTP/1.1" 404 12469". Any clues what could be causing that? [11:53:44] correction: it was not wb, but https://en.wikipedia.org/wiki/Module:Wd [11:53:54] I wonder how it is possible to acually send page, but with 404 code... And why even browser accepts it [11:54:59] gryffus: if the page displays correctly, maybe the log is old? Also a 404 status page is totally acceptable by the browser. Pages that don't exist on the wiki return 404 status but with the default "there's no page with that name on the wiki" [11:55:27] Vulpix: i am doing tail -f on the log. And the error appears in each page load / browser refresh [11:56:27] gryffus: Maybe the main page doesn't exist? What content does it display? [11:56:28] Only thing i am aware of is changing logo to a SVG one. I still have to find out how do i scale it, but that is another problem... I will comment out the logo again and see if the 404 is still there [11:57:39] Omg... Yes, it was just that ... Sorry... [11:57:53] Vulpix, PewPew: thanks, i'll look into those [11:57:54] The page indeed did not exist :D [11:58:39] I feel so dumb now. Ok, so to the another question. Is it possible to scale logo to fit, somehow? I am using SVG-format logo. [12:01:25] gryffus: what is the problem your logo has now? [12:01:35] It is too large [12:01:39] So it is cut [12:06:00] I guess the size should be configured... but I can find the option [12:07:15] is it not enough resize the svg file? [12:08:27] SVG does not have "size" AFAIK. Or am i mistaken? [12:09:28] svg is a format for vector, but explicitly setting size is also possible [12:09:54] Ok, i will try to download some editor for SVG and will try [12:50:32] Resize of course worked. Thanks [14:26:25] okay, update: i've added cargo to my template but for some reason the table isn't populating with all the pages that use the template [14:26:41] this is the template in question: https://tilde.wiki/wiki/Template:Tilde_Infobox [14:28:59] am i missing something? [19:28:17] Does anyone know why we get: `MWException from line 135 of /srv/mediawiki/w/extensions/Math/src/MathMathMLCli.php: Failed to execute Mathoid cli '/srv/mathoid/cli.js', reason: execvp: Permission denied` [19:34:13] Universal_Omega: does the web server user have permissions to read and execute /srv/mathoid/cli.js? [19:52:27] majavah: it should. [23:31:13] hey, i'm trying to write a css file but for some reason when i include a var() it doesn't save and just dumps me back into the editor, is there a way to stop that? [23:34:02] cark: var() is not allowed in inline styles and TemplateStyles (sanitized css) pages [23:34:36] it may work in sitewide css pages (e.g. MediaWiki:Common.css) but I haven't personally tested that [23:36:01] really? that sucks. [23:36:13] is there any hacky way i can use them in templatestyles anyway [23:40:54] no [23:41:08] it's disallowed for security reasons [23:41:44] ok, thanks [23:43:19] if you're an admin you can try putting the styles in Common.css or a default-loaded gadget instead. As mentioned before I believe var() works there but I haven't personally tested that