From 0f49fa83212323afc02c01d967d1311e72ff7b98 Mon Sep 17 00:00:00 2001 From: neingeist Date: Thu, 31 May 2007 16:39:48 +0000 Subject: [PATCH] frickl --- neinomat-gpn-fahrplan | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/neinomat-gpn-fahrplan b/neinomat-gpn-fahrplan index edafe97..77ce24c 100755 --- a/neinomat-gpn-fahrplan +++ b/neinomat-gpn-fahrplan @@ -12,6 +12,7 @@ end uhrzeit = nil titel1 = nil titel2 = nil +titel3 = nil tag = 1 roh.split("\n").each do |line| @@ -20,6 +21,7 @@ roh.split("\n").each do |line| if uhrzeit puts "#{tag} #{uhrzeit} KLAMMER AUF #{titel1}" puts "#{tag} #{uhrzeit} KLAMMER ZU #{titel2}" + puts "#{tag} #{uhrzeit} IRGENDWO #{titel3}" end if uhrzeit && $1 < uhrzeit @@ -29,13 +31,22 @@ roh.split("\n").each do |line| uhrzeit = $1 titel1 = nil titel2 = nil - end + titel3 = nil + elsif line =~ /^\| *('''(.*)'''|.*(GOTO).*) *$/ + + # yum + if $1 == "GOTO" + t = "" + else + t = $1 + end - if line =~/^\| *'''(.*)''' *$/ if titel1 == nil - titel1 = cleanse($1) - else - titel2 = cleanse($1) + titel1 = cleanse(t) + elsif titel2 == nil + titel2 = cleanse(t) + else + titel3 = cleanse(t) end end