User:Jimregan: Difference between revisions
From Mediawiki1
Jump to navigationJump to search
(All this stuff is obsolete now) |
m (pre, not nowiki) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<pre> | |||
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 | |||
} | |||
} | |||
</pre> | |||
Latest revision as of 15:54, 6 April 2015
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
}
}