[02:14:32] [1/2] it just doesn't show up at all [02:14:33] [2/2] (sorry i was away and forgot to reply to this) [04:17:47] it is temporarily unavailable on Mireheze and it's under test [04:24:08] [1/2] How I can add usual edit summaries? [04:24:08] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1388011996712140910/IMG_20250627_122320.jpg?ex=685f6e68&is=685e1ce8&hm=ce86313f1424c5b9dfdfd078891199c731d65d73f707dc9719d9887b4b9b1aa0& [04:26:05] Can I build a wiki about porn or political content? [04:42:17] I'm not too versed in lua, I run all my string manipulation with [[mw:module:string]] is there a module that implements these global string lua functions? [04:42:18] [04:53:47] is there a way for me to "refresh" special pages or to know when it will refresh because ive updated a lot of uncategorized pages, files, etc. but the list on Special hasnt updated [05:17:32] can take up to a week sadly [05:23:44] [1/3] [[Content policy]] [05:23:44] [2/3] ^ read it carefully [05:23:45] [3/3] short answer: you are not allowed to store gigabytes of porn and spread offensive stuff [05:23:45] [05:51:47] Which function are you trying to use? `replace` should be global by default. Some other ones may not. [05:52:03] Match [05:52:33] I want to read the categories on a page and parse it as formatted text [05:53:17] So I want to match all [category:string] [05:53:34] And show only the string part [05:55:44] {{#invoke:String|match|...|%[Category:(.-)%]}} [05:55:58] Sadly only returns .e the first match [05:58:05] You can try to match multiple categories with the regex (e.g. `(some pattern)+`) or use `replace` instead. [05:58:45] For replace, you would look for parts that are not in a category and then replace them with the empty string, which will be pretty hard, though. [05:59:39] Doesn't seem to work [05:59:45] What about the sexual jokes? [05:59:46] I'll try replace [06:00:52] Yeah that was a stupid idea. I should've thought it through. [06:01:09] No biggie [06:03:02] [1/2] as long as they aren't offensive? and part of wiki's topic [06:03:03] [2/2] a wiki is not blog, discussion or social media platform, - it's a wiki, a collection of data/articles [06:03:05] If nothing works ill just have to check for each category with a huge ass list [06:36:15] https://snagowiki.miraheze.org/wiki/Template:Snagovdistrict [06:36:20] Somebody check this out and help repair it? [06:36:23] Idk why the file is so huge [06:42:58] https://cdn.discordapp.com/attachments/407537962553966603/1388046936556437504/IMG_2314.png?ex=685f8ef2&is=685e3d72&hm=431001669cb080f63ae92793d731f4562fac0b5bd69f72767af3db8114667a23& [06:45:51] <_arawynn> @Discord Moderators [09:14:46] [1/2] How do I change the source for footer images? [09:14:47] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1388085138822271066/image.png?ex=685fb286&is=685e6106&hm=0b43d93ec30c9631482e9202c4e35a3337b034f63e2c83b1a01f4e8c29c4acd8& [09:15:10] this can be only changed via phorge task [09:15:17] only by tech team [09:15:40] I see, is there no other way? I just need to change the text color to white [09:15:55] i suggest give it light background in css [09:27:52] [1/20] I think you can do it with some css `after` magic [09:27:53] [2/20] ``` [09:27:53] [3/20] #footer-icons a { [09:27:53] [4/20] background-color: black; [09:27:54] [5/20] } [09:27:54] [6/20] a.cdx-button img { [09:27:54] [7/20] display: none; [09:27:54] [8/20] } [09:27:55] [9/20] a.cdx-button::after { [09:27:55] [10/20] content: ""; [09:27:55] [11/20] display: inline-block; [09:27:56] [12/20] width: 80px; [09:27:56] [13/20] height: 20px; [09:27:57] [14/20] background-image: url('https://static.wikitide.net/strinovawiki/5/5e/Wallpaper_%E5%86%AC%E5%A4%9C%E5%BA%84%E5%9B%AD%E5%92%8C%E7%A5%9E%E7%A7%98%E5%AE%A2.png'); [09:27:57] [15/20] background-size: contain; [09:27:58] [16/20] background-repeat: no-repeat; [09:27:58] [17/20] background-position: center; [09:27:59] [18/20] } [09:27:59] [19/20] ``` [09:28:00] [20/20] https://cdn.discordapp.com/attachments/407537962553966603/1388088433515303003/image.png?ex=685fb597&is=685e6417&hm=c2d740217d4b68f49e795ae8e299f7e4d82813dac093b71b41990ba471fa9801& [09:28:27] Just hide the original image and use `::after` to insert a new image [09:28:59] it's not cool tho [09:29:00] Btw the code is written by Claude is therefore not copyrighted. I didn't bother to think of a solution myself and thought LLMs probably already knew. [09:29:27] i don't remember exact reason but rhinos advised only phorge way [09:29:54] Hmmm. I think this approach is prone to breakage with skin updates, especially with an actively developed one like vector-2022. [09:30:10] That'll be the main reason to not do it. [09:32:42] for that reason I don't really recommend it and the footer is a touchy area where certain things have to be there [09:33:15] privacy policy, tou and so on, even if any change is just an addition [10:59:43] [1/3] An issue with this approach is that the alt text is no longer present (1st image shows the accessibility properties when using pseudo elements, the second one when using normal footer icons) [10:59:44] [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1388111547787771986/image.png?ex=685fcb1e&is=685e799e&hm=da627ba6948fa3dd2dded02b20360e6c9f3e703d28f4f5c3b9523d4bb14816f9& [10:59:44] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1388111548135772291/image.png?ex=685fcb1e&is=685e799e&hm=d356bedb7ade4718d0e3c725547d2af6f19a014e94c5ff62d7db6803ccbf391a& [12:28:04] why would even modify the watermarks by changing it into random image in the first place [13:36:14] [1/2] Does the parser styling the output dies for very large pages or its possible to make it apply styles still [13:36:14] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1388150937515724843/image.png?ex=685fefce&is=685e9e4e&hm=3014042a73777627ec82d3fddb05d0a8b051a278f53628899f5ee85c6819beda& [13:36:54] [1/2] As it still works for other module pages [13:36:54] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1388151103757094962/image.png?ex=685feff5&is=685e9e75&hm=f6fc0f256c77af8d837ea8cdf6c11776507cabfce699c5a94d5da31d0de296f5& [15:09:27] is it possible to add custom extensions on miraheze [15:11:16] make a task on phorge, if it passes review it can be installed [15:11:29] security/compatibility etc [15:11:38] ok thx [16:36:59] I want to give `managewiki-extensions` permission to a user. not knowing what im doing, I made a user group with that permission, but as wiki admin it wont let me add the user to the group. its under the section of groups i cant add the user to. Any thoughts? [16:42:19] open the user group in managewiki/permissions, navigate to group assignments and make the group assignable by bureaucrats (or anything else) [19:43:10] Is anyone in the channel here associated with the Virtual Pet wiki? I see that it is about to close, and I might be interested in trying to revive it. I also manage Keitai Wiki on Miraheze 🙂 [19:44:15] Ah that makes sense. [19:45:03] [1/2] you mean dormancy policy banner? [19:45:03] [2/2] if it got closed status you can request stewards to re open it, then start editing or try to adopt it [19:45:54] Dark mode probably. The text is black and there is no easy way to make it white without messing up the whole image. [19:48:01] It seems that is it almost closed but not closed yet. [19:49:49] [1/3] can you edit it? if yes, then make an edit and banner should go away [19:49:49] [2/3] if you can't it's either got closed or admin took away edit rights from normal users? [19:49:50] [3/3] if the wiki is private it's basically lost cause [20:00:59] It looks like I can edit! I hope the founders reappear though, I don't know a whole lot about virtual pets :cheemsblush: [20:39:12] @tali64 hello I need your assistance in the matter [20:39:35] What do you need help with? [20:40:48] Do you know this user that has been against the removal of group pages in that Greatest Characters wiki? [20:41:24] Say no more - what's their newest account? [20:41:43] So your aware who this person is [20:43:56] Yes [20:48:41] Okay so you know this person as Anime2022 correct? [20:53:27] Indeed [20:57:58] Oh yeah, you definitely aware of the person I’m talking about [20:59:03] This person been harassing everyone in the fandom wiki instead including trying to convince me to rebel against the admins here [21:00:59] This is an issue that can only be resolved by Fandom staff, since it appears the wiki has no active admins - the admins of the Miraheze wiki can't do anything about it [21:05:14] Okay I see what I can do here [21:19:35] The person you're referring to is extremely service-banned from Miraheze for obvious reasons. Wishing you success in getting Fandom staff to take action. [22:50:17] When there’s multiple wikis on the same topic, how does ownership get decided in the merge [23:33:20] just add the white background on the watermarks and call it a day