summaryrefslogtreecommitdiff
path: root/exchange
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2009-04-26 18:57:09 -0400
committerMike Crute <mcrute@gmail.com>2009-04-26 18:57:09 -0400
commit8cfbd1b970870a0d2594e147cd9bcc223d0a33b9 (patch)
tree18b1b108deeeed8088ddbd87d8c708a00dee104c /exchange
parentecb1c615c9293c32dece1d116e16edc1288988ff (diff)
downloadcalendar_proxy-8cfbd1b970870a0d2594e147cd9bcc223d0a33b9.tar.bz2
calendar_proxy-8cfbd1b970870a0d2594e147cd9bcc223d0a33b9.tar.xz
calendar_proxy-8cfbd1b970870a0d2594e147cd9bcc223d0a33b9.zip
Cleaning up some of the testing code.
Diffstat (limited to 'exchange')
-rw-r--r--exchange/commands.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/exchange/commands.py b/exchange/commands.py
index 89db579..40446e2 100644
--- a/exchange/commands.py
+++ b/exchange/commands.py
@@ -22,6 +22,7 @@ import dateutil.parser
22from icalendar import Calendar, Event, Alarm 22from icalendar import Calendar, Event, Alarm
23 23
24from exchange import ExchangeException 24from exchange import ExchangeException
25from exchange.timezones import EST
25 26
26 27
27class ExchangeCommand(object): 28class ExchangeCommand(object):
@@ -95,12 +96,13 @@ class FetchCalendar(ExchangeCommand):
95 96
96 sql = """ 97 sql = """
97 SELECT 98 SELECT
99 PidLidAllAttendeesString AS attendees,
98 "urn:schemas:calendar:location" AS location, 100 "urn:schemas:calendar:location" AS location,
101 "urn:schemas:calendar:organizer" AS organizer,
102 "urn:schemas:calendar:meetingstatus" AS status,
99 "urn:schemas:httpmail:normalizedsubject" AS subject, 103 "urn:schemas:httpmail:normalizedsubject" AS subject,
100 "urn:schemas:calendar:dtstart" AS start_date, 104 "urn:schemas:calendar:dtstart" AS start_date,
101 "urn:schemas:calendar:dtend" AS end_date, 105 "urn:schemas:calendar:dtend" AS end_date,
102 "urn:schemas:calendar:busystatus" AS busy_status,
103 "urn:schemas:calendar:instancetype" AS instance_type,
104 "urn:schemas:calendar:timezone" AS timezone_info, 106 "urn:schemas:calendar:timezone" AS timezone_info,
105 "urn:schemas:httpmail:textdescription" AS description 107 "urn:schemas:httpmail:textdescription" AS description
106 FROM 108 FROM