Skip Menu |

This queue is for tickets about the WWW-Mediawiki-Client CPAN distribution.

Report information
The Basics
Id: 30049
Status: open
Priority: 0/
Queue: WWW-Mediawiki-Client

People
Owner: Nobody in particular
Requestors: hober0 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.31
Fixed in: (no value)



Subject: unable to update wiki pages with lowercased names (e.g., microformats.org/wiki/process)
This doesn't work: % mvs update process.wiki Doing update process.wiki with host: microformats.org and lang: en ? process.wiki But this does: % mvs update User:EdwardOConnor.wiki Doing update User:EdwardOConnor.wiki with host: microformats.org and lang: en U User:EdwardOConnor.wiki
From: m.buchmeier [...] uni-muenster.de
On Tue Oct 16 18:20:41 2007, http://edward.oconnor.cx/ wrote: Show quoted text
> This doesn't work: > > % mvs update process.wiki > Doing update process.wiki with host: microformats.org and lang: en > ? process.wiki > > But this does: > > % mvs update User:EdwardOConnor.wiki > Doing update User:EdwardOConnor.wiki with host: microformats.org and > lang: en > U User:EdwardOConnor.wiki
This bug can be fixed easily: Line 1356 in the file Client.pm (WWW::Mediawiki::Client) has to be changed from originally: return ucfirst $name; to read: return $name;