neingeist
/
neinomaten
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
597 B
Ruby

#!/usr/bin/env ruby
$:.unshift('vendor/ruby-mediawiki/lib')
require 'mediawiki/dotfile'
@wiki = MediaWiki.dotfile(nil,'entropia')
@putwhere = "Benutzer:Neinomat/"
@body = ""
@wiki.allpages.each do |title|
MediaWiki::logger.debug("Checking #{title}")
text = @wiki.article(title).text
s = text.scan(/^.*(?:wikipedia.org|ka.stadtwiki.net).*$/s)
if s != []
@body += "* [[#{title}]]\n"
s.each do |m|
@body += " <pre><nowiki>#{m}</nowiki></pre>\n"
end
end
end
a = @wiki.article(@putwhere + "Interwiki links that need to be interwikified")
a.text = @body
a.submit("fnord")