<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
	>
<channel>
	<title>ITASSIST へのコメント</title>
	<atom:link href="http://www.itassist.info/modules/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.itassist.info/modules/blog</link>
	<description>SOHOゆいちのサイト</description>
	<lastBuildDate>Fri, 23 Jul 2010 11:02:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Cocos2Dでのクラッシュ問題解決メモ &#124; AYAHIME.JP より cocos2dサンプル:ActionTestの内容(1) へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/384/comment-page-1#comment-43</link>
		<dc:creator>Cocos2Dでのクラッシュ問題解決メモ &#124; AYAHIME.JP</dc:creator>
		<pubDate>Fri, 23 Jul 2010 11:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.itassist.info/modules/blog/?p=384#comment-43</guid>
		<description>[...] 参考にさせていただいたブログ→ http://www.itassist.info/modules/blog/archives/384 [...]</description>
		<content:encoded><![CDATA[<p>[...] 参考にさせていただいたブログ→ <a href="http://www.itassist.info/modules/blog/archives/384" rel="nofollow">http://www.itassist.info/modules/blog/archives/384</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>yuiti より 画像にゆらぎのアニメーションを追加するプラグイン へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/335/comment-page-1#comment-39</link>
		<dc:creator>yuiti</dc:creator>
		<pubDate>Thu, 08 Jul 2010 01:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.itassist.info/modules/blog/?p=335#comment-39</guid>
		<description>バグ：親の要素のpositionがstaticの場合に、画面をリサイズに対応するのを忘れてました。時間見て対応します。</description>
		<content:encoded><![CDATA[<p>バグ：親の要素のpositionがstaticの場合に、画面をリサイズに対応するのを忘れてました。時間見て対応します。</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より xoopsモジュールで、設定項目を追加する。 へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/258/comment-page-1#comment-34</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Tue, 08 Jun 2010 16:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.itassist.info/modules/blog/?p=258#comment-34</guid>
		<description>備忘録：
　登録した設定値はモジュール内で$xoopsModuleConfigという配列に自動でセットされます。</description>
		<content:encoded><![CDATA[<p>備忘録：<br />
　登録した設定値はモジュール内で$xoopsModuleConfigという配列に自動でセットされます。</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より jQueryで画像をマスクするプラグイン へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/211/comment-page-1#comment-33</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Mon, 08 Feb 2010 17:27:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=211#comment-33</guid>
		<description>どうも調子悪いと思ったら、jQueryのreadyだと、画像が読まれる前で、ずれることがあるみたい

画像がずれちゃうときは
jQuery.event.add(window, &quot;load&quot;, function(){})
を使ってonloadイベントにするとうまく行くことが有ります。</description>
		<content:encoded><![CDATA[<p>どうも調子悪いと思ったら、jQueryのreadyだと、画像が読まれる前で、ずれることがあるみたい</p>
<p>画像がずれちゃうときは<br />
jQuery.event.add(window, &#8220;load&#8221;, function(){})<br />
を使ってonloadイベントにするとうまく行くことが有ります。</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より GCalHolidays.jsをIEで利用した場合に「オブジェクトでサポートされていないプロパティまたはメソッドです。」 へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/184/comment-page-1#comment-32</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Wed, 24 Jun 2009 02:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=184#comment-32</guid>
		<description>もう一箇所ありました。

@@ -66,11 +66,15 @@

         //シンプルな器に移す
         for (var i in entries) {
-            var arr = entries[i].gd$when[0].startTime.split(&quot;-&quot;);
-            for (var j in arr) {
-                arr[j] *= 1;    //数値にする
+            if (parseInt(i).toString() != &quot;NaN&quot;) {
+                var arr = entries[i].gd$when[0].startTime.split(&quot;-&quot;);
+                for (var j in arr) {
+                    if (parseInt(j).toString() != &quot;NaN&quot;) {
+                        arr[j] *= 1;    //数値にする
+                    }
+                }
+                days[i] = {year: arr[0], month: arr[1], date: arr[2], title: entries[i].title.$t};
             }
-            days[i] = {year: arr[0], month: arr[1], date: arr[2], title: entries[i].title.$t};
         }
     }</description>
		<content:encoded><![CDATA[<p>もう一箇所ありました。</p>
<p>@@ -66,11 +66,15 @@</p>
<p>         //シンプルな器に移す<br />
         for (var i in entries) {<br />
-            var arr = entries[i].gd$when[0].startTime.split(&#8220;-&#8221;);<br />
-            for (var j in arr) {<br />
-                arr[j] *= 1;    //数値にする<br />
+            if (parseInt(i).toString() != &#8220;NaN&#8221;) {<br />
+                var arr = entries[i].gd$when[0].startTime.split(&#8220;-&#8221;);<br />
+                for (var j in arr) {<br />
+                    if (parseInt(j).toString() != &#8220;NaN&#8221;) {<br />
+                        arr[j] *= 1;    //数値にする<br />
+                    }<br />
+                }<br />
+                days[i] = {year: arr[0], month: arr[1], date: arr[2], title: entries[i].title.$t};<br />
             }<br />
-            days[i] = {year: arr[0], month: arr[1], date: arr[2], title: entries[i].title.$t};<br />
         }<br />
     }</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より sexylightbox2でiframe へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/178/comment-page-1#comment-31</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Sat, 13 Jun 2009 13:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=178#comment-31</guid>
		<description>っと、
http://f32.aaa.livedoor.jp/~azusa/exp3.php?f=include/ajax/mootools_plugin_imagegallery/sexy_lightbox2.inc&amp;ttl=Sexy+Lightbox2%E3%81%AE%E8%A8%AD%E7%BD%AE%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB
ここにもっとすばらしい、設置例が</description>
		<content:encoded><![CDATA[<p>っと、<br />
<a href="http://f32.aaa.livedoor.jp/~azusa/exp3.php?f=include/ajax/mootools_plugin_imagegallery/sexy_lightbox2.inc&#038;ttl=Sexy+Lightbox2%E3%81%AE%E8%A8%AD%E7%BD%AE%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB" rel="nofollow">http://f32.aaa.livedoor.jp/~azusa/exp3.php?f=include/ajax/mootools_plugin_imagegallery/sexy_lightbox2.inc&#038;ttl=Sexy+Lightbox2%E3%81%AE%E8%A8%AD%E7%BD%AE%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB</a><br />
ここにもっとすばらしい、設置例が</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より Bsheのライセンスとビジネスに対する考え方 へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/54/comment-page-1#comment-14</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Tue, 09 Jun 2009 11:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=54#comment-14</guid>
		<description>少しわかりにくい部分文章を追加しました。</description>
		<content:encoded><![CDATA[<p>少しわかりにくい部分文章を追加しました。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Bshe作者のブログ より Zend Frameworkでのindex.phpでのパスのセットなど へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/109/comment-page-1#comment-25</link>
		<dc:creator>Bshe作者のブログ</dc:creator>
		<pubDate>Tue, 02 Jun 2009 11:22:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=109#comment-25</guid>
		<description>&lt;strong&gt;Zend Frameworkでのindex.phpでのmoduleのパスのセット...&lt;/strong&gt;

Zend Frameworkでのindex.phpでのパスのセットなどでlibraryパスのセットを記載しましたが。

ZendFrameworkでは、コントローラーを呼び出す前に、モジュールのパスもセットする必要があります。

B...</description>
		<content:encoded><![CDATA[<p><strong>Zend Frameworkでのindex.phpでのmoduleのパスのセット&#8230;</strong></p>
<p>Zend Frameworkでのindex.phpでのパスのセットなどでlibraryパスのセットを記載しましたが。</p>
<p>ZendFrameworkでは、コントローラーを呼び出す前に、モジュールのパスもセットする必要があります。</p>
<p>B&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>abe より Hello Worldの作成（1） へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/76/comment-page-1#comment-23</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Sat, 02 May 2009 17:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=76#comment-23</guid>
		<description>ありがとうございます。
ドキュメントールとでなく
最後が「/」で終わる場合のバグのようです。
（http://169.254.0.9/~fileであれば表示されている）

修正バージョン作成しますのでしばらくご猶予ください。</description>
		<content:encoded><![CDATA[<p>ありがとうございます。<br />
ドキュメントールとでなく<br />
最後が「/」で終わる場合のバグのようです。<br />
（http://169.254.0.9/~fileであれば表示されている）</p>
<p>修正バージョン作成しますのでしばらくご猶予ください。</p>
]]></content:encoded>
	</item>
	<item>
		<title>serion より Hello Worldの作成（1） へのコメント</title>
		<link>http://www.itassist.info/modules/blog/archives/76/comment-page-1#comment-22</link>
		<dc:creator>serion</dc:creator>
		<pubDate>Sat, 02 May 2009 15:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bshe.org/modules/xpress2/?p=76#comment-22</guid>
		<description>早速Hello wordを試してみました。そこでもしかしたら
「あたりまえ」と言われてしまうかもしれない現象を発見しましたので
書いておきます。
デフォルトで読み込まれるファイル(通常はindex.htmlなどと思いますが）
_bshetemplate/index.htmlにhello wordを実装した所
ブラウザーから「http://169.254.0.9/~file/」（各自環境に読み替えてください）
これだと表示されません。これを

「http://169.254.0.9/~file/index.html」とすると表示されます。
そうなると、この機能をTOPページに実装するとユーザーによっては
表示されたりされなかったりするという現象が発生しそうなので
ご報告までにカキコしてみました。</description>
		<content:encoded><![CDATA[<p>早速Hello wordを試してみました。そこでもしかしたら<br />
「あたりまえ」と言われてしまうかもしれない現象を発見しましたので<br />
書いておきます。<br />
デフォルトで読み込まれるファイル(通常はindex.htmlなどと思いますが）<br />
_bshetemplate/index.htmlにhello wordを実装した所<br />
ブラウザーから「http://169.254.0.9/~file/」（各自環境に読み替えてください）<br />
これだと表示されません。これを</p>
<p>「http://169.254.0.9/~file/index.html」とすると表示されます。<br />
そうなると、この機能をTOPページに実装するとユーザーによっては<br />
表示されたりされなかったりするという現象が発生しそうなので<br />
ご報告までにカキコしてみました。</p>
]]></content:encoded>
	</item>
</channel>
</rss>

