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/neinomat-gpn-fahrplan

43 lines
730 B
Text
Raw Normal View History

2007-05-31 15:53:34 +00:00
#!/usr/bin/env ruby
$:.unshift('vendor/ruby-mediawiki/lib')
require 'mediawiki/dotfile'
@wiki = MediaWiki.dotfile(nil,'entropia')
roh = @wiki.article("Vorlage:GPN6:Fahrplan").text
def cleanse (t)
t.gsub(/\[\[.*\|(.*)\]\]/, '\1')
end
uhrzeit = nil
titel1 = nil
titel2 = nil
tag = 1
roh.split("\n").each do |line|
if line =~ /^\| *(.*:00) *$/
if uhrzeit
puts "#{tag} #{uhrzeit} KLAMMER AUF #{titel1}"
puts "#{tag} #{uhrzeit} KLAMMER ZU #{titel2}"
end
if uhrzeit && $1 < uhrzeit
tag += 1
end
uhrzeit = $1
titel1 = nil
titel2 = nil
end
if line =~/^\| *'''(.*)''' *$/
if titel1 == nil
titel1 = cleanse($1)
else
titel2 = cleanse($1)
end
end
end