[01:47:50] so [01:48:51] yeah? [01:49:33] i am just wondering how to debug the sidebar lua module [01:49:35] Yeah. [01:50:03] which doesn't work, despite my having imported everything relevant [02:56:25] M [03:06:48] harej: Go Bengals! [03:07:13] Yvette: i don't follow [03:07:22] You're in Cincinnati?! [03:07:26] Was [03:07:42] WAS? Go Redskins! [04:16:55] how is mediawiki so confusing [04:33:57] Years of practice. [06:11:51] mediawiki is the freaking best [07:35:09] wiki 4 ever [21:20:43] hello, is there any way to program an infobox to print certain lines as data automatically? [21:21:17] as in, programming putting "none" in a line prints None on the infobox with a link to a certain page [21:22:25] this may require some work with #if commands [21:25:19] Yes its possible [21:25:58] you would probably want to use #switch or #ifeq [21:26:50] i'm using some basic infobox materials, which seems odd since the mediawiki.org templates seem to have more {{!}}s than i remember [21:29:03] Whether or not you need {{!}} Depends on the type of table you are making [21:30:17] as an example if i want typing EP in label "Release Type" to result in [[:Category:EPs{{#translation:}}|EP]], what would be a proper command? [21:32:24] i'm not sure how to put a check/replace mechanism in an infobox [21:34:10] or at least, whether or not more than one #ifeq can be put in one line on an infobox [21:35:38] {{#ifeq: {{ReleaseType}} | EP | [[:Category:EPs{{#translation:}}|EP]] | (place branching ifeqs for other formats here?) }} [21:35:49] bawolff: would this make any sense? [21:36:02] Three { on the variable name [21:36:12] but otherwise, this may work? [21:36:17] Yes [21:36:34] put in the data section of the infobox, i mean [21:36:45] #switch can be simpler if you have a lot of branches [21:37:03] there are examples in the parser function docs [21:37:31] oh, this seems to make more sense [21:37:33] thank you!