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
480 B
Plaintext
19 lines
480 B
Plaintext
19 years ago
|
#!/usr/bin/env ruby
|
||
|
require 'mediawikibotchecker'
|
||
|
|
||
|
if ARGV.size() != 2
|
||
|
$stderr.print($0 + " <wiki-user> <wiki-password>\n")
|
||
|
exit(1)
|
||
|
end
|
||
|
|
||
|
#----------------------------------------------------------------------------
|
||
|
|
||
|
b = WikiChecker.new("http://www.entropia.de/wiki/")
|
||
|
b.login(ARGV[0], ARGV[1])
|
||
|
|
||
|
page = "Übersicht über Vorträge"
|
||
|
category = "Kategorie:Vorträge"
|
||
|
body = b.category_checker(page, category)
|
||
|
|
||
|
b.edit("Benutzer:Neinomat/#{page}", body, "wiki ex machina")
|