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.
19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
19 years ago
|
#!/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
|