The API for Google Calendar has been released, and after a quick initial skimming of the document, I think a CFC could be built to interact with the system. I'm going to start work on a simple reader for now to allow for something like this:
<cfset gCal = createObject("component", "GoogleCalendar").init("your private url goes here")>
<!--- get entries returns all. Now says only after now --->
<cfset entries = getCal.getEntries(now())>
<cfloop query="entries">
etc
</cfloop>
Once reading is done then I'll start work on writing as well. This could be an excellent way to integrate a web site with Google calendar. Imagine allowing folks to request meetings by simply adding a form to your site.
Archived Comments
Oh this is going to be great... I only wish that it was sort of like google maps where it would draw all of the calendar views for you too! But beggars can't be choosers, this is a great thing.
There is a cool component for DW available from CommunityMX.com also for doing Google maps.
Are you aware that your code doesn't escape in the RSS feed (creating some very odd posts, if you don't think to click through to see the code)?
Are you sure? I just view-ed source on it, and I saw escaped HTML.
I have the same problem with very strange results. The only thing I saw was "etc"