<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Fude - alpha</title>
	<atom:link href="http://www.witha.jp/eXeries/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.witha.jp/eXeries</link>
	<description>Don\'t kill the translator.</description>
	<pubDate>Fri, 20 Jun 2008 06:20:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Movable Type 4.1 and AtomPub</title>
		<link>http://www.witha.jp/eXeries/2008/02/17/movable-type-41-and-atompub/</link>
		<comments>http://www.witha.jp/eXeries/2008/02/17/movable-type-41-and-atompub/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 03:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2008/02/17/movable-type-41-and-atompub/</guid>
		<description><![CDATA[Finally, I had a chance to try MT&#8217;s AtomPub with Fude.
Here is the list of things that I&#8217;ve noticed.
I&#8217;ve reported this to SixApart dev team. They quickly responded and told me that they recognized the problems and would fix these problems. Nice!
1) missing link@rel=&#8221;EditURI&#8221; in the default template.
 &#60;link rel=&#8221;EditURI&#8221; type=&#8221;application/rsd+xml&#8221; title=&#8221;RSD&#8221; href=&#8221;http://example.com/rsd.xml&#8221; /&#62;
2) missing [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, I had a chance to try MT&#8217;s AtomPub with <a href="http://www.witha.jp/eXeries/software/">Fude</a>.</p>
<p>Here is the list of things that I&#8217;ve noticed.</p>
<blockquote><p><strong>I&#8217;ve reported this to SixApart dev team. They quickly responded and told me that they recognized the problems and would fix these problems. Nice!</strong></p></blockquote>
<p>1) missing link@rel=&#8221;EditURI&#8221; in the default template.</p>
<blockquote><p> &lt;link rel=&#8221;EditURI&#8221; type=&#8221;application/rsd+xml&#8221; title=&#8221;RSD&#8221; href=&#8221;http://example.com/rsd.xml&#8221; /&gt;</p></blockquote>
<p>2) missing service document url in the rsd file.</p>
<p>3) MT returns &#8220;401  Unauthorized&#8221; if a client sends a request without a username/password.<br />
This is OK, but &#8220;401 Authorization Required&#8221; seems to be much better.</p>
<p>4) MT returns &#8220;403 Invalid login&#8221; if a client sends a request with a wrong username/password.<br />
I believe it should be &#8220;401 Unauthorized&#8221;.</p>
<blockquote><p> http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html<br />
403 Forbidden</p>
<p>The server understood the request, but is refusing to fulfill it.<br />
Authorization will not help and the request SHOULD NOT be repeated. If<br />
the request method was not HEAD and the server wishes to make public<br />
why the request has not been fulfilled, it SHOULD describe the reason<br />
for the refusal in the entity. If the server does not wish to make<br />
this information available to the client, the status code 404 (Not<br />
Found) can be used instead.</p></blockquote>
<p>&#8220;The server understood the request, but is refusing&#8221;, &#8220;Authorization<br />
will not help&#8221;, &#8220;request SHOULD NOT be repeated&#8221;</p>
<p>hum &#8230; This case, Authorization HELPs. So I believe it should be &#8220;401 Unauthorized&#8221; instead of &#8220;403 Invalid login (Forbidden)&#8221;.</p>
<p>5) content-type miss-match</p>
<blockquote><p>HTTP/1.1 403  Invalid login<br />
Date: Sat, 16 Feb 2008 20:57:24 GMT<br />
Server: Apache<br />
Www-authenticate: WSSE profile=&#8221;UsernameToken&#8221;<br />
Keep-Alive: timeout=5, max=100<br />
Connection: Keep-Alive<br />
Transfer-Encoding: chunked<br />
Content-Type: text/html; charset=utf-8</p>
<p>&lt;error&gt;HASH(0&#215;90c29d0)&lt;/error&gt;</p></blockquote>
<p>In the header, it says &#8220;Content-Type: text/html&#8221; but the response body isn&#8217;t.<br />
Error string is broken. HASH(0&#215;90c29d0)</p>
<p>6) too many default namespace declaration in the feed.<br />
<strike> Because of this, XPath fails.(xml parser&#8217;s problem?)</strike>  This seems to be a bug in my code. I forgot to explicitly tell parser to use XPath instead of XSLPattern. This is because before IE5.5SP2, MSXML did not fully support XPath. I think it is OK to dump IE5.x support right about now.</p>
<p>7) unnecessary //feed/link in the feed.</p>
<blockquote><p> &lt;link xmlns=&#8221;http://www.w3.org/2005/Atom&#8221; rel=&#8221;service.post&#8221;<br />
href=&#8221;http://example.com/mt/mt-atom.cgi/1.0/blog_id=1&#8243; title=&#8221;My First<br />
Blog&#8221; type=&#8221;application/x.atom+xml&#8221;/&gt;</p></blockquote>
<p>Instead,</p>
<blockquote><p> &lt;link rel=&#8221;self&#8221; type=&#8221;application/atom+xml&#8221; href=&#8221;someurl&#8221;/&gt;</p></blockquote>
<p>is preferred.<br />
and additionally,</p>
<blockquote><p> &lt;link rel=&#8221;first&#8221; type=&#8221;application/atom+xml&#8221; href=&#8221;someurl&#8221;/&gt;<br />
&lt;link rel=&#8221;last&#8221; type=&#8221;application/atom+xml&#8221; href=&#8221;someurl&#8221;/&gt;</p></blockquote>
<p>are nice to have.</p>
<p>8 ) //entry/content@type=html</p>
<blockquote><p> &lt;content xmlns=&#8221;http://www.w3.org/2005/Atom&#8221; type=&#8221;html&#8221;&gt;<br />
&lt;div xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;This is a test.&lt;/div&gt;<br />
&lt;/content&gt;</p></blockquote>
<p>//entry/content@type=html<br />
but, its actually child element is a xhtml:div. That means<br />
//entry/content@type=xhtml<br />
is the right one.</p>
<p>9) missing //feed/id, //feed/updated</p>
<p>10) missing media upload.<br />
This is not a bug, but I want it <img src='http://www.witha.jp/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>11) missing support for custom fields, tags, commentEnabled, trackbackEnabled, text_more, etc.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2008/02/17/movable-type-41-and-atompub/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter client TwitterDesktop</title>
		<link>http://www.witha.jp/eXeries/2008/01/13/twitter-client-twitterdesktop/</link>
		<comments>http://www.witha.jp/eXeries/2008/01/13/twitter-client-twitterdesktop/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 00:37:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2008/01/13/twitter-client-twitterdesktop/</guid>
		<description><![CDATA[
    TwitterDesktop is a&#160;Twitter client for Windows. It is a simple, light-weight, easy to use application which runs natively on Windows.&#160;


    Download: http://www.witha.jp/eXeries/Twitter.zip


    Runs on: Windows 98SE / ME / 2000 / XP / Vista
    Prerequisite: Internet Explorer 6 or greater


   [...]]]></description>
			<content:encoded><![CDATA[<p>
    <em><strong>TwitterDesktop</strong></em> is a&nbsp;<a title="" href="http://twitter.com/">Twitter</a> client for Windows. It is a simple, light-weight, easy to use application which runs natively on Windows.&nbsp;
</p>
<p>
    Download: <a href="http://www.witha.jp/eXeries/Twitter.zip">http://www.witha.jp/eXeries/Twitter.zip</a>
</p>
<p>
    Runs on: Windows 98SE / ME / 2000 / XP / Vista<br />
    Prerequisite: Internet Explorer 6 or greater
</p>
<p>
    Installation: There is no &#8220;installation&#8221;. Just unzip and you are ready to run.
</p>
<p>Note:</p>
<ul>
<li>It fully supports Unicode, meaning you can use all kinds of languages.
    </li>
<li>It behaves nicely to Twitter servers. (retrives data only when there is one or more&nbsp;updates)
    </li>
<li>If you have multiple Twitter accounts you wanna use with, you can copy TwitterDesktop.exe and rename it and run side-by-side.
    </li>
</ul>
<p><span id="more-18"></span></p>
<p>
    <img title="TwitterDesktop" height="2115" alt="TwitterDesktop" src="http://www.witha.jp/wp/wp-content/uploads/bw-uploadstwitterdesktop.jpg" width="435" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2008/01/13/twitter-client-twitterdesktop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MT4.1 beta2 and AtomPub support</title>
		<link>http://www.witha.jp/eXeries/2007/12/24/mt41-beta2-and-atompub-support/</link>
		<comments>http://www.witha.jp/eXeries/2007/12/24/mt41-beta2-and-atompub-support/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 04:04:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<category><![CDATA[API]]></category>

		<category><![CDATA[atompub]]></category>

		<category><![CDATA[Movable Type]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[XML-RPC]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/12/24/mt41-beta2-and-atompub-support/</guid>
		<description><![CDATA[     I&#8217;ve been waiting for a long time for this. First of all, congrats to the developers at SixApart. Now MT 4.1 supports AtomPub.
Unfortunately, I can&#8217;t see MT4.1 beta2 in action due to some mysterious errors during its installation. I&#8217;m very interested in how they implemented AtomPub in MT because, so [...]]]></description>
			<content:encoded><![CDATA[<p>     I&#8217;ve been waiting for a long time for this. First of all, congrats to the developers at SixApart. Now <a href="http://www.movabletype.org/2007/12/atompub_support_and_new_edit_a.html">MT 4.1 supports AtomPub</a>.</p>
<p>Unfortunately, I can&#8217;t see MT4.1 beta2 in action due to some mysterious errors during its installation. I&#8217;m very interested in how they implemented AtomPub in MT because, so far, WordPress&#8217;s AtomPub support is practically unusable. Aside from <a href="http://www.witha.jp/eXeries/2007/11/21/wordpress-231-and-atompub/">a few bugs</a>, WordPress&#8217;s AtomPub support offers very little features compared to those of XML-RPC API. There is no reason to choose AtomPub over XML-RPC API at this point.</p>
<p>Yes, it is a good thing we have a choice. But I don&#8217;t think current status of AtomPub support in WordPress reflects true potential of AtomPub. Also, now that MT has the custom fields, MT could take advantage of the extensibility of Atom. The same thing can be said with Vox. Vox support only one API which is an old (pre draft version of) Atom API. That is a shame because there are not only blog posts but also &#8220;photos&#8221;, &#8220;audio&#8221;, &#8220;video&#8221;, &#8220;books&#8221;, &#8220;collections&#8221; that can be used via web service interface. The old version of Atom API can&#8217;t handle all that great, but AtomPub can.</p>
<p>So, developer teams at WP and Movable Type, keep up the great work and I&#8217;m hoping the two tools will be much much better.</p>
<p>By the way, what I got during the installation was bellow (which I already reported to the dev team).</p>
<blockquote><p>         Got an error: Can&#8217;t call method &#8220;execute&#8221; on an undefined value at /somedirectory/mt4/extlib/Data/ObjectDriver/Driver/DBI.pm line 118.</p>
<p>(I heard this was a bug in MT4.1 beta2 and will be fixed)</p></blockquote>
<p>and</p>
<blockquote><p>         Got an error: Statement has no result columns to bind (perhaps you need to successfully call execute first) at /somedirectory/mt/extlib/Data/ObjectDriver/Driver/DBI.pm<br />
line 119.</p></blockquote>
<blockquote><p> (Seems like MySQL version is old&#8230;)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/12/24/mt41-beta2-and-atompub-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AtomPub Test Client released</title>
		<link>http://www.witha.jp/eXeries/2007/12/10/atompub-test-client-released/</link>
		<comments>http://www.witha.jp/eXeries/2007/12/10/atompub-test-client-released/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 05:36:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/12/10/atompub-test-client-released/</guid>
		<description><![CDATA[Finally&#8230; 
You can download the latest version from this page, and here is the screenshot.
direct link to the zip archive
]]></description>
			<content:encoded><![CDATA[<p>Finally&#8230; <a href="http://www.witha.jp/eXeries/fude.png"></a></p>
<p>You can download the latest version from <a href="http://www.witha.jp/eXeries/software/">this page</a>, and here is the <a href="http://www.witha.jp/eXeries/fude.png">screenshot</a>.</p>
<p><a href="http://www.witha.jp/eXeries/fude.zip">direct link to the zip archive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/12/10/atompub-test-client-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yet another Twitter Client for Win (alpha)</title>
		<link>http://www.witha.jp/eXeries/2007/12/10/yet-another-twitter-client-for-win-alpha/</link>
		<comments>http://www.witha.jp/eXeries/2007/12/10/yet-another-twitter-client-for-win-alpha/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 05:16:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/12/10/yet-another-twitter-client-for-win-alpha/</guid>
		<description><![CDATA[[update]New version is posted here.[/update]
I started to develop my own Twitter client just last week. It is really really early alpha. You can download it from here. It&#8217;s only a three day-old software. So if you are crazy enough to use it, use it at your own risk!

What you can do: View status and update [...]]]></description>
			<content:encoded><![CDATA[<p>[update]New version is posted <a href="http://www.witha.jp/eXeries/2008/01/13/twitter-client-twitterdesktop/">here</a>.[/update]</p>
<p>I started to develop my own Twitter client just last week. It is really really early alpha. You can download it from <a href="http://www.witha.jp/eXeries/Twitter.zip">here</a>. It&#8217;s only a three day-old software. So if you are crazy enough to use it, use it at your own risk!</p>
<blockquote><p><img src="http://www.witha.jp/eXeries/images/TWitterClient2.gif" height="397" width="412" /></p>
<p>What you can do: View status and update status.</p>
<p>Runs on: Windows 98SE/ ME / 2000 / XP / Vista</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/12/10/yet-another-twitter-client-for-win-alpha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Relative URI and APP Test Site</title>
		<link>http://www.witha.jp/eXeries/2007/11/30/relative-uri-and-app-test-site/</link>
		<comments>http://www.witha.jp/eXeries/2007/11/30/relative-uri-and-app-test-site/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 15:45:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<category><![CDATA[atompub]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/11/30/relative-uri-and-app-test-site/</guid>
		<description><![CDATA[I believe I found a possible bug in the APP test site at http://bitworking.org/projects/apptestsite
I was trying to PUT on the Edit-Media URI that returned from the entry, but all I got was Not Found errors. After having a little conversation with takemaru san, it turned out that the base URI of the Edit-Media was not [...]]]></description>
			<content:encoded><![CDATA[<p>I believe I found a possible bug in the APP test site at <em>http://bitworking.org/projects/apptestsite</em></p>
<p>I was trying to PUT on the Edit-Media URI that returned from the entry, but all I got was <em>Not Found</em> errors. After having a little conversation with <a href="http://teahut.sakura.ne.jp/b/">takemaru</a> san, it turned out that the base URI of the Edit-Media was not the URI of the entry but the collection&#8217;s URI.</p>
<p>If you GET<br />
http://bitworking.org/projects/apptestsite/app.cgi/service/media/416/</p>
<p>The server returns an entry with following Edit-Media link.<br />
&lt;link href=&#8221;416/;media&#8221; rel=&#8221;edit-media&#8221;/&gt;</p>
<p>So, combining the two,<br />
http://bitworking.org/projects/apptestsite/app.cgi/service/media/416/  + 416/;media<br />
you get,<br />
http://bitworking.org/projects/apptestsite/app.cgi/service/media/416/416/;media</p>
<p>Dah, that is Not Found on the server. The correct URI is  http://bitworking.org/projects/apptestsite/app.cgi/service/media/416/;media</p>
<p>I just sent a mail to the developer, so I hope that will be fixed soon.</p>
<p>[update] Today, I confirmed this has been fixed. (2008/02/12).</p>
<p>But I found another bug.. //feed/entry/link@rel=&#8221;edit-media&#8221; should not be in a normal entry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/11/30/relative-uri-and-app-test-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AtomPub client - progress so far</title>
		<link>http://www.witha.jp/eXeries/2007/11/21/progress-so-far/</link>
		<comments>http://www.witha.jp/eXeries/2007/11/21/progress-so-far/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 05:20:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[app]]></category>

		<category><![CDATA[atompub]]></category>

		<category><![CDATA[fude]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/11/21/progress-so-far/</guid>
		<description><![CDATA[     Here is the early alpha of the Atom Publishing client I&#8217;ve been working on. The basic features work OK, but it seriously lacks usability. You probably don&#8217;t wanna use it just yet even if you&#8217;re a developer.


The hardest stuff would be to figure out the effective way of sync&#8217;ing. The [...]]]></description>
			<content:encoded><![CDATA[<p>     Here is the early alpha of the Atom Publishing client I&#8217;ve been working on. The basic features work OK, but it seriously lacks usability. You probably don&#8217;t wanna use it just yet even if you&#8217;re a developer.</p>
<p><a href="http://www.witha.jp/wp/wp-content/uploads/bw-uploadsfude-atom-client-alpha2.png"><img src="http://www.witha.jp/wp/wp-content/uploads/bw-uploadstm-fude-atom-client-alpha2.png" title="fude_atom_client_alpha2.png" alt="fude_atom_client_alpha2.png" border="0" height="174" width="242" /></a></p>
<p><a href="http://www.witha.jp/wp/wp-content/uploads/bw-uploadsfude-atom-client-alpha1.png"><img src="http://www.witha.jp/wp/wp-content/uploads/bw-uploadstm-fude-atom-client-alpha1.png" title="fude_atom_client_alpha1.png" alt="fude_atom_client_alpha1.png" border="0" height="151" width="242" /></a></p>
<p>The hardest stuff would be to figure out the effective way of sync&#8217;ing. The UI is also very hard, but pretty much any UI design is difficult and time consuming. So, well, stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/11/21/progress-so-far/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.3.1 and AtomPub [update2]</title>
		<link>http://www.witha.jp/eXeries/2007/11/21/wordpress-231-and-atompub/</link>
		<comments>http://www.witha.jp/eXeries/2007/11/21/wordpress-231-and-atompub/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 00:05:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<category><![CDATA[atompub]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/11/21/wordpress-231-and-atompub/</guid>
		<description><![CDATA[I&#8217;ve noticed a couple of things while messing around with the latest WordPress&#8217;s Atom Publishing Protocol support.

Bug: Malformed XML returns when GETing a Media Link Entry.
Bug: 404 Not Found error on GETing a category and a collection document if &#8220;WordPress address&#8221; and &#8220;Blog address&#8221; are different.
Bug: Entry&#8217;s published, Updated and Edited time stamp are always [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve noticed a couple of things while messing around with the latest WordPress&#8217;s Atom Publishing Protocol support.</p>
<ol>
<li>Bug: Malformed XML returns when GETing a Media Link Entry.</li>
<li>Bug: 404 Not Found error on GETing a category and a collection document if &#8220;WordPress address&#8221; and &#8220;Blog address&#8221; are different.</li>
<li>Bug: Entry&#8217;s published, Updated and Edited time stamp are always the same.</li>
<li>No Etag.</li>
<li>No &#8220;page&#8221;, &#8220;tags&#8221;, support.</li>
</ol>
<p>Missing Etag support isn&#8217;t a big deal for me because it&#8217;s easier to develop a client and test with&#8230; at least for now. But, the XML error is kind a annoying.</p>
<p><strike>Where am I supposed to report this, by the way? I&#8217;m kinda late for the <a href="http://codex.wordpress.org/WordPress_Bug_Hunts">bug hunt</a>.</strike></p>
<p>After asking in the wp-hacker list, I was instructed to join the wp-xmlrpc list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/11/21/wordpress-231-and-atompub/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AtomPub and WordPress</title>
		<link>http://www.witha.jp/eXeries/2007/09/08/atompub-and-wordpress/</link>
		<comments>http://www.witha.jp/eXeries/2007/09/08/atompub-and-wordpress/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 12:41:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Atom]]></category>

		<guid isPermaLink="false">http://www.witha.jp/eXeries/2007/09/08/atompub-and-wordpress/</guid>
		<description><![CDATA[         WordPress 2.3 beta 1 has significantly upgraded support for the Atom Publishing Protocol.
- WordPress 2.3 ♥ AtomPub
         Anyhow, WordPress 2.3 is going to be a first-rate Atom Protocol sever.
- Long-Weekend Fun
Great news.  I&#8217;ll be definitely messing around [...]]]></description>
			<content:encoded><![CDATA[<blockquote>         WordPress 2.3 beta 1 has significantly upgraded support for the Atom Publishing Protocol.<br />
- <a href="http://intertwingly.net/blog/2007/08/30/WordPress-2-3-AtomPub">WordPress 2.3 ♥ AtomPub</a></p></blockquote>
<blockquote><p>         Anyhow, <a href="http://codex.wordpress.org/Version_2.3">WordPress 2.3</a> is going to be a first-rate Atom Protocol sever.<br />
- <a href="http://www.tbray.org/ongoing/When/200x/2007/09/02/Labour-Day-Weekend">Long-Weekend Fun</a></p></blockquote>
<p>Great news.  I&#8217;ll be definitely messing around with it&#8230;. and here I am.</p>
<p>I&#8217;ve been working on an Atom client library for a long time. I have a test client software as well. Though I&#8217;m kindda itching to release it, there are a few things left to do..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witha.jp/eXeries/2007/09/08/atompub-and-wordpress/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
