<?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>おじさんの備忘録-番外編- &#187; カスタマイズ</title>
	<atom:link href="http://www.dxcode.com/archives/tag/%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%9e%e3%82%a4%e3%82%ba/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dxcode.com</link>
	<description>個人的なメモ書き</description>
	<lastBuildDate>Fri, 13 Jan 2012 23:57:25 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>WordPress 3.3 にアップグレード</title>
		<link>http://www.dxcode.com/archives/2011/12301830.html</link>
		<comments>http://www.dxcode.com/archives/2011/12301830.html#comments</comments>
		<pubDate>Fri, 30 Dec 2011 05:33:28 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[アップデート]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=1830</guid>
		<description><![CDATA[先日リリースされていたWordPress 3.3 にアップグレードしてみた。 色々と改善されているみたいだが主に管理画面の修正や改善が多いのかな？ 何かすっきりしたなーと眺めていたら記事を書く画面の上部にAddQuick [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dxcode.com/wp-content/uploads/2011/12/buttonw-grey.png" class="highslide" onclick="return hs.expand(this)"><img class="alignright size-full wp-image-1831" title="buttonw-grey" src="http://www.dxcode.com/wp-content/uploads/2011/12/buttonw-grey.png" alt="" width="178" height="58" /></a><br />
先日リリースされていたWordPress 3.3 にアップグレードしてみた。<br />
色々と改善されているみたいだが主に管理画面の修正や改善が多いのかな？<br style="clear:both;" /></p>
<p>何かすっきりしたなーと眺めていたら記事を書く画面の上部にAddQuicktagというプラグインでタグを結構追加していたのだが表示されていない。<br />
おそらく検索すれば解決策もすぐ見つかると思うのでボチボチと対策していく予定。</p>
<p>ハイライト（WordPress Codex 日本語版より転載）</p>
<blockquote><p>新メディアアップローダー（Plupload ライブラリを使用）<br />
インストール時とアップデート後に一度だけウェルカムスクリーンを表示<br />
管理画面の表示を異なるスクリーンサイズに合わせて動的に変更<br />
ツールバー（旧称「管理バー」）の改善<br />
メタデータ API の改善<br />
設定 API の改善<br />
エディタ API の改善<br />
コア・プラグイン・テーマに対してランゲージ・パックを実行<br />
パフォーマンスの向上<br />
ほぼすべての管理画面の CSS ファイルを統合<br />
ヘルプ・スクリーン設定を改善 </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2011/12301830.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp.vicune 画像の回り込み処理</title>
		<link>http://www.dxcode.com/archives/2011/03161346.html</link>
		<comments>http://www.dxcode.com/archives/2011/03161346.html#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:05:49 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[テーマ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=1346</guid>
		<description><![CDATA[WordPressを3.1にアップした際に画像のアップロードに使用していたプラグインFlexible Uploadを停止したため、標準のアップロード機能で添付した画像の回り込み処理が機能していなかった。 その都度&#60; [...]]]></description>
			<content:encoded><![CDATA[<p>WordPressを3.1にアップした際に画像のアップロードに使用していたプラグインFlexible Uploadを停止したため、標準のアップロード機能で添付した画像の回り込み処理が機能していなかった。</p>
<p>その都度&lt;br style=&#8221;clear:both;&#8221; /&gt;を入れていたが、下記コードをcssに追加する事で問題解決。<br />
使用しているテーマはwpVicuna Ext.1.58なので1-subSkin.cssに追加。</p>
<pre>/*--------------------------------------
画像回り込み処理
---------------------------------------*/
.aligncenter {
display: block;
clear: both;
margin: 1em auto 1.5em;
}
.alignleft {
float: left;
clear: both;
margin: 1em 1.5em 1.5em 1em;
}
.alignright {
float: right;
clear: both;
margin: 1em 1em 1.5em 1.5em;
}
h2, hr {
clear: both;
}</pre>
<p>参考サイト »» <a title="[ WordPress ] 画像の回り込み用 CSS を書いてみた | Bowz::Notebook" href="http://bowz.info/2015">[ WordPress ] 画像の回り込み用 CSS を書いてみた</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2011/03161346.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows7 ショートカットアイコンの矢印を消す</title>
		<link>http://www.dxcode.com/archives/2010/02151209.html</link>
		<comments>http://www.dxcode.com/archives/2010/02151209.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 08:40:31 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows7]]></category>
		<category><![CDATA[カスタマイズ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=1209</guid>
		<description><![CDATA[Windows7の環境には慣れたもののデスクトップに表示しているショートカットアイコンの矢印の大きさだけはいつまでたっても慣れそうにない。 なのでレジストリを弄って消してみた。 HKEY_CLASSES_ROOT &#124;―  [...]]]></description>
			<content:encoded><![CDATA[<p>Windows7の環境には慣れたもののデスクトップに表示しているショートカットアイコンの矢印の大きさだけはいつまでたっても慣れそうにない。</p>
<p>なのでレジストリを弄って消してみた。<br />
HKEY_CLASSES_ROOT<br />
|―  lnkfile<br />
にある<strong>IsShortcut</strong>を右クリックし<strong>削除</strong></p>
<p><a href="http://www.dxcode.com/wp-content/uploads/2010/02/regedit_sc.jpg" title="レジストリ_アイコンの矢印を消す" class="highslide" onclick="return hs.expand(this)"><img src="http://www.dxcode.com/wp-content/uploads/2010/02/regedit_sc.jpg" alt="レジストリ_アイコンの矢印を消す" width="569" height="302" class="attachment wp-att-1210 " /></a></p>
<p>再起動もしくはログオフすれば綺麗に矢印は消えている。</p>
<p><img class="attachment wp-att-1211 " src="http://www.dxcode.com/wp-content/uploads/2010/02/desktop_100216.jpg" alt="矢印の消えたショートカットアイコン" width="200" height="170" /></p>
<p>情報元 »» <a title="ショートカット アイコンの左下に表示される矢印を消したい" href="http://pasofaq.jp/windows/mycomputer/shortcutarrow.htm">ショートカット アイコンの左下に表示される矢印を消したい</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2010/02151209.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NEC Express5800／S70 タイプSD ケースファン交換</title>
		<link>http://www.dxcode.com/archives/2009/0512948.html</link>
		<comments>http://www.dxcode.com/archives/2009/0512948.html#comments</comments>
		<pubDate>Mon, 11 May 2009 21:36:14 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Express5800]]></category>
		<category><![CDATA[S70 タイプSD]]></category>
		<category><![CDATA[NEC]]></category>
		<category><![CDATA[S70SD]]></category>
		<category><![CDATA[カスタマイズ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=948</guid>
		<description><![CDATA[Windows Vistaをインストールしメイン機として快適に使用できているが、動作音が大きくなってきたように思い未使用で放置していた別の１台と比べてみたら明らかに大きい。 [CPU] : Core2Quad Q6600 [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Vistaをインストールしメイン機として快適に使用できているが、動作音が大きくなってきたように思い未使用で放置していた別の１台と比べてみたら明らかに大きい。<br />
[CPU] : Core2Quad Q6600 BSEL_mod 1066<br />
[CPUクーラー] : Scythe 刀2<br />
[Memory] : UMAX Pulsar DCDDR2-4GB-800<br />
[電源] : ANTEC EarthWatts EA 500<br />
[Graphic] : HIS H467QS512P<br />
[DVD-RAM] : PIONEER DVR-S16J-W<br />
[PCI] : BUFFALO DT-H50/PCI<br />
[OS] : Windows Vista Ultimate 32Bit<br />
上記のように弄っているのである程度は仕方ないのだが少しでも良くなればとケースファンを交換してみた。<br />
<a href="http://www.dxcode.com/wp-content/uploads/2009/05/cluster.jpg" title="ENERMAX CLUSTER UCCL9" class="highslide" onclick="return hs.expand(this)"><img src="http://www.dxcode.com/wp-content/uploads/2009/05/cluster.thumbnail.jpg" alt="ENERMAX CLUSTER UCCL9" width="500" height="332" class="attachment wp-att-950 " /></a></p>
<p>使用したのはENERMAXのCLUSTER UCCL9で近所のショップで1680円で購入。CPUクーラー刀2のクーラーも併せて交換してみた。<br />
結果は気持ち静かになったかな？という程度で期待していた程の効果はなく、逆にCPU温度が上がってしまったので刀2は標準のものに戻した。</p>
<p>問題の切り分けのため配線を1つずつ外してみたらPIONEERのDVR-S16J-Wとハードディスク（Seagate ST31000333AS 1TB）の駆動音が耳障りな音のの元凶だった。ただどちらも必要なもので音自体も我慢ならないものではないのでもう暫くこのまま使用することにする。<br />
放置していた別の1台は何も弄っていないので本当に静かです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2009/0512948.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NEC Express5800／S70 タイプSD ベンチマーク結果</title>
		<link>http://www.dxcode.com/archives/2009/0227301.html</link>
		<comments>http://www.dxcode.com/archives/2009/0227301.html#comments</comments>
		<pubDate>Thu, 26 Feb 2009 20:52:44 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Express5800]]></category>
		<category><![CDATA[S70 タイプSD]]></category>
		<category><![CDATA[NEC]]></category>
		<category><![CDATA[S70SD]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[メモリ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=301</guid>
		<description><![CDATA[現在の構成は下記のとおり [CPU] : Core2Quad Q6600 [CPUクーラー] : Scythe 刀2 [Memory] : UMAX Pulsar DCDDR2-4GB-800 [電源] : ANTEC  [...]]]></description>
			<content:encoded><![CDATA[<p>現在の構成は下記のとおり</p>
<blockquote><p>[CPU] : Core2Quad Q6600<br />
[CPUクーラー] : Scythe 刀2<br />
[Memory] : UMAX Pulsar DCDDR2-4GB-800<br />
[電源] : ANTEC EarthWatts EA 500<br />
[Graphic] : HIS H467QS512P<br />
[DVD-RAM] : PIONEER DVR-S16J-W<br />
[PCI] : BUFFALO DT-H50/PCI<br />
[OS] : Windows Vista Ultimate 32Bit</p></blockquote>
<p><a title="Crystal Dew World - ソフトウェア - CrystalMark 2004" href="http://crystalmark.info/software/CrystalMark/">CrystalMark 2004R3</a>で計測<br />
<img class="attachment wp-att-300" src="http://www.dxcode.com/wp-content/uploads/2009/02/crystal_mark2004r3.png" alt="crystal_mark2004r3" width="450" height="406" /></p>
<p>グラフィック関連の数値が低いもののゲームをするでもなし、たまにDVDを鑑賞したりBuffaloの地デジチューナ経由でTVと見たりする程度なので全く問題なし。</p>
<p>改めてPC構成を書いてみたら標準で残っているのはマザーボードとDVD-ROMそしてケースのみになっている。コストパフォーマンスが良いと思い購入したものの本末転倒な結果に・・・今更深くは考えないようにしよう。<br />
それよりも昨年12月中旬に届いた3台目が未だに未開封のまま放置されている方が問題なのだが使い道がない。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2009/0227301.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>サイトテーマ変更</title>
		<link>http://www.dxcode.com/archives/2008/1014134.html</link>
		<comments>http://www.dxcode.com/archives/2008/1014134.html#comments</comments>
		<pubDate>Mon, 13 Oct 2008 15:44:07 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[テーマ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/?p=182</guid>
		<description><![CDATA[あまり更新もしていないので意味はないかもしれませんが雰囲気だけでも変えてみました。 と言っても配布されているデフォルトのままなのでこれからのんびりとカスタマイズしていく予定です。 でもセンスがないのでこのままの方がいいか [...]]]></description>
			<content:encoded><![CDATA[<p>あまり更新もしていないので意味はないかもしれませんが雰囲気だけでも変えてみました。<br />
と言っても配布されているデフォルトのままなのでこれからのんびりとカスタマイズしていく予定です。</p>
<p>でもセンスがないのでこのままの方がいいかも・・・。</p>
<p><img src="http://www.dxcode.com/wp-content/uploads/2009/03/screenshot3.png" alt="WordPress 対応テーマwp.Vicuna" width="300" height="224" class="attachment wp-att-658 " /></p>
<p><a title="WordPress 対応テーマwp.Vicuna" href="http://wp.vicuna.jp/">WordPress 対応テーマwp.Vicuna</a><br />
<a title="拡張版 wp.Vicuna Ext" href="http://ma38su.org/projects/vicuna-ext/">拡張版 wp.Vicuna Ext</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2008/1014134.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressが英語表記に変身</title>
		<link>http://www.dxcode.com/archives/2007/121548.html</link>
		<comments>http://www.dxcode.com/archives/2007/121548.html#comments</comments>
		<pubDate>Sat, 15 Dec 2007 04:50:48 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[レンタルサーバ]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/archives/2007/121557.php</guid>
		<description><![CDATA[あるレンタルサーバでWordPressをインストールすべくサイトにアクセスすると表記が英語になっている。 原因はPHPのバグらしいのですが下記修正を施すことで対応。 wordpress/wp-includes/gette [...]]]></description>
			<content:encoded><![CDATA[<p>あるレンタルサーバでWordPressをインストールすべくサイトにアクセスすると表記が英語になっている。<br />
原因はPHPのバグらしいのですが下記修正を施すことで対応。</p>
<p>wordpress/wp-includes/gettext.php １１７-１２０行目（Wordpress２．３．１）<br />
＜修正前＞</p>
<pre>      if ($magic == ($MAGIC1 &#038; 0xFFFFFFFF) || $magic == ($MAGIC3 &#038; 0xFFFFFFFF)) { // to make sure it works for 64-bit platforms
         $this->BYTEORDER = 0;
      } elseif ($magic == ($MAGIC2 &#038; 0xFFFFFFFF)) {
         $this->BYTEORDER = 1;</pre>
<p>＜修正後＞</p>
<pre>      if ($magic == ($MAGIC1) || $magic == ($MAGIC3)) { // to make sure it works for 64-bit platforms
         $this->BYTEORDER = 0;
      } elseif ($magic == ($MAGIC2)) {
         $this->BYTEORDER = 1;</pre>
<p>参考記事 » <a href="http://phpbb.xwd.jp/viewtopic.php?t=1283" title="WordPress Japan :: インストール途中から英語に変わってしまいます">インストール途中から英語に変わってしまいます</a></p>
<p>これを見つけるまで何度も設定も見直しインストールを繰り返したことは言うまでもない。 :namida2:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2007/121548.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ビジュアルエディタのフォントを変更</title>
		<link>http://www.dxcode.com/archives/2007/10106.html</link>
		<comments>http://www.dxcode.com/archives/2007/10106.html#comments</comments>
		<pubDate>Wed, 10 Oct 2007 03:59:59 +0000</pubDate>
		<dc:creator>kecha</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[カスタマイズ]]></category>
		<category><![CDATA[ビジュアルエディタ]]></category>
		<category><![CDATA[フォント]]></category>

		<guid isPermaLink="false">http://www.dxcode.com/archives/2007/10107.php</guid>
		<description><![CDATA[WordPressに標準で装備されているビジュアルエディタTinyMceの記事投稿画面のフォントはデフォルトの状態ではTimes New Romanになっている為、日本語を打ち込んだ際は少々違和感がある。 wp-incl [...]]]></description>
			<content:encoded><![CDATA[<p>WordPressに標準で装備されているビジュアルエディタTinyMceの記事投稿画面のフォントはデフォルトの状態ではTimes New Romanになっている為、日本語を打ち込んだ際は少々違和感がある。</p>
<p>wp-includes/js/tinymce/plugins/wordpress.cssの28行目にフォントを設定する箇所があるのでお好みに変更すれば問題は解決。</p>
<pre>
body {
background: #fff;
font: 1em/1.3em Georgia, “Times New Roman“, Times, serif;
padding: .5em;
}</pre>
<p>修正後</p>
<pre>
body {
background: #fff;
font: 1em/1.3em Georgia, “MS UI Gothic“, Times, serif;
padding: .5em;
}</pre>
<p><a href="http://www.dxcode.com/wp-content/uploads/2009/03/tinymce_font.gif" title="TinyMceのフォント変更後" class="highslide" onclick="return hs.expand(this)"><img src="http://www.dxcode.com/wp-content/uploads/2009/03/tinymce_font.thumbnail.gif" alt="TinyMceのフォント変更後" width="450" height="225" class="attachment wp-att-547 " /></a></p>
<p>参考記事 &gt;&gt; <a href="http://d.halfmoon.jp/s/53" rel="bookmark" title="ビジュアルエディタのフォントの大きさ">ビジュアルエディタのフォントの大きさ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dxcode.com/archives/2007/10106.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

