more timezone hacking. this will work eventually.
authorArt Cancro <ajc@citadel.org>
Tue, 18 Jul 2006 03:24:37 +0000 (03:24 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 18 Jul 2006 03:24:37 +0000 (03:24 +0000)
citadel/ical_dezonify.c

index d83cbc35be109b022ad324dc9c2bf8acdf70dd4e..d7fb476709a9084c9d4b66a99f2775e3ad0222c4 100644 (file)
@@ -39,6 +39,21 @@ icaltimezone *get_default_icaltimezone(void) {
         char *location = NULL;
         icaltimezone *zone = NULL;
 
+
+
+/*
+   This doesn't even belong here. 
+   I'm just keeping it here until I put it somewhere permanent.
+
+       icalarray *zones;
+       int i;
+       zones = icaltimezone_get_builtin_timezones();
+       for (i = 0; i < zones->num_elements; i++) {
+               lprintf(CTDL_DEBUG, "%s\n", icaltimezone_get_location(icalarray_element_at(zones, i)));
+       }
+ */
+
+
         location = "America/New_York";
         if (location) {
                 zone = icaltimezone_get_builtin_timezone(location);