Test user's calendar has only three non-recurring events, on a single day.
Code snippet I've been using:
calClient = gdata.calendar.client.CalendarClient(source='mycal')
calClient.ClientLogin("[email protected]", "secret", calClient.source);
for event in calClient.GetCalendarEventFeed().entry:
print event.title.text
This code worked great from April 28 to May 17 9am: it printed the three
events in chrono order.
But by 7pm on May 17, my automated tests show that now I'm getting the three
events back in a different order (not chronological or alphabetical).
Returned order has been consistently wrong since then.
Questions for the experts:
1. Did I just get lucky for two weeks? What's the right way to ensure that
my events are returned in chronological order?
2. If it's not on my end, anyone know what's wrong or changed and why?
Thanks!
-UM
--
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/calendar/community/forum.html