[00:10:18] huh what happened on phabricator? i cant unassign someone on T11424, like the option literally is not there [00:10:46] only have those two options [00:12:12] welp, doesnt work on any task actually [00:16:11] Try copy the content into `User:youraccountname/common.css` (replaceing youraccountname with well your actual accountname) stuff in there will only apply to you, but will take effect immediately, but if it works there it will eventually work on the sitewide version too. A good way to test CSS [00:16:53] probably the best way to test CSS [00:17:01] yeah [00:17:15] instead of pushing broken css to your entire site, test it on yourself first [00:17:28] prototyping though i like to add the rules in inspect element [00:17:30] real time [00:17:31] thats what i do unless its something minor [00:18:11] well personally I do prefer using the inspector most times, when creating my CSS, as things change on the fly then, but yeah when going backwards putting it in the user version is certainly easier [00:18:26] ohhhh i need to be added to the trusted contributors project [00:18:33] didnt even know that thing existed tbh [00:19:06] They changed that somewhat recently yeah on phab to deal with the increasing vandalism [00:19:07] who do i ask to get added to it? [00:19:17] its gotten worse? [00:19:30] <:blue_yawn:973208209940684850> [00:20:07] which of the 21 members can kindly add me to the project <:blue_blush:972958603474513930> [00:21:01] I mean the big thing that triggered the change I believe is the "doomdaying of MH" messages being put in as edits in phab as well. [00:21:49] well thats surely interesting [03:42:17] yeah, you missed a lot [05:56:35] <.yowin> Hello team, is it possible to turn the Minerva mobile skin into dark mode ? Or maybe change the background color ? [06:10:42] [1/2] if you use Mobile Frontend extension then that has to be done in MediaWiki:Mobile.css page [06:10:42] [2/2] however, I advice to use other mobile responsive skins for mobile mode like Timeless or Cosmos, they are much more functional (but Minerva will have to be enabled for MFE to work) [06:28:21] How do I edit confirmed user groups so they can post external links in their user page? [06:36:08] 🙏 thank you, i never thought of that [08:41:33] why is this happening [08:41:36] there is just so much wrong [08:41:43] with the overlap [08:42:14] overlapping text, overlapping buttons, text-wrapping where there shouldn't be [08:42:22] got the same extension installed, im guessing its designed for a different skin or something lol [08:42:31] hm maybe actually [08:43:01] another wiki i'm on that uses the same skin has it looking all nice and stuff [08:43:14] but maybe there's some settings I need to mess around with for that to work [08:45:16] [1/11] So, I've done that, but the font seems to remain unchanged. [08:45:16] [2/11] Does anyone see anything wrong with this code? [08:45:17] [3/11] ```css [08:45:17] [4/11] @font-face { [08:45:17] [5/11] font-family: "Rubik", sans-serif; [08:45:17] [6/11] src: url("https://fonts.googleapis.com/css2?family=Rubik&display=swap"); [08:45:18] [7/11] } [08:45:18] [8/11] .mw-body-content { [08:45:18] [9/11] font-family: "Rubik", sans-serif; [08:45:19] [10/11] } [08:45:19] [11/11] ``` [08:45:48] how must i remove this blatant blasphemy [08:46:46] this works [08:47:00] for you personally [08:47:30] you can also disable it for everyone in the `extensions` page [08:47:39] but you probably shouldn't [08:50:59] i can only assume i've imported it wrong [08:51:27] because looking at page sources, it does indeed have `font-family: "Rubik", sans-serif;` [08:51:51] [1/5] maybe i just need to do [08:51:52] [2/5] ```css [08:51:52] [3/5] @import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap'); [08:51:52] [4/5] ``` [08:51:53] [5/5] by itself or something [08:52:06] or not [08:53:18] or yes [08:53:22] just need to put it at the top of the file [08:53:33] okay! finally! it works [08:54:20] [1/6] ```css [08:54:21] [2/6] @import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap'); [08:54:21] [3/6] .mw-body-content { [08:54:21] [4/6] font-family: 'Rubik', sans-serif; [08:54:21] [5/6] } [08:54:22] [6/6] ``` [08:56:04] fsr my `MediaWiki:Common.css` decided to actually update instantly for once too [08:56:06] today is a good day [09:00:35] the blasphemy is still there just less of it [09:00:40] i want it ALL GONE [09:00:41] ALL OF IT [09:00:50] GET IT OFF THE CYBERSPACE [09:01:51] SocialProfile extension is old beyond saving, it will be good only w/ additional CSS blanked over it [09:02:10] and yet I can't guarantee that [09:02:20] I eventually got rid of it [09:02:42] it's a neat extension though [09:02:46] use `` tags instead of `=` [09:03:28] you can make charinsert for easier use [09:04:07] but yeah, I can tell you have missed some class [09:10:01] well, i fixed the text wrapping at least [09:10:19] How do I customise the rest though [09:26:10] apparently the `#profile` tag exists for CSS, so i'll just use that ig [09:26:57] [1/10] ``` [09:26:57] [2/10] {{MaimaiSonglistCategory|Initial Update (9/18/2014)|bg=linear-gradient(45deg, #4cd1ff 0%, #ff6500 5%, #ff6500 #95%, #4cd1ff 100%)|color=#054fac}} [09:26:57] https://meta.miraheze.org/wiki/Template:MaimaiSonglistCategory [09:26:57] [3/10] ``` [09:26:58] [4/10] ```html [09:26:58] [5/10] [09:26:58] [6/10] !style="background:{{{bg|#b4b4b4}}}; background-size:{{{size|100%}}}; background-repeat:{{{repeat|repeat}}}; background-position:{{{pos|0% 0%}}}; color:{{{color|black}}}; text-align: center;" colspan="10"|{{{1}}} [09:26:58] https://meta.miraheze.org/wiki/Template:%7bbg [09:26:58] [7/10] |- [09:26:59] [8/10] /includeonly [09:26:59] [9/10] ``` [09:26:59] [10/10] am i being dumb again or is something wrong with the bg, because the gradient isn't showing [09:36:00] nvm. i'm dumb again, sorry [10:24:44] Is it possible for us to edit these [10:25:59] is this another SocialProfile thing? [10:26:17] or achievements? [10:26:48] yes [10:27:04] not seeing any settings for it in `Special:ManageWiki/settings/socialprofile` though [10:27:23] just these [10:28:54] guess that's all [10:30:33] in zat case [10:30:39] could more options be added? [10:32:07] [1/2] via SRE/Phabricator [10:32:07] [2/2] but w/ current shortage of SRE it's gonna take a long time [10:32:53] what's SRE and why is it shortaged [10:33:05] and actually, if possible, what can I do to help? [10:33:34] Miraheze system administrators and technicians, roughly speaking [10:35:03] [1/2] shortage because some volunteers left Miraheze and decided to start their own thing. [10:35:04] [2/2] our current SRE are Paladox, MacFan (w/ limited access) and Void (who is also steward, so currently very loaded). [10:35:26] oh wow so only 3 [10:35:53] why don't more people become SRE? [10:36:25] as Miraheze is in the process of transitioning to US based company we can't really get new SRE untill new company is fully established and has proper NDA [10:37:06] can't people help out anyway though [10:37:25] rhinos is former SRE so helps a lot [10:37:33] but not directly [10:37:48] SRE and stewards should sign NDA [10:38:02] an NDA for what [10:38:16] it's very responsible heavy places because they have access to personal data and security stuff [10:38:21] High security stuffs [10:38:25] oh right [10:38:44] what about like [10:38:58] helping with resitricted access [10:39:30] just enough access to do things like update `LocalSettings.php` and modify the Miraheze extension setting options [10:39:54] obviously that'd still require a level of trust, but it'd help things move forward [10:39:55] If I'm correct, those are SRE stuffs [10:39:55] no [10:40:29] you gotta know MediaWiki itself inside out at least [10:41:25] for that kind of stuff? [10:41:39] and Miraheze utilises its own thing, ManageWiki [10:42:19] the interface where you see some of those php settings [10:42:37] is it hard to add to? [10:42:48] hey Labster [10:42:59] <.labster> Editing the files isn't high security anyway, it's all public repositories. [10:43:23] so you just have to suggest changes i'm guessing [10:43:28] or however GitHub works [10:44:34] <.labster> Make a pull request, pretty much. Honestly spending the time to learn git has been one of those technical skills I've never regretted the time for. [10:44:59] alr, sounds like a goal [10:45:49] github has higher priority than phab backlog? [10:46:18] <.labster> A lot of phab backlog is things requiring coding. [10:46:33] btw image import requests might start piling up again [10:47:05] <.labster> /shrug But I'm a programmer not a SRE so I see the world that way anyway [10:47:35] I've made a phab request for contact extension setting, but never was told that it has to be done via github [10:48:15] <.labster> Yeah, sounds like a change to ManageWiki based on ^ [10:49:38] what? contact? [10:50:55] If it's not in ManageWiki, it'll need github [10:51:06] I'm pretty sure contact extension will need github [10:52:44] <.labster> oh, new extesnion, not a setting for an existing extension. I was just guessing [10:54:05] wait [10:54:26] extension is available [10:56:06] it lacks setting in managewiki, add link in footer [10:56:16] I managed to make it via js but [10:56:38] if there's a setting js shouldn't be needed [10:57:51] phab in mobile is messed up [10:59:59] If the setting doesn't show, please add it on github [11:36:47] why's the image replace not working (SocialProfile awards) [11:37:00] this is the original image [11:37:11] and uploading a new one hasn't changed anything anywhere [11:42:23] cache [11:43:26] even on wiki.gg cache refresh after new version upload is hecking slow [13:48:59] I need to scrap another wiki, but I still can't make node.js nor python 3 scripts work 🥲 [13:50:45] Scap? [13:51:15] make image dump [13:51:43] I used node.js one before and it worked, no idea what's the problem now [13:52:13] python ... idk, I simply never succeed at running anything i python [13:52:35] I oddly prefer Python for stuff [13:58:28] I made some Phabricator tickets but are still pending triage. What is the expected waiting time? [13:58:48] When someone does [13:59:39] Yes. I can know that, but there is another estimation [14:05:23] Hard to give an accurate estimate when there are like 3 SRE volunteers currently, as legroom explained earlier https://discord.com/channels/407504499280707585/407537962553966603/1175021278214750328 [14:06:58] yes. I read that [14:07:29] I wish i could be an SRE but i don't have that tecnical knowledge [14:23:59] I use the wikiteam's python script to make xml and image backups of my wiki, you need a specific python version and then it should go smoothly if you follow the documentation [14:24:52] yeeea, the 2.7 one I tried back in 2021, now 3 ... [14:25:16] I do things things according guides [14:25:23] Oh? The one I use is still 2.7 [14:25:29] and it doesn't even starts [14:25:36] python 3 version is new [14:25:53] I hate python [14:26:11] Wikiteam's script is still using 2.7 though, unless something changed in recent months? [14:26:24] Python 3 is not new [14:26:35] 2.7 shouldn't be used under any circumstances [14:26:36] whatever [14:26:41] it's here [14:27:22] [14:27:27] Python 3 is probably older than half the people in this server [14:31:14] 14 years and 11 months [14:32:22] Thanks for making me feel very old ...(36) [14:35:29] I felt old today in another server explaining what is Hamachi [14:37:07] haha, yeah good old Hamachi xD. A while since I heard that word last [14:44:29] @xenareee I dump my xml from command line [15:40:13] when sitemaps update again? [15:49:07] h elp me why wont it do the thing [16:04:18] when sitemaps are updated again [16:05:14] this is rigged! [16:05:53] drop a link, hard to tell [16:13:06] Is it possible to make a millitary conflict infobox? [16:15:28] nevermind, the infobox magically started working again. [16:15:54] what is this sorcery [16:28:10] [[Infoboxes]] [16:28:10] https://meta.miraheze.org/wiki/Infoboxes [16:28:11] [17:01:27] how do i change the color of the frame of an image [17:02:24] [1/2] what image [17:02:25] [2/2] the file thing, in gallery, or? [17:03:17] like if i insert an image and i give it a frame [17:03:19] it's white [17:03:37] and i want to change the color [17:04:41] this? https://discord.com/channels/407504499280707585/407537962553966603/1166842122230575186 [17:06:52] i don't think so [17:07:16] that looks like the problem is the fact that the frame exists [17:07:31] i want to change the color of the frame [17:07:46] oh one sec [17:08:56] its either div.thumbinner or li.gallerybox div.thumb [17:09:45] [1/3] for example, my f-zero skin has ```div.thumbinner {background-color:#a5000044; border-color:#0a0a0a; border-style:solid; border-width:2px;} [17:09:45] [2/3] li.gallerybox div.thumb {background-color:#a5000044; border-color:#0a0a0a; border-style:solid; border-width:2px;}``` [17:09:46] [3/3] in order to change all the file/gallery backgrounds [17:10:53] I mean, make color instead of transparent [17:11:18] gives you this, with the red backdrop and black border [18:28:06] Crying 🥲 [18:29:11] Lua moment [18:36:16] Not sure how to fix it [18:36:39] did you just add it? or it worked before? [18:37:04] I added it earlier today, yeah [18:43:45] oi [18:54:46] I'm just gonna do this for now [18:56:43] wikipedia templates are over complicated [18:56:52] we suggest people make simpler templates [19:06:35] I would need to figure out how first 🥲 [19:12:21] I'm bad at making my own templates [19:12:58] I think this one case is better to be typed manually [19:13:01] it's like [19:13:08] it's just like that ... [19:13:37] I like shortcuts lol. [19:30:23] What should I do if I have just created a wiki? [19:30:55] because I am almost completely clueless [19:31:31] think what's your wiki's subject, check extensions and settings, see which ones you might need [19:32:22] draft main page, check established wikis as examples in main page layout + templates [19:32:31] note how categorization works [19:32:41] check Help portal on mediawiki.org too [19:33:24] Thank you! [19:41:41] Got this to work :3 https://pokemonfakemon.miraheze.org/wiki/User:Osprey1990/sandbox [20:59:08] how does this even work [20:59:15] on other wikis, you gain points by making edits [20:59:22] but that doesn't seem to be the case for my wiki [20:59:42] i've made over 300 edits by now, but have the same points as someone who's made 15 [20:59:50] which can't be right [21:02:51] What are you counting points with [21:04:02] i have no idea [21:04:10] how do i toggle the setting [21:04:15] i can't even remember what extension this is [21:05:07] if it is an extension even [21:05:46] it's an extension [21:06:32] SocialProfile has a lot of function [21:07:22] it's very just clunky [21:09:25] i'm not seeing any setting regarding points for SocialProfile [21:54:36] woah [21:54:53] bring back banner maybe [21:58:31] @clockworky ? [21:58:36] You here? [21:58:38] yeah [21:58:53] Since when were you back @clockworky [21:59:02] since yesterday ¯\_(ツ)_/¯ [21:59:56] Nice! [22:00:00] Welcome back [22:00:01] yikes, been about 3 months since i disappeared [22:00:05] thanks! [22:00:18] yee [22:00:22] 👋 [22:01:34] O