Diferencia entre revisiones de «Ayuda:Ficha»
m Diego Grez-Cañete trasladó la página Infobox/es a Ayuda:Ficha sin dejar una redirección |
→top: Retiro etiqueta no usada |
||
Línea 1: | Línea 1: | ||
Una [[w:Infobox|'''ficha''']] es una tabla usada para proporcionar información estandarizada a través de las páginas. | Una [[w:Infobox|'''ficha''']] es una tabla usada para proporcionar información estandarizada a través de las páginas. | ||
Revisión actual - 01:28 15 ene 2024
Una ficha es una tabla usada para proporcionar información estandarizada a través de las páginas.
Las fichas son implementadas tradicionalmente usando plantillas regulares. Las plantillas de fichas usadas en este wiki se pueden encontrar en .
Ten en cuenta que también hay algunas extensiones de MediaWiki para crear fichas. Se pueden encontrar en .
Ten en cuenta que las fichas también pueden ser generadas automáticamente con datos estructurados usando las extensiones Wikibase y Scribunto, como se describe en Wikidata:Infobox Tutorial.
Add Infoboxes in MediaWiki 1.39
To add infoboxes to your own MediaWiki I recommend this article click here Just keep in mind a few things before following the tutorial:
- Scribunto extension is already included in MediaWiki v1.39.3 So instead of following the article's step 1 just add the following lines of code to LocalSettings.php.
wfLoadExtension( 'Scribunto' ); $wgScribuntoDefaultEngine = 'luastandalone';
- You might also need to change the lua file permissions, for that just go to /path/to/extensions/Scribunto/includes/engines/LuaStandalone/binaries/yourOS/lua and make sure the file has permissions set to 755
- Importing the xml file that was exported from wikipedia threw an error that was fixed by downloading and installing the extension TemplateStyles . Don't forget to add it to LocalSettings.php as well.
wfLoadExtension( 'TemplateStyles' );
- That's it. I followed the rest of the steps 2, 3, 4 and 5 from the tutorial and was able to get everything running.