<?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>Sunday blog &#187; WEB</title>
	<atom:link href="http://sundayblog.jp/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://sundayblog.jp</link>
	<description>スクラップブック + おいしいもの + お料理 + 写真 + お買い物 + 音楽 + 本 etc + アンテナにピピッ！ときたものをお届けしています（毎日日曜版）</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:45:16 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQueryのアコーディオンメニュー</title>
		<link>http://sundayblog.jp/2011/05/06/6565/</link>
		<comments>http://sundayblog.jp/2011/05/06/6565/#comments</comments>
		<pubDate>Fri, 06 May 2011 00:34:23 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/?p=6565</guid>
		<description><![CDATA[サンプルからカスタマイズして、一度開いたメニューを閉じることができるようにカスタマイズしてみました。 もとのスクリプトはこちら。 http://ascii.jp/elem/000/000/466/466410/ タイトル1（クリックすると展開されます） テキストテキスト タイトル2（クリックすると展開されます） テキストテキスト 加えたのは下記の部分。 dtのひとつしたのdd要素がdisplayになっていたら、ddをスライドアップして、dtの色をselectedのクラスをトリ。 「+」がひとつしたの、という指定の仕方。 $(&#8220;dl dt&#8221;).click(function(){ //click動作の下に下記を追加 　if ($(&#8220;+dd&#8221;,this).css(&#8220;display&#8221;)==&#8221;block&#8221;){ 　　$(&#8220;+dd&#8221;,this).slideUp(&#8220;slow&#8221;); 　　$(this).removeClass(&#8220;selected&#8221;); } 最初のひとつも閉じているようにするには、2行目を書き換えます。 $(&#8220;dd:not(:first)&#8221;).css(&#8220;display&#8221;,&#8221;none&#8221;); ↓ $(&#8220;dd&#8221;).css(&#8220;display&#8221;,&#8221;none&#8221;) 完成したソース わかりやすいように途中にコメントを入れてます。 $(function(){ // 初期動作　全部閉じ $(&#8220;dd&#8221;).css(&#8220;display&#8221;,&#8221;none&#8221;) // クリック $(&#8220;dl dt&#8221;).click(function(){ 　// 開いているのを閉じる 　if ($(&#8220;+dd&#8221;,this).css(&#8220;display&#8221;)==&#8221;block&#8221;){ 　　$(&#8220;+dd&#8221;,this).slideUp(&#8220;slow&#8221;); 　　$(this).removeClass(&#8220;selected&#8221;); 　} 　// 開いているのを閉じて、クリックしたのを開く 　if($(&#8220;+dd&#8221;,this).css(&#8220;display&#8221;)==&#8221;none&#8221;){ 　　$(&#8220;dd&#8221;).slideUp(&#8220;slow&#8221;); 　　　$(&#8220;+dd&#8221;,this).slideDown(&#8220;slow&#8221;); 　　　$(&#8220;dt&#8221;).removeClass(&#8220;selected&#8221;); 　　　$(this).addClass(&#8220;selected&#8221;); 　　} 　　}).mouseover(function(){ 　　　$(this).addClass(&#8220;over&#8221;); 　　}).mouseout(function(){ 　　　$(this).removeClass(&#8220;over&#8221;); 　　}) })]]></description>
		<wfw:commentRss>http://sundayblog.jp/2011/05/06/6565/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>負荷テスト用にapache bench パラメータ(query strings)つきURLの記述</title>
		<link>http://sundayblog.jp/2010/11/10/5986/</link>
		<comments>http://sundayblog.jp/2010/11/10/5986/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 09:19:55 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[プログラミング]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/?p=5986</guid>
		<description><![CDATA[意外と探すと時間がかかったのでメモ。 apache benchでURLを叩くときに、パラメータ(query strings)がついたURLをリクエストしたいときにどう記述するのか、と。 URLをダブルクオートで囲むだけでした。このように→&#8221;url&#8221;。 携帯用にヘッダ情報の書き換え、ならびにドコモIDはこう記述すると大丈夫な様子。 apache benchのバージョンは2.3。 $ab -n 1 -c 1 -k -H &#8220;X-DCMGUID: test_00&#8243; -H &#8220;USER_AGENT: DoCoMo/2.0 P07A3(c500;TB;W24H15)&#8221; &#8220;http://localhost/index.html?aaa=bbb&#038;ccc=ddd&#038;guid=ON&#8221; これでパラメータ付きのURLがでも途中で切れることなく、リクエストが送られているのを確認。詳しく負荷テストするにはJMaterがいい様子。 以下ヘルプ。これを見てもダブルクオート、出てないのだよねえ。苦笑。 Usage: ab [options] [http[s]://]hostname[:port]/path Options are: -n requests Number of requests to perform -c concurrency Number of multiple requests to make -t timelimit Seconds to max. wait for responses -b windowsize [...]]]></description>
		<wfw:commentRss>http://sundayblog.jp/2010/11/10/5986/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>本 &#8211; はじめてのUNIX</title>
		<link>http://sundayblog.jp/2008/11/03/1910/</link>
		<comments>http://sundayblog.jp/2008/11/03/1910/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 23:56:08 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[日々雑感]]></category>
		<category><![CDATA[本]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/?p=1910</guid>
		<description><![CDATA[管理者になる人のはじめてのUNIX 価格：3,360円（税込、送料別） いろいろとUNIX関連でまとまっている本がないかと以前に買ってきた本。 基本から管理系のことまで、今の自分にはちょうどいい内容がまとまっている。 、とそういうときにコマンドを試してみたいときに問題になるのがroot権限。 レンタルサーバーでは無理なこともあって、身近にUNIX環境をおいてみようと。 それでMacBookを導入してみたというのが実際のところ。 webのフロントから入っていくと意外とシステム側からみたときには当たり前、ということがわかっていない。 そういうところをほどよい感じで補ってくれる。 MacBookのターミナルもタブで複数開けて、さらにいろいろな画面の色のデフォルト設定が用意されていてなかなか便利。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2008/11/03/1910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[みんなのPython Webアプリ編] P.44 03-02 CGIHTTPServer を使う</title>
		<link>http://sundayblog.jp/2008/01/03/1587/</link>
		<comments>http://sundayblog.jp/2008/01/03/1587/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 10:03:47 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[日々雑感]]></category>
		<category><![CDATA[本]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2008/01/03/1587/</guid>
		<description><![CDATA[ウィンドウズXP環境で試していて、試行錯誤したのでメモ。 CGIHTTPServerがどうも動作しない。少し前にでてきていたSimpleHTTPServerは難なく動いたのに。 localhost &#8211; - [03/Jan/2008 18:10:55] C:\Python25\python.exe: can&#8217;t open file &#8216;C:\Documents&#8217;: [Errno 2] No such file or directory なんだかうまく動かないので試行錯誤。コンソールのエラーメッセージをみるとディレクトリ違いか？？しかしディレクトリを設定するパラメータもなさそうだ。 とよくみればパスがDocumentsで切れている。 My Document配下において試しているとDocument and settings ディレクトリがあり、半角が入っているとそこで読まなくなる模様。 Cドライブ直下にファイルを置くディレクトリを変更して実行すると難なく動きました。 ※エラーメッセージのバックスラッシュになっているところはWin環境なので半角「￥」です。 みんなのPython Webアプリ編 [みんなのシリーズ] 著者／訳者：柴田 淳 出版社：ソフトバンククリエイティブ( 2007-11-30 ) ISBN-10 : 4797341815 ISBN-13 : 9784797341812]]></description>
		<wfw:commentRss>http://sundayblog.jp/2008/01/03/1587/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari3 beta Windows版　つづき</title>
		<link>http://sundayblog.jp/2007/06/14/1488/</link>
		<comments>http://sundayblog.jp/2007/06/14/1488/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 01:38:50 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/06/17/1488/</guid>
		<description><![CDATA[MS UIゴシックを設定して試すも、一部サイトは日本語表示されるも、だめなところは線になってしまう。文字コードの設定ができるかどうか、のようだ。。。UTF-8, Shift-JISは表示うまくいかず、EUC-JPはOK。OS環境はWindows XP。 アップデート、もしくは正式版のリリースを待つのが良さそう。あちこちであがってきた記事を見る限り、セキュリティに関してはまだまだこれからの模様。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/06/14/1488/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari3 beta Windows版</title>
		<link>http://sundayblog.jp/2007/06/12/1485/</link>
		<comments>http://sundayblog.jp/2007/06/12/1485/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 03:16:53 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/06/12/1485/</guid>
		<description><![CDATA[Safari3 betaが発表になる。Windows版もあり。iTunesと同じくクロスプラットフォーム化の方向らしい。 http://www.apple.com/safari/ 今のところ日本語表示には一工夫必要。こちらのサイトがやり方を紹介してくれてます。 最速インターフェース研究会 http://la.ma.la/blog/diary_200706120455.htm]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/06/12/1485/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS完全ガイド</title>
		<link>http://sundayblog.jp/2007/05/29/1474/</link>
		<comments>http://sundayblog.jp/2007/05/29/1474/#comments</comments>
		<pubDate>Tue, 29 May 2007 06:38:23 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[デザイン, アート]]></category>
		<category><![CDATA[日々雑感]]></category>
		<category><![CDATA[本]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/05/29/1474/</guid>
		<description><![CDATA[CSS完全ガイド 第2版 著者／訳者：Eric A. Meyer 出版社：オライリージャパン( 2005-06-27 ) 価格：￥ 3,990 ISBN-10 : 487311232X ISBN-13 : 9784873112329 CSS関連の詳細。最近プログラミング関連でオライリーの本ばかり読んでいたので理解しやすい。細々した仕様など気になっていたところがわかる。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/05/29/1474/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>コーネリアス　ビデオコンテスト</title>
		<link>http://sundayblog.jp/2007/05/17/1468/</link>
		<comments>http://sundayblog.jp/2007/05/17/1468/#comments</comments>
		<pubDate>Thu, 17 May 2007 02:11:06 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[DVD、映画]]></category>
		<category><![CDATA[WEB]]></category>
		<category><![CDATA[デザイン, アート]]></category>
		<category><![CDATA[日々雑感]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/05/17/1468/</guid>
		<description><![CDATA[電脳亭日常でコーネリアスのビデオコンテストを知る。 大賞の「Remix 2.0」は圧巻です。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/05/17/1468/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: The Definitive Guide 5th Edition</title>
		<link>http://sundayblog.jp/2007/05/04/1463/</link>
		<comments>http://sundayblog.jp/2007/05/04/1463/#comments</comments>
		<pubDate>Fri, 04 May 2007 03:45:12 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[日々雑感]]></category>
		<category><![CDATA[本]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/05/04/1463/</guid>
		<description><![CDATA[Javascript: The Definitive Guide 著者／訳者：David Flanagan 出版社：Oreilly &#038; Associates Inc( 2006-08 ) ISBN-10 : 0596101996 ISBN-13 : 9780596101992 5th Editionは最近のJavascriptの動向に沿って改訂されているとのことで、こういったところが改訂版のいいところ。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/05/04/1463/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pragmatic Ajax</title>
		<link>http://sundayblog.jp/2007/05/04/1462/</link>
		<comments>http://sundayblog.jp/2007/05/04/1462/#comments</comments>
		<pubDate>Fri, 04 May 2007 03:36:17 +0000</pubDate>
		<dc:creator>Sunday blog</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[日々雑感]]></category>
		<category><![CDATA[本]]></category>

		<guid isPermaLink="false">http://sundayblog.jp/2007/05/04/1462/</guid>
		<description><![CDATA[Pragmatic Ajax: A Web 2.0 Primer 著者／訳者：Justin Gehtland Ben Galbraith Dion Almaer 出版社：Pragmatic Bookshelf( 2006-03-15 ) 価格：￥ 2,310 ISBN-10 : 0976694085 ISBN-13 : 9780976694083 AJAX関連を一通り仕組みから網羅するための一冊。途中まで読み進めるもなかなかわかりやすい。]]></description>
		<wfw:commentRss>http://sundayblog.jp/2007/05/04/1462/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

