GoogleCal Updated

I updated GoogleCal, my Google Calendar CFC. This update fixes a bug and adds a new feature - the ability to filter the getEvents method to events in the future.

Comments

May want to add reminders to the getEntries return struct??

Here's how I did it:


<cfset s.reminder = "">
<cfif structKeyExists(entry, "gd:when") and structKeyExists(entry["gd:when"], "gd:reminder") and structKeyExists(entry["gd:when"]["gd:reminder"].xmlAttributes,"minutes")>
<cfset s.reminder = entry["gd:when"]["gd:reminder"].xmlAttributes.minutes>
</cfif>
# Posted By todd | 9/27/06 7:48 AM
Most excellent. I'm updating the zip right now. Thank you!
# Posted By Raymond Camden | 9/27/06 8:25 AM
The zip is now updated. App is at 1.2.
# Posted By Raymond Camden | 9/27/06 8:28 AM
Anyone looking for this it is now at RIAForge.

http://googlecal.riaforge.org/
# Posted By Jeffrey Price | 1/28/08 9:29 PM