So, now that I've got openbd working... well, now comes the REAL work.
 Making my ancient code, which has been running happily on CF7 for a
long long time, work on openBD.

My first problem is with using Ray Camden's rss.cfc (
http://cfrss.riaforge.org/ ) to get photo album information from
google picasa.

<cfset rss = createObject("component","rss")>
<cfset theURL =
"http://picasaweb.google.com/data/feed/base/user/rick.root?kind=album&alt=rss&hl=en_US&access=public";>
<cfset entries = rss.getEntries(theURL)>
<cfdump var="#entries#"><cfabort>
<h3 style="margin-bottom: 0; padding-bottom: 0;">My Public Photo Albums</h3>
<p style="margin-top: 0; padding-top: 0;">These are my most recently
updated photo albums... you can view <a
href="http://picasaweb.google.com/rick.root";>all my public albums</a>
too.</p>
<ul>
        <cfoutput query="entries" maxrows="10">
        <li><a href="#LINK#"><b>#TITLE#</b></a> posted
#dateFormat(date,'mmmm d, yyyy')# at
#timeFormat(dateAdd('h',3,date),'h:mm tt')#</li>
        </cfoutput>
</ul>

This generates the following error:

Data not supported: Invalid date/time string: Sun, 14 Jun 2009 07:00:00 +0000

Coldfusion can handle this date format just fine.  I can work around
this, but should something like this be filed as a bug?

Rick

-- 
Open BlueDragon Public Mailing List
 http://www.openbluedragon.org/   http://twitter.com/OpenBlueDragon
 mailing list - http://groups.google.com/group/openbd?hl=en

 !! save a network - please trim replies before posting !!

Reply via email to