move old and add new examples
parent
9a688fc5c6
commit
384bc445c2
@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
require '../mediawikibot'
|
||||||
|
|
||||||
|
if ARGV.size() != 2
|
||||||
|
$stderr.print($0 + " <wiki-user> <wiki-password>\n")
|
||||||
|
exit(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
b = MediaWikiBot::WikiBot.new("http://entropia.de/wiki/")
|
||||||
|
b.login(ARGV[0], ARGV[1])
|
||||||
|
|
||||||
|
old = b.get_raw("RoboRally")
|
||||||
|
new = old.gsub(/\[#reg ([^|]*?)\]/i, '[[#Gesperrte Register|\1]]')
|
||||||
|
b.edit("RoboRally", new, "Kaputte interne Links repariert")
|
@ -0,0 +1,36 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
require 'mediawikibot'
|
||||||
|
|
||||||
|
if ARGV.size() != 2
|
||||||
|
$stderr.print($0 + " <wiki-user> <wiki-password>\n")
|
||||||
|
exit(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
# Rock!
|
||||||
|
|
||||||
|
b = MediaWikiBot::WikiBot.new("http://entropia.de/wiki/")
|
||||||
|
b.login(ARGV[0], ARGV[1])
|
||||||
|
|
||||||
|
b.get_allpages().delete_if { |title| title !~ /GPN/ }.each do |title|
|
||||||
|
if !b.is_redirect?(title)
|
||||||
|
puts "Processing #{title}"
|
||||||
|
|
||||||
|
if !b.is_in_category?(title, "Kategorie:GPN")
|
||||||
|
puts "* [[#{title}]] fehlt in [[Kategorie:GPN]]"
|
||||||
|
end
|
||||||
|
|
||||||
|
if b.get_categories(title).delete_if {|c| c !~ /Kategorie:GPN\d/} .size == 0
|
||||||
|
# Try to fix it
|
||||||
|
if title =~ /^(GPN\d)/
|
||||||
|
cat = "[[Kategorie:#{$1}]]"
|
||||||
|
body = b.get_raw(title) + "\n#{cat}\n"
|
||||||
|
b.edit(title, body, cat)
|
||||||
|
else
|
||||||
|
puts "* [[#{title}]] keiner GPN zugeordnet"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
sleep(1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Reference in New Issue