This is a little script which is useful if you want to update BadContent, but your server sits behind a firewall which can't access moinmaster (e.g. all moinmoins on SourceForge). I run it from home, and it updates BadContent on my SourceForge wiki.

   1 import xmlrpclib
   2 
   3 srcwiki = xmlrpclib.ServerProxy("http://moinmaster.wikiwikiweb.de/?action=xmlrpc2")
   4 badcontent = srcwiki.getPage("BadContent")
   5 dstwiki = xmlrpclib.ServerProxy("http://my.wiki.com/?action=xmlrpc2")
   6 dstwiki.putPage("BadContent", badcontent)

MoinMoin: ScriptMarket/BadContentXmlRpcScript (last edited 2007-10-29 19:09:20 by localhost)