<?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>@blog.justoneplanet.info &#187; ウェブサイト制作</title>
	<atom:link href="http://blog.justoneplanet.info/category/computer/website-work/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.justoneplanet.info</link>
	<description>JavaScript、PHP、MySQLを使ったり</description>
	<lastBuildDate>Sun, 25 Jul 2010 07:34:20 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Cookieを使って別サイトの閲覧履歴を取る</title>
		<link>http://blog.justoneplanet.info/2010/01/20/cookie%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6%e5%88%a5%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e9%96%b2%e8%a6%a7%e5%b1%a5%e6%ad%b4%e3%82%92%e5%8f%96%e3%82%8b/</link>
		<comments>http://blog.justoneplanet.info/2010/01/20/cookie%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6%e5%88%a5%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e9%96%b2%e8%a6%a7%e5%b1%a5%e6%ad%b4%e3%82%92%e5%8f%96%e3%82%8b/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/?p=2345</guid>
		<description><![CDATA[自社サイトを訪れたユーザが他サイトAを訪れたか調べたい。他サイトAに対してビーコンを貼れることを条件に、これが可能となる。
■他サイト側（http://sample.jp/index.html）
imgタグでビーコンを貼 [...]]]></description>
			<content:encoded><![CDATA[<p>自社サイトを訪れたユーザが他サイトAを訪れたか調べたい。他サイトAに対してビーコンを貼れることを条件に、これが可能となる。</p>
<h3>■他サイト側（http://sample.jp/index.html）</h3>
<p>imgタグでビーコンを貼り付けてあげれば良い。</p>
<pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;ドキュメント&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;&lt;img src=&quot;http://sample.org/spacer.php&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>■自社（サイト）ドメイン側実装</h3>
<p>他サイトに貼り付けたビーコンを準備してあげる。</p>
<h4>ビーコン用のイメージ（http://sample.org/spacer.php）</h4>
<p>クッキーをセットしたいのでphpで書く。</p>
<pre class="brush: php;">
&lt;?php
header('Content-Type: image/gif');
setcookie('sample', 'see');
print(file_get_contents('spacer.gif'));
</pre>
<h4>検証ページ（http://sample.org/index.php）</h4>
<p>このページを訪問したユーザが、他サイトAを訪問したか調べられる。</p>
<pre class="brush: php;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;検証ページ&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;?php
if($_COOKIE['sample'] === 'see'){
    print('&lt;p&gt;you have already seen http://sample.jp&lt;/p&gt;');
}
else{
    print('&lt;p&gt;Nice to meet you!&lt;/p&gt;');
}
?&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>基本的にはユーザの行動収集はこの原理で行う。iframeとJavaScriptを使用することで、さらに多くの情報を取得することができる。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2010/01/20/cookie%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6%e5%88%a5%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e9%96%b2%e8%a6%a7%e5%b1%a5%e6%ad%b4%e3%82%92%e5%8f%96%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>システム設計と開発の基本</title>
		<link>http://blog.justoneplanet.info/2009/08/28/%e3%82%b7%e3%82%b9%e3%83%86%e3%83%a0%e8%a8%ad%e8%a8%88%e3%81%a8%e9%96%8b%e7%99%ba%e3%81%ae%e5%9f%ba%e6%9c%ac/</link>
		<comments>http://blog.justoneplanet.info/2009/08/28/%e3%82%b7%e3%82%b9%e3%83%86%e3%83%a0%e8%a8%ad%e8%a8%88%e3%81%a8%e9%96%8b%e7%99%ba%e3%81%ae%e5%9f%ba%e6%9c%ac/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 14:05:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/?p=2001</guid>
		<description><![CDATA[■設計
チャンクダウン

何を作るのか
必要な機能を列挙
必要な画面を列挙
画面や機能のグループ化
グループ化したものをコントローラとして定義
コントローラで行うべき処理内容を列挙
列挙した処理内容からアクション（名）を [...]]]></description>
			<content:encoded><![CDATA[<h3>■設計</h3>
<h4>チャンクダウン</h4>
<ol>
<li>何を作るのか</li>
<li>必要な機能を列挙</li>
<li>必要な画面を列挙</li>
<li>画面や機能のグループ化</li>
<li>グループ化したものをコントローラとして定義</li>
<li>コントローラで行うべき処理内容を列挙</li>
<li>列挙した処理内容からアクション（名）を定義</li>
<li>データソースの設計</li>
</ol>
<div class="kakomi">
<h5>機能の列挙</h5>
<p>何をどうするのか箇条書きで軽く書き出す。</p>
<h5>画面の列挙</h5>
<table>
<tr>
<th>画面名</th>
<th>内容</th>
<th>構成画面</th>
</tr>
<tr>
<th>ランキング画面</th>
<td>人気の高い順に上から表示する</td>
<td>1画面のみ</td>
</tr>
<tr>
<th>ログイン画面</th>
<td>ログイン処理を行う</td>
<td>1画面のみ</td>
</tr>
</table>
<h5>画面や機能のグループ化</h5>
<table>
<tr>
<th>グループ</th>
<th>画面名（複数場面の場合）</th>
</tr>
<tr>
<th>閲覧系</th>
<td>ランキング画面</td>
</tr>
<tr>
<th>認証系</th>
<td>ログイン画面</td>
</tr>
</table>
<h5>コントローラの定義</h5>
<table>
<tr>
<th>コントローラ名</th>
<th>処理内容</th>
<th>担当画面</th>
</tr>
<tr>
<th>IndexController</th>
<td>登録されている情報を閲覧する処理</td>
<td>ランキング画面</td>
</tr>
<tr>
<th>AuthController</th>
<td>ログイン・ログアウトなどのユーザ権限の管理</td>
<td>ログイン画面</td>
</tr>
</table>
<h5>コントローラで行うべき処理内容を列挙</h5>
<p>箇条書きや上述の表に書き込んでも良いかもしれない。</p>
<h5>列挙した処理内容からアクション（名）を定義</h5>
<table>
<tr>
<th>コントローラ</th>
<th>担当処理</th>
<th>アクション名</th>
</tr>
<tr>
<th>IndexController</th>
<td>
<ul>
<li>閲覧回数の多い順に一覧を表示する</li>
<li>指定されたページにリダイレクトする</li>
</ul>
</td>
<td>
<ul>
<li>popularAction</li>
<li>redirectAction</li>
</ul>
</td>
</tr>
<tr>
<th>AuthController</th>
<td>
<ul>
<li>ログイン画面を表示する</li>
<li>ユーザ認証をする</li>
<li>ログアウト処理をする</li>
</ul>
</td>
<td>
<ul>
<li>loginAction</li>
<li>authAction</li>
<li>logoutAction</li>
</ul>
</td>
</tr>
</table>
</div>
<h3>■開発</h3>
<ol>
<li>画面レイアウトの作成</li>
<li>モデルの処理をコーディング</li>
<li>全体にかかわる内容の定義</li>
<li>個々のコントローラやアクションをコーディング</li>
</ol>
<h4>モデル</h4>
<ul>
<li>コントローラのリクエストをデータソースから取得して渡す</li>
<li>コントローラから渡されたデータをデータソースに登録・更新する</li>
<li>データソースの状態をチェックしてコントローラに渡す</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2009/08/28/%e3%82%b7%e3%82%b9%e3%83%86%e3%83%a0%e8%a8%ad%e8%a8%88%e3%81%a8%e9%96%8b%e7%99%ba%e3%81%ae%e5%9f%ba%e6%9c%ac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>オープンソースCMSを導入する</title>
		<link>http://blog.justoneplanet.info/2009/07/08/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9cms%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%99%e3%82%8b/</link>
		<comments>http://blog.justoneplanet.info/2009/07/08/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9cms%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 09:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/?p=1584</guid>
		<description><![CDATA[選定は非常に難しいので様々な情報を参考に慎重に行う。
http://web-tan.forum.impressrd.jp/e/2008/07/04/3283
]]></description>
			<content:encoded><![CDATA[<p>選定は非常に難しいので様々な情報を参考に慎重に行う。</p>
<p><a href="http://web-tan.forum.impressrd.jp/e/2008/07/04/3283">http://web-tan.forum.impressrd.jp/e/2008/07/04/3283</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2009/07/08/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9cms%e3%82%92%e5%b0%8e%e5%85%a5%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaverのショートカットキー</title>
		<link>http://blog.justoneplanet.info/2009/03/31/dreamweaver%e3%81%ae%e3%82%b7%e3%83%a7%e3%83%bc%e3%83%88%e3%82%ab%e3%83%83%e3%83%88%e3%82%ad%e3%83%bc/</link>
		<comments>http://blog.justoneplanet.info/2009/03/31/dreamweaver%e3%81%ae%e3%82%b7%e3%83%a7%e3%83%bc%e3%83%88%e3%82%ab%e3%83%83%e3%83%88%e3%82%ad%e3%83%bc/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 06:20:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/?p=423</guid>
		<description><![CDATA[■pタグで選択テキストを括るには
ctrl + shift + [p]
■h1～h6で選択テキストを括るには
ctrl + [1～6]
作業がガシガシ速くなる！
■ショートカットキーをカスタマイズしたいときは


ウィン [...]]]></description>
			<content:encoded><![CDATA[<h3>■pタグで選択テキストを括るには</h3>
<p>ctrl + shift + [p]</p>
<h3>■h1～h6で選択テキストを括るには</h3>
<p>ctrl + [1～6]</p>
<p>作業がガシガシ速くなる！</p>
<h3>■ショートカットキーをカスタマイズしたいときは</h3>
<p><a href="http://blog.justoneplanet.info/wp-content/uploads/2009/03/cap1.png" rel="lightbox[423]"><img src="http://blog.justoneplanet.info/wp-content/uploads/2009/03/cap1-300x249.png" alt="スニペットの設定画面" title="スニペットの設定画面" width="300" height="249" class="alignnone size-medium wp-image-920" /></a>
<ol>
<li>ウィンドウ　＞　スニペット　＞　</li>
<li>右側に小窓が出るので、スニペットのフォルダの小窓で右クリック</li>
<li>「新規スニペット」を選択</li>
<li>上のような画面が出るので、スニペットに分かりやすい「名前」をつける</li>
<li>ラジオボタンで「選択範囲を囲む」or「ブロックの挿入」を選択する</li>
</ol>
<h4>ショートカットキーの設定</h4>
<p><a href="http://blog.justoneplanet.info/wp-content/uploads/2009/03/cap021.png" rel="lightbox[423]"><img src="http://blog.justoneplanet.info/wp-content/uploads/2009/03/cap021-300x243.png" alt="ショートカットキーの設定画面" title="ショートカットキーの設定画面" width="300" height="243" class="alignnone size-medium wp-image-923" /></a></p>
<ol>
<li>ウィンドウ　＞　スニペット　＞　</li>
<li>右側に小窓が出るので、スニペットのフォルダの小窓で右クリック</li>
<li>「キーボードショートカットの編集」を選択</li>
<li>そうすると上のような画面が表示される</li>
<li>右側のボタンの一番左に「セットの複製」をクリック（元の設定に戻せるようにするため）</li>
<li>「コマンド」欄では「スニペット」を選択</li>
<li>上述で作った「新規スニペット」を選択</li>
<li>「キー」の欄をクリックし、（希望する）任意の（ショートカット）キーをキーボードでタイプ</li>
<li>既存のショートカットキーと重複してなければ、そのまま「OK」を押す</li>
<li>設定完了</li>
</ol>
<p>※CS3オリジナルのもあるかもしれません。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2009/03/31/dreamweaver%e3%81%ae%e3%82%b7%e3%83%a7%e3%83%bc%e3%83%88%e3%82%ab%e3%83%83%e3%83%88%e3%82%ad%e3%83%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOSにPHPmotionをインストールしよう</title>
		<link>http://blog.justoneplanet.info/2008/11/12/centos%e3%81%abphpmotion%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%82%88%e3%81%86/</link>
		<comments>http://blog.justoneplanet.info/2008/11/12/centos%e3%81%abphpmotion%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%82%88%e3%81%86/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 05:11:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/2008/11/12/centos%e3%81%abphpmotion%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%82%88%e3%81%86/</guid>
		<description><![CDATA[PHPmotionとはオープンソース動画投稿サイト構築システム。
■前提条件

「yum」が使える事。そして「ffmpeg」をインストールしている人

まだの人は前回の記事を参考にインストール！
別に使えなくてもインスト [...]]]></description>
			<content:encoded><![CDATA[<p>PHPmotionとはオープンソース動画投稿サイト構築システム。</p>
<h4>■前提条件</h4>
<ul>
<li>「yum」が使える事。そして「ffmpeg」をインストールしている人</li>
</ul>
<p>まだの人は<a href="/2008/11/12/centos%E3%81%ABffmpeg%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%97%E3%82%88%E3%81%86/">前回の記事を参考に</a>インストール！</p>
<p>別に使えなくてもインストールはできると思いますが、すごく大変だと思います。</p>
<h4>■前準備</h4>
<p>「flvtool2」と「mencoder」をインストールしよう！</p>
<h5>実行コマンド</h5>
<pre class="brush: bash;">
yum --enablerepo=rpmforge install flvtool2
</pre>
<pre class="brush: bash;">
yum --enablerepo=rpmforge install mencoder
</pre>
<h5>さらにphpSHIELDをインストール</h5>
<ul>
<li><a href="http://www.phpshield.com/loaders/">ソースのダウンロード</a></li>
<li>適切なディレクトリ（phpのextensionディレクトリ）に解凍</li>
</ul>
<pre class="brush: bash;">
cd /etc/php.d
</pre>
<pre class="brush: bash;">
cp mbstring.ini phpshield.ini
</pre>
<pre class="brush: bash;">
vi phpshield.ini
</pre>
<p>で以下のように変更</p>
<pre class="brush: bash;">
; Enable ffmpeg extension module
extension=phpshield.5.1.lin
</pre>
<pre class="brush: bash;">
/etc/rc.d/init.d/httpd reload
</pre>
<h4>■PHPmotionのインストール</h4>
<ol>
<li><a href="http://phpmotion.com/content/view/1/180/">ソースをダウンロードする</a></li>
<li>任意のディレクトリに展開</li>
<li>setup/に直接アクセス！</li>
</ol>
<p>あとはまぁ、流れに沿って進めてください。初期の管理ID/PASSは「admin/admin」です。</p>
<h4>■追記</h4>
<p>実は先日、PHPをバージョンアップしたら<strong>phpSHIELDが上手く読み込めなく</strong>なってしまいました。あれこれ迷ったあげく</p>
<pre class="brush: bash;">
; Enable ffmpeg extension module
extension=phpshield.5.1.lin
</pre>
<p>を</p>
<pre class="brush: bash;">
; Enable ffmpeg extension module
extension=phpshield.5.2.lin
</pre>
<p>と記述しなおしたら動くようになりました！</p>
<p>PHPのバージョンが5.1系なのか5.2系なのか、という事ですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2008/11/12/centos%e3%81%abphpmotion%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%82%88%e3%81%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_rewrite.c（リライトする）</title>
		<link>http://blog.justoneplanet.info/2008/09/28/mod_rewrite-c%ef%bc%88%e3%83%aa%e3%83%a9%e3%82%a4%e3%83%88%e3%81%99%e3%82%8b%ef%bc%89/</link>
		<comments>http://blog.justoneplanet.info/2008/09/28/mod_rewrite-c%ef%bc%88%e3%83%aa%e3%83%a9%e3%82%a4%e3%83%88%e3%81%99%e3%82%8b%ef%bc%89/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 08:40:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/?p=1978</guid>
		<description><![CDATA[以下のように.htaccessファイルに記述するとURL（URI）をリライトできる。

&#60;IfModule mod_rewrite.c&#62;
RewriteEngine on
RewriteBase /
Rewr [...]]]></description>
			<content:encoded><![CDATA[<p>以下のように.htaccessファイルに記述するとURL（URI）をリライトできる。</p>
<pre class="brush: bash;">
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine on
RewriteBase /
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
&lt;/IfModule&gt;
</pre>
<p>以下のように書いてしまうと、サーバにmod_rewrite.cが入ってなかったときエラー（500）となる。</p>
<pre class="brush: bash;">
RewriteEngine on
RewriteBase /
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2008/09/28/mod_rewrite-c%ef%bc%88%e3%83%aa%e3%83%a9%e3%82%a4%e3%83%88%e3%81%99%e3%82%8b%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>レンタルサーバーを選ぶポイントとは？</title>
		<link>http://blog.justoneplanet.info/2008/08/24/%e3%83%ac%e3%83%b3%e3%82%bf%e3%83%ab%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e3%82%92%e9%81%b8%e3%81%b6%e3%83%9d%e3%82%a4%e3%83%b3%e3%83%88%e3%81%a8%e3%81%af%ef%bc%9f/</link>
		<comments>http://blog.justoneplanet.info/2008/08/24/%e3%83%ac%e3%83%b3%e3%82%bf%e3%83%ab%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e3%82%92%e9%81%b8%e3%81%b6%e3%83%9d%e3%82%a4%e3%83%b3%e3%83%88%e3%81%a8%e3%81%af%ef%bc%9f/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 05:29:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://justoneplanet.sakura.ne.jp/wordpress/2008/08/24/%e3%83%ac%e3%83%b3%e3%82%bf%e3%83%ab%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e3%82%92%e9%81%b8%e3%81%bc%e3%81%86/</guid>
		<description><![CDATA[ということでポイントをまとめてみました。意外とイッパイあるんですねー。表には空欄が2つありますが移転時の比較用に用意しました。
下記の表をエクセル形式でダウンロードする









新規サーバー選び




OSの [...]]]></description>
			<content:encoded><![CDATA[<p>ということでポイントをまとめてみました。意外とイッパイあるんですねー。表には空欄が2つありますが移転時の比較用に用意しました。</p>
<p><a href="/wp-content/uploads/2008/08/server.xls">下記の表をエクセル形式でダウンロードする</a></p>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">新規サーバー選び</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="4" width="150">OSの種類とバージョン</th>
<td>OSの種類</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>OSのバージョン</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>ライセンス付与形態</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>OSのサポート期間</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="3" width="150">サーバーハードウェアスペック</th>
<td>CPU、メモリー、ディスク容量</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>RAID、データバックアップオプション</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>リモートコンソール</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">ウェブ </th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">HTTPサーバーの種類とバージョン</th>
<td>HTTPサーバーの種類</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>HTTPサーバーのバージョン</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="6">CGI利用の可否</th>
<td>利用可能なスクリプト言語とバージョン</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>CGIの設置場所の制限</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>suEXECへの対応（Apache）</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>PHP、Perl、Rubyなどのパス</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>PHPはモジュール版か、CGI版か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>CPANでの、どのバージョンか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="3">.htaccessによる制御の可否</th>
<td>.htaccessが利用できるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>.htaccessの必要な機能が新サーバーで利用できるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>パスワードファイル「.htpasswd」へのパスはどこか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th>.htpasswdにユーザーを追加できるか</th>
<td>.htpasswd用のパスワード生成ツールは用意されているか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="6">データベースの種類とバージョン</th>
<td>データベースの種類</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>データベースのバージョン</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>データベース容量の制限</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>作成可能なデータベース数、テーブル数、レコード数</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>データベース用管理ツールの有無</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>新旧両サーバーの文字コード</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="3">アクセス解析は利用可能か</th>
<td>アクセス解析ツールの提供の有無</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>HTTPサーバーの生アクセスログ取得の可否と保存期間</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>トラブルシューティングのための、HTTPエラーログの閲覧</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th>Jcode.pmやjcode.pl、nkfは使えるか</th>
<td>Jcode.pmやjcode.pl、nkfは使えるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="7">SSLサーバー証明書の利用の可否</th>
<td>SSLサーバー証明書利用の可否</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>共用SSLか、独自ドメイン名SSLか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>構築可能なSSLサイトの数（グローバルIPアドレスの数）</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>旧サーバーからの証明書の持ち出し</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>新サーバーへの証明書持ち込み</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>証明書の受け渡し方法</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>証明書が無効になる場合</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">メール</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="3">作成可能なメールアドレス数</th>
<td>運用中のメールアドレスをすべて移行できるだけの数が使えるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>代表メールアドレスは利用可能か、その上限数はいくつか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>メール関連の用語は確認しよう</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="3" height="125">既存アドレスはすべて利用可能か</th>
<td>メールアドレスでの、1文字ユーザー名は利用可能か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>「.」や「-」などの記号が利用可能か、先頭や末尾にも利用可能か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>予約済みで使用できないメールアドレスはあるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">メールの容量制限</th>
<td>メール1通あたりのサイズ制限</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>メールアドレス1つあたりの容量制限</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">メーリングリストやメルマガの発行は可能か</th>
<td>個数&times;メンバー数</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>送信回数やメールでの転送量の制限</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">対応するメールプロトコル</th>
<td>対応するセキュアーなメールプロトコル</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>モバイル環境から読み書きするか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">迷惑メール送信の対策はとられているか</th>
<td>迷惑メール送信の対策はとられているか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>送信ドメイン認証に対応しているか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2" height="83">旧サーバーに保存されているメールをどうするか</th>
<td>旧サーバー上に保存されているメールを新サーバーに移行可能か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>旧サーバー上に保存しているメールの扱いの周知徹底</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th>メールサーバーの移行</th>
<td>旧メールサーバーが止まるまでの措置</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">ネットワーク・DNS・ドメイン名</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="3" height="66">回線タイプを選ぶ</th>
<td>10Mbps ／ 100Mbps</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>共有回線／専有回線</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>帯域保証は必要か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">転送量制限と課金タイプ</th>
<td>課金タイプはどうなっているか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>転送量制限の有無と超過時の料金</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="3" height="66">引越しを機にレジストラを変更する</th>
<td>移管するドメイン名はJPかｇTLDか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>現在利用中のレジストラに連絡</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>新しいレジストラに移管を申請</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="4" height="107">DNSの設定変更</th>
<td>現在設定されているホスト名一覧を控える</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>旧DNSサーバーのTTLを事前に短縮</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Nsレコードの最終的な変更者は誰か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>社内に別のDNSサーバーがないか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">管理</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">管理者権限付与の有無</th>
<td>管理者権限付与の有無</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>管理者権限は何のために必要か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th height="66" rowspan="3">サーバー管理ツールの種類</th>
<td>提供される管理ツールの種類</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>サーバー移転支援機能はあるか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>管理ツールのライセンス数と料金</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th>管理ツールの権限分割は可能か</th>
<td>管理ツールは権限分割が可能か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th height="42">ウェブマスター用のFTPアカウントが発行できるか</th>
<td>複数のFTPアカウント発行（サイト管理者機能の追加）</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2" height="64">パッチはいつ、誰が適用するか</th>
<td>パッチの適用は誰が行うか</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>共用の場合アナウンスの有無、タイミング、方法</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th height="42">PHPやPerl、Rubyなどのアップデートはいつ行われるか</th>
<td>共通モジュールのアップデートタイミング</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0">
<colgroup>
<col width="257" />
<col width="255" />
<col width="86" />
<col width="86" />
</colgroup>
<thead style="color:white;">
<tr>
<th colspan="4" width="683" bgcolor="#0000FF">契約・サポート</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">新規サーバーの契約</th>
<td>支払い方法</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>最短契約期間</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="2">旧サーバーの解約手続き</th>
<td>申請書到着後の解約日は何日か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>解約の事前通知期間は何日前か</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th>解約時に残っているデータの扱い</th>
<td>解約時に残っているデータの扱い</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<th rowspan="4">サポート体制のチェック</th>
<td>サポート窓口へのコンタクト方法</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>障害情報ページの有無</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>緊急時の連絡方法やサポート範囲</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>24時間サポートの要／不要</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2008/08/24/%e3%83%ac%e3%83%b3%e3%82%bf%e3%83%ab%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e3%82%92%e9%81%b8%e3%81%b6%e3%83%9d%e3%82%a4%e3%83%b3%e3%83%88%e3%81%a8%e3%81%af%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoogleAnalyticsで携帯のアクセス数はカウント（計上）できるのか？</title>
		<link>http://blog.justoneplanet.info/2008/05/27/googleanalytics%e3%81%a7%e6%90%ba%e5%b8%af%e3%81%ae%e3%82%a2%e3%82%af%e3%82%bb%e3%82%b9%e6%95%b0%e3%81%af%e3%82%ab%e3%82%a6%e3%83%b3%e3%83%88%ef%bc%88%e8%a8%88%e4%b8%8a%ef%bc%89%e3%81%a7%e3%81%8d/</link>
		<comments>http://blog.justoneplanet.info/2008/05/27/googleanalytics%e3%81%a7%e6%90%ba%e5%b8%af%e3%81%ae%e3%82%a2%e3%82%af%e3%82%bb%e3%82%b9%e6%95%b0%e3%81%af%e3%82%ab%e3%82%a6%e3%83%b3%e3%83%88%ef%bc%88%e8%a8%88%e4%b8%8a%ef%bc%89%e3%81%a7%e3%81%8d/#comments</comments>
		<pubDate>Mon, 26 May 2008 15:05:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://blog.justoneplanet.info/2008/05/27/googleanalytics%e3%81%a7%e6%90%ba%e5%b8%af%e3%81%ae%e3%82%a2%e3%82%af%e3%82%bb%e3%82%b9%e6%95%b0%e3%81%af%e3%82%ab%e3%82%a6%e3%83%b3%e3%83%88%ef%bc%88%e8%a8%88%e4%b8%8a%ef%bc%89%e3%81%a7%e3%81%8d/</guid>
		<description><![CDATA[■結論
出来る。
これがAnalyticsのキャプチャー画面。
■方法
Analyticsでは通常http://www.google-analytics.com/__utm.gifのファイルに（クライアント情報を記録した [...]]]></description>
			<content:encoded><![CDATA[<h3>■結論</h3>
<p>出来る。</p>
<p>これがAnalyticsのキャプチャー画面。<a href="http://blog.justoneplanet.info/wp-content/uploads/2008/05/data.png" rel="lightbox[121]"><img src="http://blog.justoneplanet.info/wp-content/uploads/2008/05/data-150x150.png" alt="data.png" /></a></p>
<h3>■方法</h3>
<p>Analyticsでは通常http://www.google-analytics.com/__utm.gifのファイルに（クライアント情報を記録した）クエリをつけたリクエストをJavaScriptで行っている。このimgをベタでHTMLファイルに記述すればJavaScriptが実行できない携帯端末でもgifファイルをリクエストし、Analyticsに計上される。</p>
<h3>■ソース</h3>
<pre class="brush: xml;">
&lt;script type=&quot;text/javascript&quot;&gt;
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E&quot;));
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
try{
    //this is your id
    var pageTracker = _gat._getTracker(&quot;UA-123756-7&quot;);
    pageTracker._trackPageview();
}
catch(err){}
&lt;/script&gt;
&lt;noscript&gt;
&lt;img src=&quot;http://www.google-analytics.com/__utm.gif?utmul=noscript&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;
&lt;/noscript&gt;
</pre>
<h3>■注意</h3>
<p>自己責任でお試しください。</p>
<p>アイデア提供元（<a href="http://code.nanigac.com/forum/view/273">codeなにがし</a>）</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2008/05/27/googleanalytics%e3%81%a7%e6%90%ba%e5%b8%af%e3%81%ae%e3%82%a2%e3%82%af%e3%82%bb%e3%82%b9%e6%95%b0%e3%81%af%e3%82%ab%e3%82%a6%e3%83%b3%e3%83%88%ef%bc%88%e8%a8%88%e4%b8%8a%ef%bc%89%e3%81%a7%e3%81%8d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ウェブサイトの主目的</title>
		<link>http://blog.justoneplanet.info/2008/04/08/%e3%82%a6%e3%82%a7%e3%83%96%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e4%b8%bb%e7%9b%ae%e7%9a%84/</link>
		<comments>http://blog.justoneplanet.info/2008/04/08/%e3%82%a6%e3%82%a7%e3%83%96%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e4%b8%bb%e7%9b%ae%e7%9a%84/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 10:58:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://justoneplanet.sakura.ne.jp/wordpress/2008/04/08/%e3%82%a6%e3%82%a7%e3%83%96%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e4%b8%bb%e7%9b%ae%e7%9a%84/</guid>
		<description><![CDATA[■結論
ユーザーのニーズ
■間違い
クライアント側

上司へのゴマすりとしてのWebサイト
他部署への恩着せとしてのWebサイト
自部署での自己満足としてのWebサイト

制作者側

過度な演出（Flash、DHTML） [...]]]></description>
			<content:encoded><![CDATA[<h4>■結論</h4>
<p>ユーザーのニーズ</p>
<h4>■間違い</h4>
<h5>クライアント側</h5>
<ul>
<li>上司へのゴマすりとしてのWebサイト</li>
<li>他部署への恩着せとしてのWebサイト</li>
<li>自部署での自己満足としてのWebサイト</li>
</ul>
<h5>制作者側</h5>
<ul>
<li>過度な演出（Flash、DHTML）</li>
<li>過度な技術の挿入（Ajaxなど）</li>
</ul>
<h4>■おまけ</h4>
<p>ユーザーのニーズというのは、「お客様は神様」のごとく、ペコペコするのとは違う。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2008/04/08/%e3%82%a6%e3%82%a7%e3%83%96%e3%82%b5%e3%82%a4%e3%83%88%e3%81%ae%e4%b8%bb%e7%9b%ae%e7%9a%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>アドビ、「Photoshop」をウェブアプリ化へ–無償版として提供予定</title>
		<link>http://blog.justoneplanet.info/2007/08/01/%e3%82%a2%e3%83%89%e3%83%93%e3%80%81%e3%80%8cphotoshop%e3%80%8d%e3%82%92%e3%82%a6%e3%82%a7%e3%83%96%e3%82%a2%e3%83%97%e3%83%aa%e5%8c%96%e3%81%b8-%e7%84%a1%e5%84%9f%e7%89%88%e3%81%a8%e3%81%97%e3%81%a6/</link>
		<comments>http://blog.justoneplanet.info/2007/08/01/%e3%82%a2%e3%83%89%e3%83%93%e3%80%81%e3%80%8cphotoshop%e3%80%8d%e3%82%92%e3%82%a6%e3%82%a7%e3%83%96%e3%82%a2%e3%83%97%e3%83%aa%e5%8c%96%e3%81%b8-%e7%84%a1%e5%84%9f%e7%89%88%e3%81%a8%e3%81%97%e3%81%a6/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 03:03:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://justoneplanet.sakura.ne.jp/wordpress/2007/08/01/%e3%82%a2%e3%83%89%e3%83%93%e3%80%81%e3%80%8cphotoshop%e3%80%8d%e3%82%92%e3%82%a6%e3%82%a7%e3%83%96%e3%82%a2%e3%83%97%e3%83%aa%e5%8c%96%e3%81%b8-%e7%84%a1%e5%84%9f%e7%89%88%e3%81%a8%e3%81%97%e3%81%a6/</guid>
		<description><![CDATA[Adobeが、Googleなどの競合各社を追従すべく、画像編集アプリケーションソフト「Photoshop」のウェブアプリ版を6カ月以内にリリースする計画を進めているらしい。が米国時間2月27日に明らかにした。
広告入りの [...]]]></description>
			<content:encoded><![CDATA[<p>Adobeが、Googleなどの競合各社を追従すべく、画像編集アプリケーションソフト「Photoshop」のウェブアプリ版を6カ月以内にリリースする計画を進めているらしい。が米国時間2月27日に明らかにした。</p>
<p>広告入りのオンラインサービスで既存製品を補完、シェア拡大を目指す大規模な措置の一環だって。</p>
<p>しかし、タダで何でも出来る時代がますます現実のものとなる一方、広告費がこれを支えているのであり、既存のメディアにも変化が要求されるのであろうか…</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2007/08/01/%e3%82%a2%e3%83%89%e3%83%93%e3%80%81%e3%80%8cphotoshop%e3%80%8d%e3%82%92%e3%82%a6%e3%82%a7%e3%83%96%e3%82%a2%e3%83%97%e3%83%aa%e5%8c%96%e3%81%b8-%e7%84%a1%e5%84%9f%e7%89%88%e3%81%a8%e3%81%97%e3%81%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pingサーバー一覧（Blog-SEO対策必須）全43個所</title>
		<link>http://blog.justoneplanet.info/2007/07/19/ping%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e4%b8%80%e8%a6%a7%ef%bc%88blog-seo%e5%af%be%e7%ad%96%e5%bf%85%e9%a0%88%ef%bc%89%e5%85%a843%e5%80%8b%e6%89%80/</link>
		<comments>http://blog.justoneplanet.info/2007/07/19/ping%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e4%b8%80%e8%a6%a7%ef%bc%88blog-seo%e5%af%be%e7%ad%96%e5%bf%85%e9%a0%88%ef%bc%89%e5%85%a843%e5%80%8b%e6%89%80/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 04:51:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ウェブサイト制作]]></category>

		<guid isPermaLink="false">http://justoneplanet.sakura.ne.jp/wordpress/2007/07/19/ping%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e4%b8%80%e8%a6%a7%ef%bc%88blog-seo%e5%af%be%e7%ad%96%e5%bf%85%e9%a0%88%ef%bc%89%e5%85%a843%e5%80%8b%e6%89%80/</guid>
		<description><![CDATA[http://rpc.pingomatic.com/ http://rpc.technorati.jp/rpc/ping http://rpc.reader.livedoor.com/ping http://ping.rss.drecom.jp/ http://ping.ask.jp/xmlrpc.m http://api.my.yahoo.co.jp/rss/ping?u=ブログのRSSURL http://ping.fc2.com http://ping.namaan.net/rpc/ http://www.blogpeople.net/servlet/weblogUpdates http://bulkfeeds.net/rpc http://blog.goo.ne.jp/XMLRPC http://ping.cocolog-nifty.com/xmlrpc http://ping.blogmura.jp/rpc/ http://ping.amagle.com/ http://ping.gpost.info/xmlrpc http://blogstyle.jp/xmlrpc/ http://jugem.jp/?mode=NEWENTRY http://www.blogoole.com/ping/ http://www.blogoon.net/ping/ http://blogdb.jp/xmlrpc http://coreblog.org/ping/ http://blog.with2.net/ping.php/ http://blog-search.net/up.php http://ping.bloggers.jp/rpc/ http://ping.myblog.jp http://ping.exblog.jp/xmlrpc http://api.my.yahoo.com/RPC2 http://ping.blo.gs/ http://ping.rootblog.com/rpc.php http://rpc.technorati.com/rpc/ping http://rpc.weblogs.com/RPC2 http://rpc.blogrolling.com/pinger/ http://rpc.atblogs.com/ http://rpc.bloghackers.net/newsoku http://rpc.weblogs.com/ http://serennz.cool.ne.jp/sblog/rep http://tb.threetree.jp/ http://bitacoras.net/ping/ http://ping.weblogs.se/ http://xmlrpc.blogg.de/ http://ping.weblogalot.com/rpc.php http://serennz.cool.ne.jp/sblog/rep.cgi http://www.weblogues.com/RPC/ 重複チェックしましたが間違ってたらゴメンナサイ。。。]]></description>
			<content:encoded><![CDATA[<ul>
<li>http://rpc.pingomatic.com/</li>
<li>http://rpc.technorati.jp/rpc/ping</li>
<li>http://rpc.reader.livedoor.com/ping</li>
<li>http://ping.rss.drecom.jp/</li>
<li>http://ping.ask.jp/xmlrpc.m</li>
<li>http://api.my.yahoo.co.jp/rss/ping?u=ブログのRSSURL</li>
<li>http://ping.fc2.com</li>
<li>http://ping.namaan.net/rpc/</li>
<li>http://www.blogpeople.net/servlet/weblogUpdates</li>
<li>http://bulkfeeds.net/rpc</li>
<li>http://blog.goo.ne.jp/XMLRPC</li>
<li>http://ping.cocolog-nifty.com/xmlrpc</li>
<li>http://ping.blogmura.jp/rpc/</li>
<li>http://ping.amagle.com/</li>
<li>http://ping.gpost.info/xmlrpc</li>
<li>http://blogstyle.jp/xmlrpc/</li>
<li>http://jugem.jp/?mode=NEWENTRY</li>
<li>http://www.blogoole.com/ping/</li>
<li>http://www.blogoon.net/ping/</li>
<li>http://blogdb.jp/xmlrpc</li>
<li>http://coreblog.org/ping/</li>
<li>http://blog.with2.net/ping.php/</li>
<li>http://blog-search.net/up.php</li>
<li>http://ping.bloggers.jp/rpc/</li>
<li>http://ping.myblog.jp</li>
<li>http://ping.exblog.jp/xmlrpc</li>
<li>http://api.my.yahoo.com/RPC2</li>
<li>http://ping.blo.gs/</li>
<li>http://ping.rootblog.com/rpc.php</li>
<li>http://rpc.technorati.com/rpc/ping</li>
<li>http://rpc.weblogs.com/RPC2</li>
<li>http://rpc.blogrolling.com/pinger/</li>
<li>http://rpc.atblogs.com/</li>
<li>http://rpc.bloghackers.net/newsoku</li>
<li>http://rpc.weblogs.com/</li>
<li>http://serennz.cool.ne.jp/sblog/rep</li>
<li>http://tb.threetree.jp/</li>
<li>http://bitacoras.net/ping/</li>
<li>http://ping.weblogs.se/</li>
<li>http://xmlrpc.blogg.de/</li>
<li>http://ping.weblogalot.com/rpc.php</li>
<li>http://serennz.cool.ne.jp/sblog/rep.cgi</li>
<li>http://www.weblogues.com/RPC/</li>
</ul>
<p>重複チェックしましたが間違ってたらゴメンナサイ。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.justoneplanet.info/2007/07/19/ping%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc%e4%b8%80%e8%a6%a7%ef%bc%88blog-seo%e5%af%be%e7%ad%96%e5%bf%85%e9%a0%88%ef%bc%89%e5%85%a843%e5%80%8b%e6%89%80/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
