[00:10:58] [1/2] Check existing requests/responses to see if there are any issues. My main concern would be wikis that change their URL root. E.g. `a.org` redirects to `a.org/wiki/Main Page` but once the change happens `a.org` doesn't need to be redirected. IIRC there is risk of a redirect loop, but I can't remember the detailed scenario in which this happens. [00:10:59] [2/2] Also, maybe cache the response only for logged-out users in case there's some private wiki info leak concern. [00:13:21] A lot of it seems to be `/wiki` and `/` redirecting to the main page. I guess if the redirect only goes one way (from shorter to longer URLs but never longer to shorter) there isn't a risk of redirect loops. [00:14:49] [1/4] https://cdn.discordapp.com/attachments/407537962553966603/1492679347037798462/image.jpg?ex=69dc3578&is=69dae3f8&hm=e8ef9e8613c80663b14668cd5dab5cbf0a92910a5235c0285fb66f5cef980f3a& [00:14:49] [2/4] https://cdn.discordapp.com/attachments/407537962553966603/1492679347323273266/image.jpg?ex=69dc3579&is=69dae3f9&hm=cdac0e5744640c296481f97d7215cb8db60b951aae81c0e387809f7c2376aaf9& [00:14:50] [3/4] https://cdn.discordapp.com/attachments/407537962553966603/1492679347566416052/image.jpg?ex=69dc3579&is=69dae3f9&hm=badec954c686ae7c7e095456c1480ffcd6d5e0d2a31214c0c989ee6163136b74& [00:14:50] [4/4] https://cdn.discordapp.com/attachments/407537962553966603/1492679347947962428/image.jpg?ex=69dc3579&is=69dae3f9&hm=48dc4b2676cc3821a8432ab60910aacf49fdb01225b545f7e737655cefc7454e& [00:15:41] another one down for the count [00:16:42] ^ @Discord Moderators [00:17:02] Handled [00:17:13] like a boss [00:18:17] [1/2] I think in this case since changing url is a restricted settings change anyway it might not be an issue [00:18:17] [2/2] Changed the caching to only be for logged-out users [00:20:13] actually is there a way to check if the wiki is private from cloudflare? if that's possible then there shouldn't be any security worries [00:28:56] I'm starting to think that since the response object has the `Vary: Accept-Encoding, Cookie, Authorization` header we don't need the cookie check anyway? This sounds risky so we should experiment with Beta first before doing anything though. [02:56:00] Is it possible to load a DIFFERENT home page for mobile? [03:44:43] Yes, you can use CSS or tags offered by the [MobileDetect](https://www.mediawiki.org/wiki/Extension:MobileDetect) extension. [03:44:53] Ooooo [03:47:53] Yes [06:31:41] [1/2] Does anyone know why the listen component of the infobox is aligned to the left? I've seen external wikis where it is aligned in the middle [06:31:42] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492774190670155976/image.png?ex=69dc8dcd&is=69db3c4d&hm=2a0a26f429a9d30581957a37a668a307cde6b3fffbe91737d0ba386d3f82dbca& [07:19:51] πŸ‘… [07:20:01] Goodbye [07:22:01] ? [08:47:51] CSS [08:48:08] Which CSS [08:49:14] No clue, you can use dev console to work it out I think or wait around for someone who knows more front end stuff [08:49:25] Alright, appreciated tho [08:49:51] [1/2] do you guys know how to make unmarked spots (like the pellet count row) not show in my table [08:49:52] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492808962217607269/image.png?ex=69dcae2f&is=69db5caf&hm=1e54767a1cdf2c155ff934f55c8555db32af8978a8e9885c995e39cfcf8c8f90& [08:50:26] [1/2] i think it has to deal with a variable im forgetting here [08:50:26] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492809105419665499/image.png?ex=69dcae51&is=69db5cd1&hm=42158bde35f3950d9084d9b572df49d3f6026f11d450105dd2cfbd9cfc412b12& [08:54:13] [1/7] Use `{{#if:}}` [08:54:13] [2/7] ``` [08:54:13] [3/7] {{#if:{{{pelletcount|}}}| [08:54:13] [4/7] |- [08:54:14] [5/7] |Pellet count [08:54:14] [6/7] |{{{pelletcount|}}}}} [08:54:14] [7/7] ``` [08:55:46] thanks for helping <3 [09:00:05] but wait, where do i put this in? the template? [09:00:28] In place of the table row in the template, yes [09:02:32] [1/2] Works, but the padding is no longer there. (i forgot to mention that) [09:02:33] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492812151377629265/image.png?ex=69dcb127&is=69db5fa7&hm=c407dc4b8ef804bcbd3cd92a38e72b862db0f4567fc2a9d3c5240da1a14cb3c5& [09:02:46] [1/3] ```! style="padding: 5px 10px; white-space: nowrap; border: 1px solid #aaa;" | Range type [09:02:47] [2/3] | style="padding: 5px 10px; text-align:left; border: 1px solid #aaa;" | {{{rangetype|}}}``` [09:02:47] [3/3] This is how I pad my items [09:03:22] This is better to be moved to TemplateStyles IMO [09:04:20] [1/7] But you can add in line CSS by doing this: [09:04:21] [2/7] ``` [09:04:21] [3/7] {{#if:{{{pelletcount|}}}| [09:04:21] [4/7] {{!}}- [09:04:21] [5/7] {{!}} style="..." {{{{!}} Pellet count [09:04:22] [6/7] {{!}} style="..." {{{{!}} {{{pelletcount|}}}}} [09:04:22] [7/7] ``` [09:04:57] Oh, fair, doing that now then [09:05:02] But also good to know [09:12:58] [1/3] I may have messed something up LOL [09:12:58] [2/3] https://cdn.discordapp.com/attachments/407537962553966603/1492814773266550926/image.png?ex=69dcb399&is=69db6219&hm=2b856811d5042c65d1dfe6c2563f8544b61f140b12756e2bbe5564c997d46de4& [09:12:58] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1492814773879050312/image.png?ex=69dcb399&is=69db6219&hm=e59bbe62f1fab3e7d08f5ee4daaecfc206a6b52c6ff042082eff968574ecd2ae& [09:13:43] Too many braces with {{!}} after the `style` [09:13:44] I looked closely, I'm doing {{{!}}} instead of {{!}} [09:13:47] Yeah [09:14:59] Fixed, all good now [09:17:48] [1/4] Oh and @ccxtwf one more thing, do you know how to fix my characters here from being cut off by the gallery [09:17:49] [2/4] (they wont rescale with gallery proportions) [09:17:49] [3/4] https://cdn.discordapp.com/attachments/407537962553966603/1492815995046334534/image.png?ex=69dcb4bc&is=69db633c&hm=335fdd8746fe8d2dd6e787efd526234cc8856e316f9794a27540bce382b9fdd6& [09:17:49] [4/4] https://cdn.discordapp.com/attachments/407537962553966603/1492815995470090360/image.png?ex=69dcb4bc&is=69db633c&hm=235ed65bda8b4adc267114c283d19b81e12bfb5b149e229d757c5b95a0c9dc96& [09:22:26] This looks normal to me...? [09:22:42] [1/2] But you can look at MediaWiki's official guides: [09:22:42] [2/2] https://www.mediawiki.org/wiki/Help:Images#Rendering_a_gallery_of_images [09:23:00] [1/2] https://cdn.discordapp.com/attachments/407537962553966603/1492817298862506116/image.png?ex=69dcb5f3&is=69db6473&hm=9093ecccf2361dfa8415ce41774ab4ea4f87f3269890278000ec57c4da8dd643& [09:23:00] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492817299592188175/image.png?ex=69dcb5f3&is=69db6473&hm=18263b2f8575f936faba64bc32904641c4dfe5c13c43c1eaba339da70195c4e9& [09:23:08] I'll look here [09:25:14] Hello [09:25:19] Heyy [09:25:25] hi [09:25:26] Could you help me a bit if yk how this works [09:25:28] [1/2] DPL gallery mode on my Miraheze wiki is dropping the .png extension from image filenames when displaying pages in a gallery. For example, my APC page has an image linked correctly as Armored_Personnel_Carrier.png but when DPL displays it in the gallery it shows File:Armored Personnel Carrier with no extension, causing a broken red link with no image or clickable text. I have trie [09:25:28] [2/2] d bare file links, infobox templates, adding thumb parameters, and purging the cache but nothing fixes it. I am running DPL v4. [09:26:38] i think if you put that in support it'd help a lot more as i dont know much about miraheze's technical side unfortunately [09:26:52] Alright [09:50:49] So does anyone know anything abt this [09:51:58] send the page and someone is much more likely to help you [09:55:38] Righto [11:02:35] An AI bot responded to us about the need to clarify the violence in our wiki and how fantasy will be integrated into the universe. We responded in the same window, but haven't received a response in a while. Then we thought that perhaps the questionnaire itself needed to be modified. Are we right, or does the bot just take a while to respond? [11:03:33] <_arawynn> The AI only does the initial review, everything else is handled by human volunteers [11:04:29] So, after our response, real people took over our questionnaire, so we need to wait? [11:04:43] <_arawynn> yes exactly [11:05:07] Thank you very much ^_^ [11:05:15] <_arawynn> you're welcome [11:27:26] I wonder, does the AI make it clear this is the case? we seem to get an awful lot of questions about this [11:28:54] <_arawynn, replying to thewwrnerdguy> No idea, the only time I reqested a Wiki was before the AI was implemented - I've actually been thinking about writing something about those kinds of questions [11:51:16] For w/e reason I never picked up that `importScript` is a built-in MediaWiki method and not something Fandom made for ImportJS, so this problem will be fixed soon. [11:52:52] Only problem is that `importScriptURI` is basically my proposed solution of "save a variable in the context that stays indefinitely" and in this case the variable being saved is a chonky URL, but prolly a better solution than having to waste bandwidth loading the same external script [12:56:07] What's considered low enough quality for a gif to animate? [13:04:22] It's not about quality it's about size [13:05:42] And on Miraheze the default is 12500000 pixels in size (width x height x number of frames) [13:06:18] Thanks [13:07:00] And apparently that can't be configured in ManageWiki, not sure if they want to allow adjusting that [13:12:30] It can unless that changed, I know we did ($wgMaxAnimatedGifArea in Special:ManageWiki/settings) [13:29:53] Oh wait I misread it somehow [13:30:38] Yeah the GIF area can, it was $wgMaxImageArea that can't [13:55:33] discordapp.com/invite/TvkPacEUkR [13:55:37] @tickingcuckooclock_offical No invite links. [14:58:53] [1/6] Hello, had stumbled upon weird lazy loading issue. For some reason, within my custom tooltip, on mobile view, media just doesn't load at all, however on desktop view it works fine. Any idea why that could be happening? [14:58:53] [2/6] https://malachiteminers2official.miraheze.org/wiki/Ranks [14:58:53] [3/6] https://malachiteminers2official.miraheze.org/wiki/MediaWiki:PreviewTooltip.js [14:58:53] [4/6] :uhhh: [14:58:54] [5/6] https://cdn.discordapp.com/attachments/407537962553966603/1492901828239818782/image.png?ex=69dd04ac&is=69dbb32c&hm=4c43b2cf6aeac8eca14cd8d979a3c48092589a1c806ba724a2eb7d961bc56264& [14:58:54] [6/6] https://cdn.discordapp.com/attachments/407537962553966603/1492901828612984842/image.png?ex=69dd04ac&is=69dbb32c&hm=c8a62a58abf19fd38205ceca132acabc7b742f550869b8f8cb8058b65d51d8d4& [15:17:40] [1/2] It's likely due to the default styling of the sidebox. However, I noticed that `Template:Listen voice` uses `|embed=yes` when invoking `Template:Listen`. Per the template's design, this should have prevented the sidebox's default styles from being applied. [15:17:41] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1492906558009507850/7274c56719092300.png?ex=69dd0914&is=69dbb794&hm=a43529629b1371d4f43e5ff40cfd454cc825925098d75abb520495821daa161f& [15:19:03] [1/4] something in ```