public
Description: A small library to assist in writing filtering programs for icalendar files or streams.
Homepage: http://opensource.thinkrelevance.com/wiki/calfilter
Clone URL: git://github.com/relevance/calfilter.git
v1.1.3
glv (author)
Sun May 04 17:30:39 -0700 2008
commit  d7b1af7e2a93d846816d0a0eb8404d671285adcb
tree    1ab63834360dcab84cc8a89e3f6ae5b637cfa17c
parent  fd77955682c89ff1538f1f4cc8328b35ad6abd99
...
5
6
7
 
 
8
9
10
...
5
6
7
8
9
10
11
12
0
@@ -5,6 +5,8 @@
0
   * Monkey-patched Icalendar to deal with Dates (as opposed to
0
     DateTimes) correctly.
0
 
0
+ * Monkey-patched Icalendar to preserve UTC on times.
0
+
0
 === 1.1.2 / 2008-05-04
0
 
0
 * Bug fix in calfilter.rb
...
6
7
8
 
9
 
10
11
12
...
6
7
8
9
10
11
12
13
14
0
@@ -6,7 +6,9 @@ ToDo.txt
0
 example.rb
0
 lib/calfilter.rb
0
 lib/calfilter/cgi.rb
0
+lib/calfilter/datetime_extensions.rb
0
 lib/calfilter/icalendar_extensions.rb
0
+lib/calfilter/time_extensions.rb
0
 lib/calfilter/tripit.rb
0
 test/test_calfilter.rb
0
 test/test_calfilter_cgi.rb
...
1
2
3
4
 
5
6
7
...
1
2
3
 
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 $:.unshift(File.dirname(__FILE__))
0
 
0
 %w{rubygems icalendar date open-uri}.each{|l| require l}
0
-%w{icalendar_extensions}.each{|l| require 'calfilter/' + l}
0
+%w{datetime icalendar time}.each{|l| require "calfilter/#{l}_extensions"}
0
 
0
 module CalFilter
0
   VERSION = '1.1.3'

Comments

    No one has commented yet.