<?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>ふたつの川うるおう日記 へのコメント</title>
	<atom:link href="http://jfut.integ.jp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jfut.integ.jp</link>
	<description></description>
	<lastBuildDate>Tue, 05 Jan 2010 21:46:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>ohnuki より JIRA 4.xと新しいPlugin機構 へのコメント</title>
		<link>http://jfut.integ.jp/2010/01/04/jira4-and-new-plugin-infrastructure/comment-page-1/#comment-257</link>
		<dc:creator>ohnuki</dc:creator>
		<pubDate>Tue, 05 Jan 2010 21:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://jfut.integ.jp/?p=822#comment-257</guid>
		<description>きれいに情報整理されてスバラシイですね。
また何か問題ありましたらTwitterでつぶやいてください。多分見てます^ ^)

事後報告ですが、私のブログで引用させてもらいました。
http://www.ricksoft.jp/document/pages/viewpage.action?pageId=24346709</description>
		<content:encoded><![CDATA[							<p>きれいに情報整理されてスバラシイですね。<br />
							また何か問題ありましたらTwitterでつぶやいてください。多分見てます^ ^)</p>
							<p>事後報告ですが、私のブログで引用させてもらいました。<br />
							<a href="http://www.ricksoft.jp/document/pages/viewpage.action?pageId=24346709" rel="nofollow">http://www.ricksoft.jp/document/pages/viewpage.action?pageId=24346709</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Tweets that mention ふたつの川うるおう日記 - JIRA 4.xと新しいPlugin機構 -- Topsy.com より JIRA 4.xと新しいPlugin機構 へのコメント</title>
		<link>http://jfut.integ.jp/2010/01/04/jira4-and-new-plugin-infrastructure/comment-page-1/#comment-256</link>
		<dc:creator>Tweets that mention ふたつの川うるおう日記 - JIRA 4.xと新しいPlugin機構 -- Topsy.com</dc:creator>
		<pubDate>Tue, 05 Jan 2010 12:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://jfut.integ.jp/?p=822#comment-256</guid>
		<description>[...]  This post was mentioned on Twitter by ohnuki, jfut. jfut said: JIRA 4.xと新しいPlugin機構についての顛末を書いた http://bit.ly/8vp71y     [...]</description>
		<content:encoded><![CDATA[							<p>[...]  This post was mentioned on Twitter by ohnuki, jfut. jfut said: JIRA 4.xと新しいPlugin機構についての顛末を書いた <a href="http://bit.ly/8vp71y" rel="nofollow">http://bit.ly/8vp71y</a>     [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>jfut より WP FreeStyle Wiki 0.1 へのコメント</title>
		<link>http://jfut.integ.jp/2010/01/01/wp-fswiki/comment-page-1/#comment-246</link>
		<dc:creator>jfut</dc:creator>
		<pubDate>Fri, 01 Jan 2010 06:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://jfut.integ.jp/?p=686#comment-246</guid>
		<description>改善案ありがとうございます。良さそうなので早速取り込んで wp-fswiki-0.1.1.tar.gz を置いておきました。

「コメントスタイル指定用の一部の HTMLタグ」はなんか効いてないですね。</description>
		<content:encoded><![CDATA[							<p>改善案ありがとうございます。良さそうなので早速取り込んで wp-fswiki-0.1.1.tar.gz を置いておきました。</p>
							<p>「コメントスタイル指定用の一部の HTMLタグ」はなんか効いてないですね。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kenichi Maehashi より WP FreeStyle Wiki 0.1 へのコメント</title>
		<link>http://jfut.integ.jp/2010/01/01/wp-fswiki/comment-page-1/#comment-244</link>
		<dc:creator>Kenichi Maehashi</dc:creator>
		<pubDate>Thu, 31 Dec 2009 22:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://jfut.integ.jp/?p=686#comment-244</guid>
		<description>便利な plugin をありがとうございます！
さっそく自分のサーバで使っています。

さて、fswiki.php の convert_html function ですが、escapeshellarg がちょっと怖かったので（基本的に PHP を信用しない :-P）、代わりに標準入出力を使うようにしてみました。どうでしょうか。

function convert_html($text, $navigator) {
        $descriptorspec = array(
                0 =&gt; array(&#039;pipe&#039;, &#039;r&#039;),
                1 =&gt; array(&#039;pipe&#039;, &#039;w&#039;),
        );
        $process = proc_open(&#039;./process_wiki.pl&#039;, $descriptorspec, $pipes, $this-&gt;path);

        if (is_resource($process)) {
                fwrite($pipes[0], $text);
                fclose($pipes[0]);
                $result = stream_get_contents($pipes[1]);
                fclose($pipes[1]);
                proc_close($process);
                return $result;
        } else {
                return __(&quot;Failed to parse fswiki notation!&quot;);
        }
}


# pre tag が「コメントスタイル指定用の一部の HTMLタグ」に入っていることを祈りつつ...

それでは、今年もよろしくお願いいたします。</description>
		<content:encoded><![CDATA[							<p>便利な plugin をありがとうございます！<br />
							さっそく自分のサーバで使っています。</p>
							<p>さて、fswiki.php の convert_html function ですが、escapeshellarg がちょっと怖かったので（基本的に PHP を信用しない :-P）、代わりに標準入出力を使うようにしてみました。どうでしょうか。</p>
							<p>function convert_html($text, $navigator) {<br />
							        $descriptorspec = array(<br />
							                0 =&gt; array(&#8216;pipe&#8217;, &#8216;r&#8217;),<br />
							                1 =&gt; array(&#8216;pipe&#8217;, &#8216;w&#8217;),<br />
							        );<br />
							        $process = proc_open(&#8216;./process_wiki.pl&#8217;, $descriptorspec, $pipes, $this-&gt;path);</p>
							<p>        if (is_resource($process)) {<br />
							                fwrite($pipes[0], $text);<br />
							                fclose($pipes[0]);<br />
							                $result = stream_get_contents($pipes[1]);<br />
							                fclose($pipes[1]);<br />
							                proc_close($process);<br />
							                return $result;<br />
							        } else {<br />
							                return __(&#8220;Failed to parse fswiki notation!&#8221;);<br />
							        }<br />
							}</p>
							<p># pre tag が「コメントスタイル指定用の一部の HTMLタグ」に入っていることを祈りつつ&#8230;</p>
							<p>それでは、今年もよろしくお願いいたします。</p>
]]></content:encoded>
	</item>
	<item>
		<title>jfut より Seasar Conference 2009 Autumnのお知らせ へのコメント</title>
		<link>http://jfut.integ.jp/2009/08/17/seasar-conference-2009-autumn/comment-page-1/#comment-242</link>
		<dc:creator>jfut</dc:creator>
		<pubDate>Sun, 02 Aug 2009 02:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/08/seasar-conference-2009-autumn%e3%81%ae%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b/#comment-242</guid>
		<description>
今後は文頭を見すぎて3文字目以降が見えていませんでした、、、
ありがとうございます！


</description>
		<content:encoded><![CDATA[							<p>今後は文頭を見すぎて3文字目以降が見えていませんでした、、、<br />
							ありがとうございます！</p>
]]></content:encoded>
	</item>
	<item>
		<title>shimura より Seasar Conference 2009 Autumnのお知らせ へのコメント</title>
		<link>http://jfut.integ.jp/2009/08/17/seasar-conference-2009-autumn/comment-page-1/#comment-241</link>
		<dc:creator>shimura</dc:creator>
		<pubDate>Sat, 01 Aug 2009 21:45:37 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/08/seasar-conference-2009-autumn%e3%81%ae%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b/#comment-241</guid>
		<description>
まだ１４日と違ってますよ


</description>
		<content:encoded><![CDATA[							<p>まだ１４日と違ってますよ</p>
]]></content:encoded>
	</item>
	<item>
		<title>jfut より Seasar Conference 2009 Autumnのお知らせ へのコメント</title>
		<link>http://jfut.integ.jp/2009/08/17/seasar-conference-2009-autumn/comment-page-1/#comment-240</link>
		<dc:creator>jfut</dc:creator>
		<pubDate>Sat, 01 Aug 2009 12:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/08/seasar-conference-2009-autumn%e3%81%ae%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b/#comment-240</guid>
		<description>
pre タグの中を直して文頭を見ていませんでした。
ありがとうございます！


</description>
		<content:encoded><![CDATA[							<p>pre タグの中を直して文頭を見ていませんでした。<br />
							ありがとうございます！</p>
]]></content:encoded>
	</item>
	<item>
		<title>suga より Seasar Conference 2009 Autumnのお知らせ へのコメント</title>
		<link>http://jfut.integ.jp/2009/08/17/seasar-conference-2009-autumn/comment-page-1/#comment-239</link>
		<dc:creator>suga</dc:creator>
		<pubDate>Sat, 01 Aug 2009 12:35:02 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/08/seasar-conference-2009-autumn%e3%81%ae%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b/#comment-239</guid>
		<description>
日付日付


</description>
		<content:encoded><![CDATA[							<p>日付日付</p>
]]></content:encoded>
	</item>
	<item>
		<title>jfut より Seasar Conference 2009 White へのコメント</title>
		<link>http://jfut.integ.jp/2009/03/16/seasar-conference-2009-white/comment-page-1/#comment-238</link>
		<dc:creator>jfut</dc:creator>
		<pubDate>Mon, 02 Mar 2009 13:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/03/seasar-conference-2009-white/#comment-238</guid>
		<description>
&gt; いや、当時はまだ今ほど仮想環境の情報も少なく、気づけば物理サーバが増えていたのですよ (^^;

今は仮想環境で気軽にたくさん作れて良いですよね。
僕の環境も物理的には2台ですが4台分動いてたりします。


</description>
		<content:encoded><![CDATA[							<p>> いや、当時はまだ今ほど仮想環境の情報も少なく、気づけば物理サーバが増えていたのですよ (^^;</p>
							<p>今は仮想環境で気軽にたくさん作れて良いですよね。<br />
							僕の環境も物理的には2台ですが4台分動いてたりします。</p>
]]></content:encoded>
	</item>
	<item>
		<title>tksmd より Seasar Conference 2009 White へのコメント</title>
		<link>http://jfut.integ.jp/2009/03/16/seasar-conference-2009-white/comment-page-1/#comment-237</link>
		<dc:creator>tksmd</dc:creator>
		<pubDate>Mon, 02 Mar 2009 04:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://jfuttest1.integ.jp/2009/03/seasar-conference-2009-white/#comment-237</guid>
		<description>
この前はお疲れ様でした。私も楽しかったです。ありがとうございました。

&gt; 僕はまだ物理的には2台なのできっとセーフです(^^)

いや、当時はまだ今ほど仮想環境の情報も少なく、気づけば物理サーバが増えていたのですよ (^^;

Seasar.org の裏側の話、期待してます。


</description>
		<content:encoded><![CDATA[							<p>この前はお疲れ様でした。私も楽しかったです。ありがとうございました。</p>
							<p>> 僕はまだ物理的には2台なのできっとセーフです(^^)</p>
							<p>いや、当時はまだ今ほど仮想環境の情報も少なく、気づけば物理サーバが増えていたのですよ (^^;</p>
							<p>Seasar.org の裏側の話、期待してます。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
