1
0
Fork 0
This repository has been archived on 2019-12-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neinomaten/camp/neinomat-workshops
2007-07-06 01:20:24 +00:00

58 lines
1.3 KiB
Ruby
Executable file

#!/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
p list
a = @wiki.article("List of workshops")
a.text = list
a.submit("wiki ex machina")