User:Jimregan

From DBpedia Mappings
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
import net.sourceforge.jwbf.bots.MediaWikiBot
import net.sourceforge.jwbf.contentRep.Article
import scala.io.Source._

val m = new MediaWikiBot("http://mappings.dbpedia.org/")
m.login("Username", "password")
val links = fromFile("/tmp/articles", "utf-8").getLines

links.foreach { 
	first => {
		val art = new Article(m.readContent(first), m)
		art.setText(art.getText.replaceAll(" twinCity ", " twinTown "))
		art.setMinorEdit(true)
		art.setEditSummary("s/twinCity/twinTown/")
		art.save
	}
}