Removed Duplicated function block
authorJames French <[email protected]>
Mon, 4 Mar 2013 11:50:45 +0000 (19:50 +0800)
committerJames French <[email protected]>
Mon, 4 Mar 2013 11:51:29 +0000 (19:51 +0800)
- exDate listed twice after earlier merge hell

parserrules.py

index f1c55c1..4bb0dd5 100644 (file)
@@ -164,22 +164,3 @@ def unwantedParams(cal):
                        except AttributeError: continue
 
        return cal
-
-def exDate(cal):
-       '''Changes multi-EXDATE into singles (apple can't obey even simple specs).
-       If the remote calendar specifies a timezone then use it, otherwise use the user specified value'''
-
-       for event in cal.vevent_list:
-               if not event.contents.has_key(u'exdate'): continue
-               dates = event.exdate.value
-               try: tzid = event.exdate.tzid_param
-               except AttributeError: tzid = ''
-
-               del event.contents[u'exdate']
-
-               for date in dates:
-                       entry = event.add(u'exdate')
-                       entry.value = [date]
-                       if tzid: entry.tzid_param = tzid
-
-       return cal

UCC git Repository :: git.ucc.asn.au