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.
61 lines
1.4 KiB
Ruby
61 lines
1.4 KiB
Ruby
#!/usr/bin/env ruby
|
|
$:.unshift('../vendor/ruby-mediawiki/lib')
|
|
require 'mediawiki/dotfile'
|
|
@wiki = MediaWiki.dotfile(nil,'camp')
|
|
|
|
def parse_template(title, template)
|
|
template_re = Regexp.new("\\\{\\\{" + template + "(.*?)\\\}\\\}", Regexp::MULTILINE)
|
|
|
|
info = []
|
|
|
|
if (scanned = @wiki.article(title).text.scan(template_re)) != []
|
|
scanned.each do |m|
|
|
fields = {}
|
|
fields_string = m[0]
|
|
|
|
inlink = 0
|
|
field = ""
|
|
fields_string += "|" unless fields_string.match(/\|$/)
|
|
fields_string.split(//).each do |c|
|
|
if c == "|" && inlink == 0
|
|
(key, value) = field.split(/=/)
|
|
value.chomp! if value
|
|
fields[key] = value
|
|
field = ""
|
|
else
|
|
inlink += 1 if c == "["
|
|
inlink -= 1 if c == "]"
|
|
field += c
|
|
end
|
|
end
|
|
info << fields
|
|
end
|
|
else
|
|
$stderr.print "Template #{template} not found in #{title}!"
|
|
end
|
|
|
|
info
|
|
end
|
|
|
|
list = ""
|
|
|
|
@wiki.category("Workshop").articles.each do |article|
|
|
if article != "Template:Workshop"
|
|
workshops = parse_template(article, "Workshop")
|
|
|
|
workshops.each do |workshop|
|
|
list += "* [[#{article}|#{workshop["what"]}]] "
|
|
list += "Day " + workshop["day"] + "/" + workshop["start"]
|
|
list += "\n"
|
|
end
|
|
end
|
|
end
|
|
|
|
list += "\n[[Category:Workshop]]\n"
|
|
|
|
puts list
|
|
a = @wiki.article("List of workshops")
|
|
a.text = list
|
|
a.submit("wiki ex machina")
|
|
|