H
hymie!
Greetings.
I found this ruby script
cals = Icalendar.parse($<)
cals.each do |cal|
cal.events.each do |event|
puts "Organizer: #{event.organizer}"
puts "Event: #{event.summary}"
puts "Starts: #{event.dtstart.myformat} local time"
puts "Ends: #{event.dtend.myformat}"
puts "Location: #{event.location}"
puts "Contact: #{event.contacts}"
puts "Description:\n#{event.description}"
puts ""
end
end
and I was hoping to write something similar in perl.
The question is, can somebody recommend to me a module that I can use
to read iCal files? All of the modules that I see appear to handle
creating iCal files, but not reading them and outputting something
human-readable. Although it's likely that I missed it.
--hymie! http://lactose.homelinux.net/~hymie (e-mail address removed)
-------------------------------------------------------------------------------
I found this ruby script
cals = Icalendar.parse($<)
cals.each do |cal|
cal.events.each do |event|
puts "Organizer: #{event.organizer}"
puts "Event: #{event.summary}"
puts "Starts: #{event.dtstart.myformat} local time"
puts "Ends: #{event.dtend.myformat}"
puts "Location: #{event.location}"
puts "Contact: #{event.contacts}"
puts "Description:\n#{event.description}"
puts ""
end
end
and I was hoping to write something similar in perl.
The question is, can somebody recommend to me a module that I can use
to read iCal files? All of the modules that I see appear to handle
creating iCal files, but not reading them and outputting something
human-readable. Although it's likely that I missed it.
--hymie! http://lactose.homelinux.net/~hymie (e-mail address removed)
-------------------------------------------------------------------------------