mediawiki

Migrating a ratings MediaWiki extension data with Python lp_solve script

For long time Softcatalà wiki used a MediaWiki AJAX rating extension, so we could have a rough idea of visitors feedback on the different applications we list in our software repository. Recently I migrated that wiki to a newer version, so before I had reviewed which extensions to use: basically I checked whether there was any update to the current MediaWiki version for every installed extension.

Modifying MediaWiki user preferences at once

Since long time ago, it's possible to change default user preferences in MediaWiki by simply adding a line of code in LocalSettings.php. Example:
$wgDefaultUserOptions['editsection'] = 0;
However, if the wiki is not new, there could be already several users who will have inherited previous default preferences before any change is performed in LocalSettings.php.
In order to solve this, in recent MediaWiki versions there is a maintenance script for changing a user preference value for all users in the wiki.
Nonetheless, in my case, I did not want to change the preference value for all users, but only for those ones belonging to a certain group. Of course, more complex filtering criteria could be devised…
For anyone who might need it, the code (in Perl) I used below:

Enllaços XMPP al Mediawiki

L'XMPP és un protocol obert i estandarditzat per a missatgeria instantània i notificació de l'estat d'activitat de l'usuari. Es tracta de la tecnologia que utilitza el popular Google Talk i el xat integrat al web del Gmail. Abans coneguda habitualment amb el nom de Jabber, ha estat molt utilitzada pels defensors del programari lliure i usuaris de Linux en aplicacions com ara el Pidgin.

Personalització d'interwikis amb Mediawiki

Una de les caràcterístiques bàsiques de la Web tal com la coneixem és el seu entrellaçament gràcies als mateixos hiperenllaços. I com no, també és present al projecte Wikimedia, on a part dels enllaços interns a pàgines dins del mateix wiki, i els externs normalment com a referència, tenim un altre subgrup conegut com a enllaços interwiki.

Subscribe to RSS - mediawiki