It looks like new changes in the interwiki links code have made all
interwiki links case insensitive. I like the change, but this will require
the interwiki array to now be lower case. To wit I've converted the array
in ewiki.php (below) and the more_interwiki plugin to the new case. Mario,
if the change was intended, please check these files in. I've also
committed a new, working page_interwikimap plugin.
-Andy
#-- InterWiki:Links
$ewiki_config["interwiki"] = array_merge(
@$ewiki_config["interwiki"],
array(
"javascript" => "", # this actually protects from javascript:
links
"url" => "",
"this" => EWIKI_SCRIPT, # better was absolute _URL to ewiki
wrapper
"erfurtwiki" => "http://erfurtwiki.sourceforge.net/?id=",
"wiki" => "http://www.c2.com/cgi/wiki?",
"wardswiki" => "Wiki",
"wikifind" => "http://c2.com/cgi/wiki?FindPage&value=",
"wikipedia" => "http://www.wikipedia.com/wiki.cgi?",
"meatballwiki" => "http://www.usemod.com/cgi-bin/mb.pl?",
"usemod" => "http://www.usemod.com/cgi-bin/wiki.pl?",
"phpwiki" =>
"http://phpwiki.sourceforge.net/phpwiki/index.php3?",
"linuxwiki" => "http://linuxwiki.de/",
"openwiki" => "http://openwiki.com/?",
"tavi" => "http://andstuff.org/tavi/",
"twiki" => "http://twiki.sourceforge.net/cgi-bin/view/",
"moinmoin" => "http://www.purl.net/wiki/moin/",
"google" => "http://google.com/search?q=",
"isbn" => "http://www.amazon.com/exec/obidos/ISBN=",
"icq" => "http://www.icq.com/",
));