2006/04/20
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);
- Category(s)
- カテゴリなし
- The URL to Trackback this entry is:
- http://dev.ariel-networks.com/Members/inoue/airone-firefox/tbping