Skip to content

Instantly share code, notes, and snippets.

View zoglun's full-sized avatar

zoglun zoglun

  • Moegirlpedia
View GitHub Profile
@sdouglas
sdouglas / print-upgrade.pl
Created July 30, 2012 20:19
Runs mediawiki update and rebuildall scripts for each wiki instance in a wikifarm
#!/usr/bin/perl
# Copyright (c) 2007 Shawn M. Douglas (shawndouglas.com)
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
@MarkMaldaba
MarkMaldaba / MP3MediaHandler.php
Last active July 3, 2017 20:03
MP3 media handler for MediaWiki
<?php
# Stream MP3 using HTML5 <audio> tag
$wgMediaHandlers['audio/mp3'] = 'MP3MediaHandler';
$wgFileExtensions[] = 'mp3';
$wgExtensionCredits['parserhook'][] = array(
'name' => 'MP3MediaHandler',
'description' => 'Provides an in-page mp3 player.',