<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>symfonyで開発日記 &#187; askeet</title>
	<atom:link href="http://blog.symfony.jp/category/example/askeet/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.symfony.jp</link>
	<description>PHP5フレームワークsymfonyを使った開発の記録</description>
	<lastBuildDate>Mon, 28 Mar 2011 07:24:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>日本語でつかうaskeet!その２日本語のタグを使う</title>
		<link>http://blog.symfony.jp/2005/12/22/13</link>
		<comments>http://blog.symfony.jp/2005/12/22/13#comments</comments>
		<pubDate>Thu, 22 Dec 2005 03:28:44 +0000</pubDate>
		<dc:creator>tumf</dc:creator>
				<category><![CDATA[askeet]]></category>
		<category><![CDATA[サンプル]]></category>

		<guid isPermaLink="false">http://blog.symfony.jp/?p=13</guid>
		<description><![CDATA[

日本語のタグを使うには前節での日本語対応に加えタグのurlencode/decodeの作業が必要です。




Index: frontend/modules/tag/actions/actions.class.php
===================================================================
— frontend/modules/tag/actions/actions.class.php &#40;revision 61&#41;
+++ frontend/modules/tag/actions/actions.class.php &#40;working copy&#41;
@@ -12,9 +12,9 @@
&#123;
public function executeShow&#40;&#41;
&#123;
- $this-&#62;questionpager = QuestionPeer::getPopularByTag&#40;$this-&#62;getRequestParameter&#40;’tag’&#41;, $this-&#62;getRequestParameter&#40;’page’, 1&#41;&#41;;
+ $this-&#62;questionpager = QuestionPeer::getPopularByTag&#40;urldecode&#40;$this-&#62;getRequestParameter&#40;’tag’&#41;&#41;, $this-&#62;getRequestParameter&#40;’page’, 1&#41;&#41;;
&#160;
- $this-&#62;setTitle&#40;’askeet! &#38;raquo; question tagged ‘.Tag::normalize&#40;$this-&#62;getRequestParameter&#40;’tag’&#41;&#41;&#41;;
+ $this-&#62;setTitle&#40;’askeet! &#38;raquo; question tagged ‘.Tag::normalize&#40;urldecode&#40;$this-&#62;getRequestParameter&#40;’tag’&#41;&#41;&#41;&#41;;
&#125;
&#160;
public function executeAutocomplete&#40;&#41;
@@ -56,7 +56,7 @@
&#160;
// remove tag for this user and question
$user = $this-&#62;getUser&#40;&#41;-&#62;getSubscriber&#40;&#41;;
- $tag = $this-&#62;getRequestParameter&#40;’tag’&#41;;
+ $tag = urldecode&#40;$this-&#62;getRequestParameter&#40;’tag’&#41;&#41;;
&#160;
$user-&#62;removeTag&#40;$this-&#62;question, $tag&#41;;
&#160;
Index: frontend/modules/tag/templates/showSuccess.php
===================================================================
— [...]]]></description>
		<wfw:commentRss>http://blog.symfony.jp/2005/12/22/13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>日本語でつかうaskeet!その１</title>
		<link>http://blog.symfony.jp/2005/12/22/12</link>
		<comments>http://blog.symfony.jp/2005/12/22/12#comments</comments>
		<pubDate>Thu, 22 Dec 2005 02:33:51 +0000</pubDate>
		<dc:creator>tumf</dc:creator>
				<category><![CDATA[askeet]]></category>
		<category><![CDATA[サンプル]]></category>

		<guid isPermaLink="false">http://blog.symfony.jp/?p=12</guid>
		<description><![CDATA[
社内のナレッジマネジメントツールとしてaskeet!いかがですか？

本家でaskeetが公開されています。

こちらは、私が配備した日本語で使えるかのテストです

askeet!を日本語で使うには、2点気をつけなくて [...]]]></description>
		<wfw:commentRss>http://blog.symfony.jp/2005/12/22/12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

