[00:08:02] [1/2] heeeey guya uh how do i make css rules not apply on special pages :) [00:08:02] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222698678133854370/btQAKRr.png?ex=661729e1&is=6604b4e1&hm=9e352baf86cb4d0ffd646cba52c72a136be65a19104740bee74491e086b4fe5a& [00:08:22] the normal button is painfully small on articles [00:33:54] say what [00:37:06] No way to do it via pure CSS. You could check the namespace with JS and conditionally load the CSS. [00:46:53] rip oh well thx [00:47:18] i think they may be certain classes based on namespace [00:47:53] not like its a google search qnd a line of js [01:02:09] [1/4] If you wanted to do the JS its something like [01:02:10] [2/4] ```js [01:02:10] [3/4] mw.config.get('wgCanonicalNamespace') [01:02:10] [4/4] ``` [01:02:15] To check the namespace [01:03:13] Alternatively the reverse is also true and you could add a class to the body if its a special page or not etc. [01:09:47] Oh yesss I remember trying (and failing :P) to help with that, in the end the solution was just adding Edit to $wgRestrictionTypes in Special:ManageWiki/settings wasn't it? [01:21:28] ...Except the wiki does have it already :ThinkerMH: Guh why can't it be that simple. [01:31:08] I wished I had wrote that down 😒 [01:39:40] It confuses me because I clearly remember, I know I believed this was what caused the issue last time :ThinkerMH: [01:48:23] [1/4] I'll check tomorrow. [01:48:23] [2/4] It's 2:48 am now, so I am off to πŸ›οΈ [01:48:23] [3/4] I can't think straight anymore. [01:48:24] [4/4] πŸ’€ [01:48:34] (Wellll in the meantime if that fix doesn't work I suppose this is still a valid workaround even if it doesn't solve the deeper problem :P https://discord.com/channels/407504499280707585/407537962553966603/1196561592318435578) [01:50:22] Bwoahhhh [01:50:50] I think it was something about protecting the Main page [01:51:09] Why does that suddenly pop-up in my head [01:53:02] @rodejong why do you always stay up till 3 AM. I mean I love talking to ya but like still [01:53:05] [1/2] I initially assumed it required protecting Module pages but I thought this is what was proven wrong by the wgRestrictionTypes thing so [01:53:06] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222725118011375658/slugmystery.png?ex=66174281&is=6604cd81&hm=c89c353ed9e0f9793ee55261df0e3355db1ba67bcf1257049ebb92dee5db0c7c& [01:54:14] Well, I suggested it to him, so we'll see when he updates it. [01:54:32] I also added your suggestion from https://discord.com/channels/407504499280707585/407537962553966603/1196561592318435578 [01:54:44] See if that works. [01:54:47] Thanks [01:55:07] I can't help myself. I'm a night owl [01:56:18] Night night! [01:56:35] [1/2] πŸ‘ [01:56:35] [2/2] Good night then! (for me too coincidentally I have the same timezone and hadn't fully realized it was this late haha) [01:57:09] Internet moment lmao [01:57:11] night yall [01:58:01] im going back to listening to the same five songs on repeat(i love curses and glimpse of us swhbyewouwBRjziv;hpaeriu) [01:59:12] All normal pages should be an a body with the css class `mw-editable`, it should be rather easy to only apply your css rule to require this [01:59:26] In other news, we have our first new Board nomination! [01:59:36] oooooooooooo good to know, thanks void! [02:00:06] I'd check the classes now but all I have is my school chromebook which doesn't even allow inspect element *dies* [02:00:39] Congrats DeeM28 on the Board nomination! [02:01:10] Assuming they accept, but hell yeah [02:01:29] Pix, mind if I edit your second real quick to make a slightly better pun [02:01:33] I'm loving these actually [02:01:45] on the CD/Noms page [02:02:26] [1/2] does anyone know why this code in my common.js is not replacing the wiki logo? it seems to work on other elements, just not the logo [02:02:26] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222727470361608295/image.png?ex=661744b2&is=6604cfb2&hm=0a80e72d8d1bf7e7c6a227c4d2222e429af121ebcd1347be9940dcaf2b7694b1& [02:02:29] Be my guest [02:03:34] I've been taking too many martial art classes, that must be it. My instructors chronic bad puns are rubbing off on me. [02:04:02] Pix: done [02:04:09] let me know how you like it [02:05:15] Hmm [02:05:17] Not Sure [02:06:26] eh sure. In truth when I was writing that I wanted to make an NA pun then couldn't come up with anything. I was gonna write i couldn't come up with a pun, then I realized I can make that itself a pun [02:06:51] oh the reception one is chefs kiss though [02:06:55] didnt see the whole diff [02:07:20] Christ I forgot how long my sig is [02:07:36] um ill elect to ignore that for now instead of feeling bad [02:08:02] ~~nothing is illegal if you dont write a rule against it~~ a joke [02:09:31] Oh hi grif! (Actually not sleeping yet it's fun enough to see you here haha) `mw-wiki-logo` should actually be its class, not its id - try something like `document.getElementsByClassName("mw-wiki-logo")[0]` (assuming this isn't just something where `$wgLogo` in Special:ManageWiki/settings would be enough). [02:10:05] If people do raise major objections to it I would change, I have one set on WMF I haven't even used thats nice and short. [02:10:08] anyways! [02:11:42] hi there ^_^ i didn't even realize it was a class, duh... lemme give that a shot [02:12:29] `document.getElementsByClassName("mw-wiki-logo")[0]` could prob be shortened using JQuery [02:12:46] This is true actually I really need to elarn jquery. [02:13:05] i know a bit about programming in general but very not experienced with either js or jquery [02:13:17] Quick google search [02:13:26] should be something like [02:13:44] `$( '.mw-wiki-logo' )` [02:14:03] (Without jquery you can also do `document.querySelector(".mw-wiki-logo")` which I guess is pretty much the same thing but longer) [02:14:32] I've used jquery for simple mods before on MediaWiki but I'm faaaaaaaa from a js man [02:14:39] Pythonista lol [02:15:10] I WANT to learn Python but I don't even know what I would use it for lol. [02:16:57] @brandon.wm if you don't mind I think I'll revert the part on NA's cause the original encapsulates the joke I mentioned before(RIP no msg reply "I was gonna write i couldn't come up with a pun, then I realized I can make that itself a pun") [02:17:20] It's your comment, feel free to whatever of course πŸ™‚ [02:17:33] aha, looks like i got things working, thanks for the help everyone [02:17:45] https://cdn.discordapp.com/attachments/407537962553966603/1222731323383349319/toast.png?ex=66174848&is=6604d348&hm=07fe73f81d3431c8270090274a7f584b188a7009079b65c49d14af45ce8f8efb& [03:15:34] im trying to use [Dynamic Sidebar]() , what is the internal name for the administrator group? [03:15:57] its sysop right? [03:19:38] correct [03:19:49] thank you!! [08:12:07] May I ask if there is possibility to generate a image dump? [08:15:01] on miraheze - yes [08:15:17] via manage wiki's dumps admin menu [08:16:05] [1/2] why does my bot keep getting ratelimited? [08:16:05] [2/2] i already gave it bot and confirmed perms [08:22:33] Do you mean selecting the namesapce "Files" in the Import Dump menu? [08:28:00] [1/2] As I saw that only namespace can be selected in the menu [08:28:01] [2/2] And I am not sure if images and other files are included in it [08:59:14] images are files [09:29:31] What's the exact error? [09:32:35] does that means I can directly use the importImages.php to import the images from the .xml.gz (or .xml file after unzip) file? [09:32:57] [1/4] ``` [09:32:57] [2/4] {'error': {'code': 'ratelimited', 'info': "You've exceeded your rate limit. Please wait some time and try again.", '*': 'See https://space.miraheze.org/w/api.php for API usage. Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and b [09:32:57] [3/4] reaking changes.'}, 'servedby': 'mw151'} [09:32:58] [4/4] ``` [09:34:40] [1/2] you want to import or export? [09:34:40] [2/2] I thought you meant export [09:34:59] Check no rate limit is assigned to bot [09:35:07] I want to export an image dump from Miraheze [09:36:15] I don't know how import works technically on MediaWiki, but on export you get an archive w/ files [09:36:41] I guess you can make it ny yourself into any other archive format [09:37:13] [1/2] oh [09:37:13] [2/2] ty [09:37:41] Hmm but I think currently Miraheze did not open the function for user to generate an image archive... [09:38:04] that's why I want to ask for administrators' help [09:38:31] well yeah, it's limited to admins [09:39:17] I checked and the format is tar.gz [09:39:22] on file export [09:40:14] [1/2] maybe I shall wait for the administrators' help lol [09:40:14] [2/2] anyway thank you for answering my question [09:41:37] [1/3] there are permissions for managing dumps, by default assigned only to admins [09:41:37] [2/3] if they want to, they can assign them to normal users [09:41:37] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1222843025760452620/IMG_20240328_124034.jpg?ex=6617b050&is=66053b50&hm=e0ef87059866d0dab65188f5496b4bd7126996dc59404224dad0c5a4c3368a33& [09:43:12] [1/2] actually I have the Bureaucrats user group in the wiki [09:43:12] [2/2] but the only two types of dumps I can generate are xml.gz and managewiki backup [09:43:25] there isn't a option called Image Dump there [09:45:43] do you have sysop? [09:47:15] sysop? [09:47:23] administrator [09:47:37] are in that user group? [09:47:39] hmm I host my wiki on Miraheze so I guess I wont have that? [09:47:57] for Administator user group I did have that [09:48:09] bureau and sysop are given to wiki requester by default [09:48:43] I am the wiki requester so I have both groups [09:58:18] hm I see now [09:58:23] sorry [09:59:07] I don't know why or when file dump was disabled [09:59:43] in summer 2023 it was a thing (fpr obvious reasons) [10:00:55] [1/3] Never-mind [10:00:55] [2/3] still thank you for answering my question [10:00:56] [3/3] I might need to continue waiting administrators to help with this problem lol [10:02:01] Despite I have raised this issue at the support channel three days ago and received no reply [10:58:07] All requests like these must go through issue-tracker.miraheze.org [12:16:49] Thanks [12:17:33] For creating the Megapedia Wiki [12:17:59] :EpicFaceMH: :DevMH: [12:37:15] [1/2] https://jwmeeting.miraheze.org/wiki/Main_Page [12:37:16] [2/2] The logo disappeares half of the page. What do I need to change in the css? [12:37:29] https://jwmeeting.miraheze.org/wiki/Template:Portal:Frontpage/style.css [12:38:43] To add the logo from Main page in the Minerva Neue skin [12:40:49] https://cdn.discordapp.com/attachments/407537962553966603/1222888124921811006/project_20240328_1440378-01.png?ex=6617da51&is=66056551&hm=f24ef55625c193f1c747cd5f4dba3b553d9f43df14312ce9d7a5cc968be7c2d1& [12:40:55] Mega brother [12:42:14] what's megapedia about again [12:47:02] Megapedia is the fictional wiki [12:47:06] For Novaworld [12:47:16] I want the add logo of main page in my wiki [12:47:26] Of skin Minerva [12:49:40] [1/2] That doesn't answer the question. [12:49:41] [2/2] It's fiction about what? [12:50:03] I was just curious what sort of wiki it was tbh [13:17:35] ok πŸ‘Œ [14:27:25] [1/3] Hi, I am a newbie on miraheze. I have an issue with all of my messagebox templates. When I create one, I just get the following error on the page: [14:27:25] [2/3] "Lua error in package.lua at line 80: module 'Dev:Mbox' not found." [14:27:25] [3/3] I am sure this is a mistake or just a silly miss on my side, but does anyone know how to fix this? [14:28:46] [1/2] You need to import the Mbox module. [14:28:46] [2/2] Where did you get the lua code from? [14:29:08] I moved a wiki from fandom to Miraheze [14:29:29] Then you also need to import the Mbox module [14:29:41] Well, how do i do this? [14:29:46] No idea [14:29:55] ah, okay [14:29:59] thanks for the help [14:31:21] The module is on [[fandom:dev:Module:MBox]] but copying it may be more difficult then Crtl c v [14:31:21] https://meta.miraheze.org/wiki/fandom:dev:Module:MBox [14:31:22] [14:31:28] Unfortunately I’m not very well versed in this [14:36:30] [1/2] is it possible to make this: [14:36:30] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222917236214202468/image.png?ex=6617f56d&is=6605806d&hm=5bb12f29cc66d27057d0eb1b06e8d11ffaafd52f17834aa6d9a709ba3218f62c& [14:37:01] Link? [14:37:03] https://cdn.discordapp.com/attachments/407537962553966603/1222917376555614328/image.png?ex=6617f58f&is=6605808f&hm=8c5283828ab796ed82e14f625a60d9850af4eb0b929a441932c093945cebae44& [14:37:12] Oh this is a uhm what do you call it [14:37:14] Fandom stuff [14:37:22] Infobox? [14:37:28] let me get it [14:37:37] Yes it's a infobox [14:38:15] [1/2] https://typicalcolors2.fandom.com/wiki/Template:Class_Template [14:38:15] [2/2] well I already see that the creator added a no include so that's neat [14:38:38] [[mw:Extension:PortableInfobox]] [14:38:38] https://www.mediawiki.org/wiki/Extension:PortableInfobox [14:38:39] [14:38:44] oo! [14:38:51] Based off the fandom one [14:39:19] Maintained by our very own UniversalOmega [14:39:36] That's really awesome that I can achieve this [14:39:43] you know why I got this idea? [14:40:00] (Two editors were kinda arguing on Renders and Ingame Images.) [14:40:08] Lol [14:40:16] Its kinda funny [14:40:20] [1/2] Okay so... how would I get a link like `wiki.orivium.io`? [14:40:21] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222918202489831444/image.png?ex=6617f654&is=66058154&hm=db328431919e4297a3764f4442fcc5a9348d10b9cc0964644b6239a54fb43716& [14:40:21] gallery syntax in `image =` [14:40:35] [[Custom domains]] [14:40:35] https://meta.miraheze.org/wiki/Custom_domains [14:40:36] [14:40:39] I’m assuming you own that domain already? [14:40:55] been there done that [14:41:28] We... literally filled out a custom domain form, how did this even happen? [14:41:43] Huh [14:41:49] Did it revert back? [14:43:37] ... [14:44:39] [1/2] sigh turns out, we didn't do that and just nilly willy opened a wiki under miraheze xD [14:44:39] [2/2] Sorry for the inconvenience lmao [14:44:57] time to go the walk of shame and fill out the custom domain form [14:45:23] No worries [14:47:55] https://cdn.discordapp.com/attachments/407537962553966603/1222920111791411290/image.png?ex=6617f81b&is=6605831b&hm=c06886d8010e31c01c5ac92f6cb41712d6eaceb5a00cb68e7ae9c460b5807369& [14:47:56] We have been scammed [14:48:04] I'm kidding [15:04:23] [1/2] I have done that it only did this(I know you are on break leg) [15:04:23] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1222924253477732443/image.png?ex=6617fbf6&is=660586f6&hm=f82b120e1b9959d24bc6d62950f2d4875ec96149dd565d5c0553c8e63b5ed84f& [15:08:32] I just had fun with that if you noticed [15:15:53] [1/2] in Portable Infobox [15:15:53] [2/2] you are showing me table infobox [15:16:01] [[Infoboxes]] [15:16:01] https://meta.miraheze.org/wiki/Infoboxes [15:16:02] [16:20:35] France! [17:03:25] @Meta Administrators vandal account https://meta.miraheze.org/wiki/Special:Contributions/%D0%9A%D0%B8%D1%97%D0%B2 [17:06:11] only edit on meta [17:06:48] seems to be a good faith editor on https://alternatehistory.miraheze.org/wiki/Special:Contributions/%D0%9A%D0%B8%D1%97%D0%B2 though [17:15:28] huh [17:15:56] hacked account? or just trolling [17:16:33] I dunno [17:47:46] no talk about the WikiTide merge with Miraheze? [17:49:18] Hm? [17:50:18] We've been knowing about the merger for 3 months now [17:50:23] so it's an old topic [17:50:25] not much to talk about tbh [17:50:41] I see [17:52:29] board election is the big one I'd expect more of at this point [17:52:47] the merger will finish by April 15th [17:53:20] I mean I am sure if someone asks some specific qeustion there will be people more than willing to answer, but not much general talk to talk about related to it [17:54:16] some wiki circles are finding out now about the April 15th deadline [17:54:28] so I'm guessing that'll perhaps stir discussion a bit [17:55:09] you mean wt -> mh migrations? [17:55:23] yes [17:55:47] i thought it was done [17:55:52] it takes time [17:55:53] oh wikis [17:56:01] I thought merge as in corperate [17:56:06] heh, no [17:56:17] that was done less than a week after the reorganization RfC [17:56:33] speaking of [17:56:44] where da hel is this corperate number you speak of [17:57:08] one should not have to spend 15 minutes failing to google a companies phone number >:( [17:57:39] I'd have to see what it is [17:57:49] because I don't have remember it off the top of my head [17:58:07] I found one possible number [17:58:12] But it may also be the IRS's number [17:58:20] would you know it if you see it? [17:59:10] sure [18:00:15] `877-829-5500`? [18:00:27] heh [18:00:35] yeah, that's the IRS' phone number [18:00:48] oh god ew ew ew get it away [18:00:57] grrrr [18:01:04] i must find the corperate number [18:01:11] I must hear the voicemail message! [18:02:01] in exchange for a number I will leave a rare raidarr voicemail [18:02:10] wait is it a foundation number or the folks who kinda manage business stuff [18:02:51] cause i know the registered mailing address is a agency [18:03:02] (way to go on not doxing your adress!) [18:03:20] i always see different names though [18:03:22] Corporate Filings LLC [18:03:32] Idaho Registered Agent β„’ [18:06:17] yo guys look i found the WikiTide HQ. It's blue and that one color that people call grey but we all know is just dirty white! [18:06:32] https://cdn.discordapp.com/attachments/407537962553966603/1222970094678835340/CkNj1Fh.png?ex=661826a8&is=6605b1a8&hm=b3a81c2656028901bc1e54e93457b0002d6eb61d3aa6916371dd5be3009c228f& [18:12:06] they found the bunker [18:12:13] quick get him [18:12:29] deploying countermeasures [18:13:03] oh dear [18:13:19] side note why does this building remind me of the SCP Foundation [18:13:34] yall didn't partner up did yall.. [18:13:41] imperial business, be on your way [18:13:43] cause if so I should be runnign very quickly [18:14:14] Jokes aside, we use a registered agent service because putting someone's home address on the forms/relying on only them for mail is a very bad idea. [18:14:25] that is very true [18:14:27] Makes sense. [18:14:28] mhm [18:14:31] also we don’t want someone doxxed [18:14:37] Concured [18:15:12] Also, we can't afford office space off of community donations alone. πŸ˜… [18:15:14] so is it just for mailing/address or do thet also manage like taxes ns hit [18:15:26] taxes i’d imagine [18:15:42] though i’d assume all mail is forwarded to Agent [18:15:49] No, more like they're a mail clearing house [18:16:16] TSR(made dnd) was founded out of garry gygax's kitchen if memory serves so lol [18:16:21] There's a bit more than that, but it's too in the weeds to go into right now [18:16:36] imagine if one day the foundation does become big enough to have an office building [18:16:37] lmao [18:16:51] I claim the good chair [18:17:05] I hereby conquest the kitchen [18:18:23] <.labster, replying to raidarr> But I'm the good chair. [18:18:31] That might be a funny sitcom, the shenanigans' and drama's that happen day to day here on discord with volunteers but IRL in an office building [18:19:13] I would love to that script [18:19:48] But that's where all the good Pokemon are smh [18:20:28] yes, and [18:21:59] someone give me plot ideas [18:22:29] there's ideas but they spend a lot of time in the graveyard and it be spooky in there [18:22:33] Making note here: employees shall not be used as furniture without express permission and revokable consent. [18:22:57] That's gonna be a weird, weird employee handbook [18:23:10] Okay. [18:23:32] That's gotta be a rare sentence. [18:24:16] don't worry, I'm working on having it struck [18:24:16] Realistically, there is very little likelihood we will ever need physical space aside from if we ever decide to go back to Data center rentals for owned hardware again [18:24:45] make a second world instance or something [18:24:48] there, office building [18:25:11] If only the IRS accepted digital addresses [18:25:48] coming soon, the story of how miraheze made the first internationally recognized digital country so it could get its digital office building recognized [18:26:58] [1/2] Not that it makes any difference. clears throat [18:26:58] [2/2] WikiTide Foundation Inc. Bylaws, Article 1 Β§7: "This organization shall have no members." Which clearly implies an inability to possess 'employees'. Additionally, as our lord and savior quick Google search proves, a Director is not an employee. Ergo, @raidarr fair game [18:27:11] [hmmm](https://cdn.discordapp.com/emojis/1167931348271501383.webp?size=48&quality=lossless&name=hmmm) [18:27:45] guess who just tried to change eir favicon to a new version of the same image as before in hopes that google will recognise it this time becuase it's been more than a month since my last attempt and google still hasn't noticed so like. fingers crossed [18:27:54] checkmate liberals corps [18:28:14] Not true [18:28:21] Employees are not automatically members [18:28:42] Not according to my source [18:28:46] Members has a different meaning in this context [18:28:47] Source: I made it the fuck up [18:28:52] (yeah your right) [18:29:20] I agree prob correct [18:29:23] Company law is confusing and complex [18:29:27] so true [18:29:30] But I know that one for a fact [18:29:42] In this case, member can be taken as owner [18:30:34] It would probably be beneficial to clarify that [18:31:24] It's more of a legal document than an explanatory document for lay people, but point taken that a side FAQ might have value [18:32:06] Don't read the bylaws if you don't understand company law [18:32:20] Not so. A non-profit organization can have "members" who are neither employees nor Board members but those members can control the Board as they please and control corporate governance by bypassing the Board. That clause was added, redundantly, to clarify that this organization was controlled by the Board and has no members who can stage a coup. [18:32:24] They are a legal document with lots of weird and specific rules and meanings [18:32:38] Me for a supermarket in the UK [18:34:03] so I can't apply for membership, dam [18:34:13] you'd have to pay a due \:P [18:34:33] We should have allowed members and just said they have no power [18:34:36] sounds like a due to basically own the place if it controls the board and bypasses it [18:34:38] free fundraising [18:34:54] all you get is a nice pin and invites to parties [18:35:01] allowing members is rather complex because of how state law organizes the matter [18:36:35] This is probably the most in-the-weeds discussion about miraheze and WT Foundation that's still relevant to #general I've ever seen. πŸ˜„ [18:37:04] lmao [18:37:10] wheres our reward [18:37:41] anyways miraheze sitcom [18:37:45] lmao [18:37:52] Corporate structures are a neat area of study though, and WT did contribute to me shifting gears and getting an MBA [18:39:19] I'm the type of guy who enjoys just learning about niche stuff like organizational hierchy or structure, be it wiki staff, goverment corperate or SCP wiki [18:40:21] Yep. Broad range of topics = unexpected knowledge synthesis from unrelated domains. [18:40:22] If you know how to read it, sure [18:40:47] My favorite use of brainspace [18:41:36] Anyway, finally veering into off-topic, looking forward to getting my wiki moved over so I can cross that off my to-do list. πŸ˜„ [18:42:21] that reminds me, how did you get the image dump for https://issue-tracker.miraheze.org/T12003 ? [18:42:36] do image dumps work now? [18:44:06] from backups thingy on wiki? no, only xml and managewiki json [18:44:37] yep, I meant the dumps from DataDump [18:47:34] @notaracham seems SMW on your wiki is broken [18:48:40] they've been working for a while, no? [18:49:19] I mean, generating them by yourself via special:datadump [18:49:34] which has not worked here since glusterfs was removed iirc [18:50:01] one user was asking about jst today [18:50:14] there's indeed no option for files [18:54:24] Just enabled it, waiting on SRE to complete setup [18:54:33] well, I just did [18:54:58] Thanks! Hopefully that fixes the import weirdness agent was running into [19:03:47] @agentisai are you running the image import for NA's wiki rn? [19:04:12] I am not [19:04:17] ok [19:13:33] import is running [19:14:15] I was able to generate an image dump on WT, so hopefully that fix has migrated back to MH. Can test once the image import is done. πŸ™‚ [19:16:44] Good afternoon. [19:17:11] Can anybody send me a link of the skins available on Mireheze, plz? [19:18:50] for the record, it probably was SMW not being installed fully that prevented the image import from working @notaracham [19:19:16] I see SMW hooks itself to image uploads, so there was probably something going wrong there [19:20:00] [[Special:ManageWiki/extensions#mw-section-skins]] has everything pretty much [19:20:00] https://meta.miraheze.org/wiki/Special:ManageWiki/extensions#mw-section-skins [19:20:00] [19:20:17] add to that the default skins though [19:20:34] there's likely a proper list somewhere that has them laid out properly but I don't know of it [19:21:00] Thank you. [19:21:21] I recently want to move to another skin which allows me to modify it with no limitations. [19:21:26] vector, vector22, cologneblue, modern, monobook and timeless are the missing ones [19:21:49] missing in terms of not on that list [19:22:06] But I wonder if they have support for mobile, or all of them depend on the mobile extension. [19:22:16] their ability to handle mobile varies [19:22:21] cosmos is one of the best for it [19:22:43] monobook has different behavior, tbh most skins behave differently but how well that comes out is a matter for experimenting [19:23:11] vector and some of the really old ones are the worst in not having any competent mobile handling [19:23:34] what about Timeless? [19:23:40] Now if we can figure out why the XML import is being a turbo-jerk, we'll be majority of the way there. πŸ˜„ [19:24:20] We've been using pivot for mobile which is pretty good [19:25:16] tables are usually the most problematic when it comes to moving to mobile view so for a lot of our tables we have one version for desktop and one version for mobile [19:25:22] [1/2] this is the best link to find and try every skin available [19:25:22] [2/2] https://publictestwiki.com/wiki/Special:Preferences#mw-prefsection-rendering [19:25:29] every skin is enabled there [19:25:56] timeless is acceptable on mobile however I don't use it there much [19:26:07] so I might be fuzzy and it's better or worse than I remember [20:11:59] hiya, I'm very new to miraheze (and creating wikis in general) and was wondering, how long does it take for wiki requests to be approved? it's been a couple of days and I can definitely wait longer if needed, just really wanting to get a head start on the wiki lol [20:12:29] a couple straight likely means it was bounced back for some reason as usually there's at least a first pass within a few days [20:13:03] ah, from yesterday [20:13:31] and we are rather behind, hm... I can try to nibble up to yesterday at least in a bit [20:14:31] whats the request [20:15:01] it's called "Undead Warfare Wiki", should I send the link to it? [20:15:18] https://meta.miraheze.org/wiki/Special:RequestWikiQueue/42677 [20:15:26] yes, that one [20:15:27] [1/2] standing queue [20:15:27] [2/2] https://meta.miraheze.org/wiki/Special:RequestWikiQueue/ [20:15:57] 2 days out is on the long side but it often is a day out ish depending who's able/willing to sit down and crack at it [20:16:09] I'll set up to crack at the 26th especially now [20:16:59] alright, thanks for responding :) [20:17:37] np, apologies for the delay [20:17:57] nah it's okay lol [20:18:49] speaking of requests, i put in a request to have an additional permission level added, about a week ago, how long could i expect for it to take? not rushing! [20:37:24] Talking about wikis, I still wish someone decides to create a Tekken Wiki in here... I'd like to help as a contributor. [20:51:38] Is there a way to move a bunch of pages from one namespace to another without doing each one individually? [20:54:23] [[wp:AWB]] prob [20:54:23] https://meta.miraheze.org/wiki/wp:AWB [20:54:24] [21:09:42] I don't see anything on https://meta.miraheze.org/wiki/Steward_requests/Permissions or on the meta admins board, where did you file it? [21:10:31] i was asked to file it here by RhinosF1 [21:11:23] Ah, that's an SRE matter I won't be able to assist with, then [21:11:33] its alright! thanks for looking for me [21:19:01] I noticed while looking to see if there was an extension that let me track an rc on a Discord that [[https://www.mediawiki.org/wiki/Extension:DiscordNotifications this] [21:21:23] we don't run this version on Miraheze obviously [21:21:31] we run one by @cosmicalpha [21:21:54] https://github.com/Universal-Omega/DiscordNotifications this one [21:22:46] the better one [21:22:48] that tag saying this is running on Miraheze is a little bit misleading [21:23:01] Alright, thank you. I was just unsure because the extensions page on Miraheze links that extension [21:25:50] linked* [21:27:19] Thanks for the fix [22:54:29] Shouldn't I be able to use `style="text-align: center"` on a `
` element inside an infobox? [22:56:51] Because it doesn't seem to do anything [23:04:32] (rip my wiki) [23:04:36] Isn't it

etc for a header? [23:04:46] h1 is for heading [23:05:26] try reloading, I had a brief outage [23:07:11] if you get a 502/503, please alert us [23:07:26] that is a sign of a DDoS attack because otherwise, we're severely overprovisioned [23:07:45] https://cdn.discordapp.com/attachments/407537962553966603/1223045896586006598/image.png?ex=66186d40&is=6605f840&hm=d16f66a0f244e57fe1567e40713091ee0d0aca49759115e4b7b0703488ec2735& [23:07:48] I mean I did get a 502 for about 15 seconds buts its back (and faster) now [23:08:13] not sure what we did to Alibaba but we get a new attack from them every day [23:08:20] I had a brief issue with images earlier that appeared to alleviate pretty quickly, but I had 2 tabs loading and one had "something went wrong" and the other loaded, so I presumed a brief outage. [23:09:12] Alibaba (Cloud) is like the chinese equiv of AWS. Hard to tell exactly [23:09:20] yep [23:09:24] I had Federer defeating Alibaba in straight sets at the French Open one year on my wiki, so maybe that was it... [23:09:51] heh [23:10:38] i would like to migrate my wikitide wiki to miraheze pls [23:10:40] so far my luck of trying to persuade a 69 page fadom is not going too well :^) [23:11:22] i think the wikitide server got deleted or something so i cant ask there [23:11:39] what's the wiki URL? [23:11:54] https://mkwii.wikitide.org/ [23:12:39] thx for the 😍 giantguy [23:13:19] I'm going to pretend I didnt find the Funky Kong Supremacy page [23:16:20] https://tenor.com/view/mkw-mkwii-mario-kart-wii-gif-9957072763339318554 [23:23:16] do you want to keep the wikitide domain or get a new miraheze.org one? [23:24:22] i'd like a miraheze.org domain please [23:43:49] Can I please have this Wiki deleted since WikiTide is shutting down on April 15th and by then I want all of my Wikis off the site https://titanic.wikitide.org/wiki/Main_Page [23:44:08] Thanks I want it deleted πŸ™ [23:44:33] Sorry to ask, but what has Miraheze which Wikitide didn't had to make you move out? [23:45:10] Now this explains everything. Why is Wikitide shutting down? [23:45:41] It’s merging with Miraheze [23:45:53] Since Miraheze is larger [23:48:12] yeah, WikiTide Foundation acquired Miraheze and is merging its wiki back into Miraheze [23:48:24] Oh no... So sad. This thing should not be centralized. [23:48:30] do you want it deleted or moved to Iremith [23:49:28] I disagree, the merge has allowed users from both farms to benefit immensely. But I respect your opinion on the matter [23:49:43] And also want this deleted as well https://sixflagsjazzland.wikitide.org/wiki/Main_Page [23:49:47] Do you know if the Timeless skin works with 'MediaWiki:common.css'? all the css I put in there went disabled when changed the skin. [23:49:52] Also uh fandom exists so i dont know how centralised we are in comparison [23:50:01] common loads on all skins [23:50:02] After that all of my Wikis will be off WikiTide [23:50:09] but the class names may be different [23:50:47] There's an FAQ on the merger as well if you wanna read it [23:50:52] Can you show me what are those class names works with Timeless skin? [23:50:55] plz [23:50:58] I have no idea [23:51:00] :p [23:51:11] try using inspect element [23:52:36] https://meta.miraheze.org/wiki/WikiTide_Foundation/Merger_FAQ [23:56:43] Personaly I think centralized is good, more people on one thing instead of 2 people carrying the farm putting out fires and having to leave giant backlogs [23:56:48] and funding to one place [23:59:02] I know but I hope Fandom doesn't acquire Miraheze in the future... [23:59:38] PFT [23:59:39] NAH [23:59:42] Don't worry [23:59:52] They don't care. nor can they [23:59:58] we are run by a non profit