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.

19 lines
556 B
Plaintext

#!/usr/bin/env ruby
$:.unshift('vendor/ruby-mediawiki/lib')
$:.unshift('vendor/htree')
require 'mediawiki/dotfile'
@wiki = MediaWiki.dotfile(nil,'entropia')
@wiki.allpages.each do |title|
if @wiki.article(title).text.match("We are delicate. We do not delete your content.")
puts title
end
# FIXME: We might better want to specify a namespace in MediaWiki::allpages
discussion_title = "Diskussion:#{title}"
if @wiki.article(discussion_title).text.match("We are delicate. We do not delete your content.")
puts discussion_title
end
end