Personal tools
You are here: Home ブログ 井上 FirefoxでAirOneの画像を表示する方法
« December 2010 »
Su Mo Tu We Th Fr Sa
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
Recent entries
Apache2.4のリリース予定は来年(2011年)初め(あくまで予定) inoue 2010-12-23
Herokuの発音 inoue 2010-12-20
雑誌記事「ソフトウェア・テストPRESS Vol.9」の原稿公開 inoue 2010-12-18
IPA未踏のニュース inoue 2010-12-15
労基法とチキンゲーム inoue 2010-12-06
フロントエンドエンジニア inoue 2010-12-03
ASCII.technologies誌にMapReduceの記事を書きました inoue 2010-11-25
技術評論社パーフェクトシリーズ絶賛発売中 inoue 2010-11-24
雑誌連載「Emacsのトラノマキ」の原稿(part8)公開 inoue 2010-11-22
RESTの当惑 inoue 2010-11-22
「プログラマのためのUXチートシート」を作りました inoue 2010-11-19
「ビューティフルコード」を読みました inoue 2010-11-16
Categories
カテゴリなし
 
Document Actions

FirefoxでAirOneの画像を表示する方法

2006/4/20:同様の内容を以下のURLに転載しました。

若き魔法使いの浜辺さんが調べてくれました。

問題の本質は、<img src="file:///...">がFirefoxのデフォルト状態で表示できない問題です。

firefoxでAirOneの画像を表示する方法

firefox1.5以前

アドレスバーに『about:config』と打ち込み、 『security.checkloaduri』の値を『false』とします。

firefox1.5以降

セキュリティーホールの修正により、checkloaduriが使えなくなりました。

Fixed: 307382

  • 設定「security.checkloaduri」を廃止
  • (CAPSを利用することにより、file:スキーマに対してCheckLoadURIを無効にすることが出来る)。

firefox1.5以降では以下を『user.js』に書き込み、所定のフォルダに置く必要があります。 user.jsはデフォルトでは存在しないので自分で作る必要があります。 user.jsを置くフォルダは通常『%AppData%/Mozilla/Firefox/Profiles/xxxxxxxx.default/』となります。 %AppData%は通常『C:/Documents and Settings/[ユーザ名]/Application Data/』となります。 xxxxxxxx はランダムな文字列を表します。

user.jsを設置後、firefoxを起動してください。

user.jsファイルに書くべき内容

user_pref("capability.policy.policynames", "localfilelinks");
user_pref("capability.policy.localfilelinks.sites", "http://localhost:6809");
user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");

おまけ(firefoxの高速化:user.js)

user_pref("network.http.pipelining", true); 
user_pref("network.http.pipelining.firstrequest", true); 
user_pref("network.http.pipelining.maxrequests", 8); 
user_pref("network.http.max-connections", 32); 
user_pref("network.http.max-connections-per-server", 8); 
user_pref("network.http.max-persistent-connections-per-proxy", 8); 
user_pref("network.http.max-persistent-connections-per-server", 4); 
user_pref("nglayout.initialpaint.delay", 0); 
user_pref("content.notify.backoffcount", 5); 
user_pref("plugin.expose_full_path", true); 
user_pref("ui.submenuDelay", 0); 
user_pref("content.interrupt.parsing", true); 
user_pref("content.max.tokenizing.time", 2250000); 
user_pref("content.notify.interval", 750000); 
user_pref("content.notify.ontimer", true); 
user_pref("content.switch.threshold", 750000); 
user_pref("browser.cache.memory.capacity", 65536);
The URL to Trackback this entry is:
http://dev.ariel-networks.com/Members/inoue/airone-firefox/tbping
Add comment

You can add a comment by filling out the form below. Plain text formatting.

(Required)
(Required)
(Required)
This helps us prevent automated spamming.
Captcha Image


Copyright(C) 2001 - 2006 Ariel Networks, Inc. All rights reserved.