我正在使用mediawiki管理一些数据,我想知道是否有可能从现有维基数据生成标准化页面而无需创建非常相似页面的负载。在一个理想的情况下,我会有一个由CGI动态填充的数据库后端和页面模板,我想知道是否可以强制填充这个角色的mediawiki模板系统。
这就是我想做的事情:
数据页
name: banana
colour: yellow
tastiness: extremely high
extra: some more stuff, potentially with complicated wiki formatting
links: www.banana.com; www.iheartbananas.org
image: banana.jpg
name: apple
colour: red, green
tastiness: variable
extra: some more stuff
links: www.apple-fruit.com
然后对于数据库中的每个项目,生成标准化页面:
<name> Info
It is generally <colour>
Its tastiness rating is <tastiness>
Read more about <name> at <links>
<image>
这是否可以使用mediawiki模板?
答案 0 :(得分:2)
模板可以实现,但它不一定是一个好的解决方案。您需要为每个项目创建一个数据模板,例如:Template:FruitData/banana
):
{{ {{{template}}}
| name = banana
| colour = yellow
| tastiness = extremely high
| extra = some more stuff, potentially with complicated wiki formatting
| link = www.banana.com
| image = banana.jpg
}}
和显示模板(比如Template:StandardFruitDisplay
):
[[File:{{{image}}}|thumb|right]]
The {{{name}}} is a {{{colour}}} fruit with {{{tastiness}}} taste. {{extra|}}} See [http://{{{link}}} {{{{link}}}].
然后在实际页面上显示如下:{{ Template:FruitData/banana | template = StandardFruitDisplay }}
但是你可能会更好地使用一些以数据为中心的扩展(除非你的目标是极端的灵活性或用户控制)。