<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WordPress XML-RPC Patch For metWeblog newPost() Method</title>
	<atom:link href="http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/</link>
	<description>thoughts of a web geek</description>
	<lastBuildDate>Tue, 09 Mar 2010 08:53:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joseph Scott</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-4075</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 29 Sep 2008 23:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-4075</guid>
		<description>@Damiano -

Please go back and read my comment.  The dateCreated and date_created_gmt values are NOT STRINGS.  Their type is dateTime.iso8601.  This is not a bug in WordPress.</description>
		<content:encoded><![CDATA[<p>@Damiano -</p>
<p>Please go back and read my comment.  The dateCreated and date_created_gmt values are NOT STRINGS.  Their type is dateTime.iso8601.  This is not a bug in WordPress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bug: wordpress xmlrpc createDate &#171; dam&#8217;s blog</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-4064</link>
		<dc:creator>bug: wordpress xmlrpc createDate &#171; dam&#8217;s blog</dc:creator>
		<pubDate>Sun, 28 Sep 2008 16:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-4064</guid>
		<description>[...] cosa &#8220;divertente&#8221; Ã¨ che questo bug era gia stato scoperto da Jonathan http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/ piu di un anno fa. Aveva pure fatto una patch. Quello che invece noto Ã¨ che il codice di [...]</description>
		<content:encoded><![CDATA[<p>[...] cosa &#8220;divertente&#8221; Ã¨ che questo bug era gia stato scoperto da Jonathan <a href="http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/" rel="nofollow">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/</a> piu di un anno fa. Aveva pure fatto una patch. Quello che invece noto Ã¨ che il codice di [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damiano Venturin</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-4063</link>
		<dc:creator>Damiano Venturin</dc:creator>
		<pubDate>Sun, 28 Sep 2008 14:49:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-4063</guid>
		<description>Hi Jonathan
I&#039;m running in this problem too.
I have just downloaded WP 2.6.2 but I can see a similiar error over there:

the code:
if ( !empty( $content_struct[&#039;date_created_gmt&#039;] ) )
   $dateCreated = str_replace( &#039;Z&#039;, &#039;&#039;, $content_struct[&#039;date_created_gmt&#039;]-&gt;getIso() ) . &#039;Z&#039;; // We know this is supposed to be GMT, so we&#039;re going to slap that Z on there by force
elseif ( !empty( $content_struct[&#039;dateCreated&#039;]) )
   $dateCreated = $content_struct[&#039;dateCreated&#039;]-&gt;getIso();

$content_struct[&#039;date_created_gmt&#039;] and $content_struct[&#039;dateCreated&#039;] are not objects, just strings!

for me the main problem is that I&#039;m running WP directly on wordpress.com so I can&#039;t fix it.

how comes that after a year the code was rewritten but the bug is still there???</description>
		<content:encoded><![CDATA[<p>Hi Jonathan<br />
I&#8217;m running in this problem too.<br />
I have just downloaded WP 2.6.2 but I can see a similiar error over there:</p>
<p>the code:<br />
if ( !empty( $content_struct['date_created_gmt'] ) )<br />
   $dateCreated = str_replace( &#8216;Z&#8217;, &#8221;, $content_struct['date_created_gmt']-&gt;getIso() ) . &#8216;Z&#8217;; // We know this is supposed to be GMT, so we&#8217;re going to slap that Z on there by force<br />
elseif ( !empty( $content_struct['dateCreated']) )<br />
   $dateCreated = $content_struct['dateCreated']-&gt;getIso();</p>
<p>$content_struct['date_created_gmt'] and $content_struct['dateCreated'] are not objects, just strings!</p>
<p>for me the main problem is that I&#8217;m running WP directly on wordpress.com so I can&#8217;t fix it.</p>
<p>how comes that after a year the code was rewritten but the bug is still there???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Franzone</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-3290</link>
		<dc:creator>Jonathan Franzone</dc:creator>
		<pubDate>Mon, 14 Apr 2008 20:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-3290</guid>
		<description>You know you are absolutely correct. The method I was using was pre-formatting the date/time and passing it through as a string. All I had to do was pass it an actual Date object and the XML-RPC (Redstone) library converted it to a dateTime.iso8601 properly.

Thanks for catching that!</description>
		<content:encoded><![CDATA[<p>You know you are absolutely correct. The method I was using was pre-formatting the date/time and passing it through as a string. All I had to do was pass it an actual Date object and the XML-RPC (Redstone) library converted it to a dateTime.iso8601 properly.</p>
<p>Thanks for catching that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-3283</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 14 Apr 2008 16:35:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-3283</guid>
		<description>I should have asked about this sooner.  What I suspect has happened is that you sent the date as a string type instead of using dateTime.iso8601.  I&#039;ve heard back from some of the blog clients and they haven&#039;t had any problems using dateCreated.  Can you confirm if this is the case?

For now I&#039;m closing the ticket (http://trac.wordpress.org/ticket/6612) as invalid.  If something else comes up indicating there is a problem we can always re-open it.</description>
		<content:encoded><![CDATA[<p>I should have asked about this sooner.  What I suspect has happened is that you sent the date as a string type instead of using dateTime.iso8601.  I&#8217;ve heard back from some of the blog clients and they haven&#8217;t had any problems using dateCreated.  Can you confirm if this is the case?</p>
<p>For now I&#8217;m closing the ticket (<a href="http://trac.wordpress.org/ticket/6612" rel="nofollow">http://trac.wordpress.org/ticket/6612</a>) as invalid.  If something else comes up indicating there is a problem we can always re-open it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Franzone</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-2986</link>
		<dc:creator>Jonathan Franzone</dc:creator>
		<pubDate>Mon, 07 Apr 2008 18:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-2986</guid>
		<description>Cool. Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Cool. Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-2985</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 07 Apr 2008 17:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-2985</guid>
		<description>I&#039;ve submitted a patch for this as part of ticket 6612 ( http://trac.wordpress.org/ticket/6612 ).</description>
		<content:encoded><![CDATA[<p>I&#8217;ve submitted a patch for this as part of ticket 6612 ( <a href="http://trac.wordpress.org/ticket/6612" rel="nofollow">http://trac.wordpress.org/ticket/6612</a> ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ladynada</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-1532</link>
		<dc:creator>ladynada</dc:creator>
		<pubDate>Tue, 07 Aug 2007 07:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-1532</guid>
		<description>Hi,
I just posted some of my code in this blog message.

http://heartdaughter.com/blogs/elijah/index.php/2007/08/07/390/

regards,
nada</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I just posted some of my code in this blog message.</p>
<p><a href="http://heartdaughter.com/blogs/elijah/index.php/2007/08/07/390/" rel="nofollow">http://heartdaughter.com/blogs/elijah/index.php/2007/08/07/390/</a></p>
<p>regards,<br />
nada</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ladynada</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-1531</link>
		<dc:creator>ladynada</dc:creator>
		<pubDate>Tue, 07 Aug 2007 03:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-1531</guid>
		<description>Hi,
I used the four different formats that are in the wp tables. I did not alter them before sending them.

One thing, does not the receiving wp site need to have this fix in the xmlrpc.php?

thank you for the format, I will try that next time!

nada</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I used the four different formats that are in the wp tables. I did not alter them before sending them.</p>
<p>One thing, does not the receiving wp site need to have this fix in the xmlrpc.php?</p>
<p>thank you for the format, I will try that next time!</p>
<p>nada</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Franzone</title>
		<link>http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/comment-page-1/#comment-1529</link>
		<dc:creator>Jonathan Franzone</dc:creator>
		<pubDate>Tue, 07 Aug 2007 03:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.franzone.com/2007/07/30/wordpress-xml-rpc-patch-for-metweblog-newpost-method/#comment-1529</guid>
		<description>I noticed that I get that date whenever the parsing fails. I think the system just populates that as the default, which is probably just the earliest date that the system can use. What format is your date string in?

I&#039;m currently passing dates in the format of &quot;20070715T18:34:00&quot; and those work fine.</description>
		<content:encoded><![CDATA[<p>I noticed that I get that date whenever the parsing fails. I think the system just populates that as the default, which is probably just the earliest date that the system can use. What format is your date string in?</p>
<p>I&#8217;m currently passing dates in the format of &#8220;20070715T18:34:00&#8243; and those work fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
