How to set up Mediawiki infoboxes?
May 23, 2008 5:11 AM Subscribe
Mediawiki infoboxes. I'd like to use a Wikipedia-style infobox in my own personal Mediawiki. Help? Please?
I must be missing something. I have an installation of Mediawiki on my server that I would like to use for cataloging video games. I like how the better video game entries are set up on Wikipedia (
example), especially the infoboxes. How can I set up similar infoboxes on my wiki? I realize it has to do with templates, but I can't find a clear "dummies" step-by-step on on how to do it. I looked hard. I promise. BONUS: I like
this tool. How can I set up my wiki so the tool will also work with my infoboxes? Thanks!
posted by Otis to computers & internet (2 answers total) 1 user marked this as a favorite
Right, so then you'll need a couple templates to handle those conditionals:
Call:
{{{{{}}}|{{{1}}}|{{{2}}}|{{{3}}}}}Ine:{{call|={{{1}}}|{{{2}}}=x0|1={{{2}}}|2={{{3}}}|3={{{4}}}}}X0: P2p1:{{{2}}}{{{1}}}P2p1p3:{{{2}}}{{{1}}}{{{3}}}Then basically what you do in your template is (I think...):Template:
{{#if: {{{VariableName|}}} | VariableName={{{VariableName}}} | VariableName not assigned. }}And then invoke it on your page like:{{Template|VariableName=Whatever}}So for example, take a look at one of the pages on my crappy little wiki, say @-party. The infobox is on the right. Basically you invoke it on each page through a template, in this case {{Jargon}}:{{Jargon|Term=@-party|Pronunciation=/at180;par`tee/|Usage=[[Grammar:Noun|n.]]|Etymology=[[Etymology:Email|Email]]|Derivation=From the @-sign in an Internet address|Alternate=`@-sign party' /at180;si:n par`tee/|Also=[[boink]]}}Then here's the relevant portion of the {{Jargon}} template:{| style="border:solid #aaa 1px; margin:12px; font-size:120%; background:#ffffcc; width:250px; padding:1em; text-align:left; float:right; clear:right;" |- |<div style="border:0;margin:0;padding-bottom:12px;">{{ #if: {{{Term|}}} | <span style="font-size:150%; font-weight:bold;">'''{{{Term}}}'''</span> | There must be a term. }} {{ #if: {{{Modifier|}}} | <span style="font-size:120%; font-weight:normal;"> - {{{Modifier}}}</span> | }}</div> |- |<div style="padding-left:30px; line-height:100%;">{{ #if: {{{Pronunciation|}}} |{{{Pronunciation}}}|}}{{ #if: {{{Pronunciation-2|}}} |{{{Pronunciation-2}}}<br />|}}{{ #if: {{{Pronunciation-3|}}} |{{{Pronunciation-3}}}<br />|}}{{ #if: {{{Usage|}}} | Usage: {{{Usage}}}<br />|}}{{ #if: {{{Etymology|}}} |Etymology: {{{Etymology}}}<br />|}}{{ #if: {{{Derivation|}}} |Derivation: {{{Derivation}}}<br />|}}{{ #if: {{{Derivation-2|}}} |Alternate: {{{Derivation-2}}}<br />|}}{{ #if: {{{Derivation-3|}}} |Alternate: {{{Derivation-3}}}<br />|}}{{ #if: {{{Synonyms|}}} |''Synonyms:'' {{{Synonyms}}}<br />|}}{{ #if: {{{Antonyms|}}} |''Antonyms:'' {{{Antonyms}}}<br />|}}{{ #if: {{{Also|}}} |''See Also:'' {{{Also}}}<br />|}}</div> |}PITA? Kinda. But it works.posted by ChasFile at 6:34 AM on May 23, 2008