2006/11/27 Firebug公式サイトが移転しました。 http://www.getfirebug.com/ 詳しい使い方は、http://www.getfirebug.com/docs.html等をどうぞ。 2006/11/07 未だにアクセスが多いので、補足します。ここにある情報は既に大幅に古くなっています。以前程、パフォーマンスの低下もありませんし、ログの吐き方も変わりました。 例えば、console.debug("message",obj)のような形でログをとったり、assertしたりするようになっています。詳しくは、http://www.joehewitt.com/software/firebug/docs.php辺りを参照してください。 https://addons.mozilla.org/extensions/moreinfo.php?id=1843&applicat
XULRunner とは、Firefox や Thunderbird と同じくらい多機能な XUL+XPCOM アプリケーションを単独で起動するための Mozilla ランタイムパッケージです。XULRunner はアプリケーションをインストール、アップグレード、さらにアンインストールする機能も提供しています。また、他のプロジェクトや製品への Mozilla テクノロジーの組み込みを可能にする libxul も提供します。 XULRunner 16.0 がリリースされました。ftp.mozilla.org からダウンロード可能です。インストールおよびアンインストール、その他の情報についてはリリースノートをご覧ください。 Firefox 3 以降にはプライベートな XULRunner パッケージが含まれているため、互換性のある XULRunner アプリケーションを -app スイッチを使用
Taming the Lizard with Delphi By Dave Murray <irongut at vodafone dot net> Would you like to display HTML in your applications using an open source solution? The Gecko Runtime Environment by the Mozilla Foundation can be embedded in a Delphi application by using the Mozilla ActiveX Control. This article shows how to use this control and points out some of the differences between it and the IE base
Welcome to the online version of Nigel McFarlane's Rapid Application Development with Mozilla! Update: Nigel McFarlane passed away in late June 2005. His website has disappeared for unknown reasons. From here, you have a number of options. You could... ...start browsing: Chapter One: Fundamental Concepts Table of Contents Introduction ...buy the book from Amazon!. ...read the legal and copyright i
オープンなウェブは、開発者に素晴らしい機会をもたらします。これらの技術を最大限に活用するには、それらの使い方を知る必要があります。以下に、ウェブ技術のドキュメントへのリンクがあります。 ウェブ開発者ガイド ウェブ開発者ガイドは、ウェブ技術を実際に使用して、やりたいことや必要なことを実現するために役立つハウツーコンテンツを提供しています。 ウェブ開発者向けチュートリアル HTML、CSS、JavaScript、Web API の学習を段階的に進めるためのチュートリアルです。 アクセシビリティ ウェブサイトを使用する人に何らかの制約があっても、できるだけ多くの人が使用できるようにすることです。 パフォーマンス コンテンツをできるだけ早く利用できるように、操作できるようにすることです。 セキュリティ データ漏洩やデータ盗難、サイドチャンネル攻撃、クロスサイトスクリプティング、コンテンツインジェク
日頃より楽天のサービスをご利用いただきましてありがとうございます。 サービスをご利用いただいておりますところ大変申し訳ございませんが、現在、緊急メンテナンスを行わせていただいております。 お客様には、緊急のメンテナンスにより、ご迷惑をおかけしており、誠に申し訳ございません。 メンテナンスが終了次第、サービスを復旧いたしますので、 今しばらくお待ちいただけますよう、お願い申し上げます。
The wxMozilla project has been discontinued. It is superceded by the wxWebConnect project, available at http://www.kirix.com/labs/wxwebconnect.html. Thanks to everyone who supported and participated in this project! The wxMozilla sources will remain available from the SF project page for reference purposes and for people who may need them temporarily, though they will not be guaranteed to work wit
Mozilla は、Firefox や Thunderbird など、数々の賞に輝く無料のオープンソース製品を開発・提供している、グローバルなコミュニティです。Mozilla Japan は、非営利の公益法人である米国 Mozilla Foundation の日本支部です。Mozilla 最新情報 Firefox 4 正式版公開! 刷新されたユーザインタフェース。かつてない高速化。便利な機能を満載してついに登場。 Android 版 Firefox、ついに公開! あなたのスマートフォンにも真のフルブラウザを — ブラウザ環境同期機能を標準装備。 iPhone アプリケーション「Firefox Home」無料配布中 外出先でも Firefox の履歴、ブックマーク、開いているタブを簡単に参照できます。 Firefox と Thunderbird の法人導入事例を掲載しました 住友電気工業、J
Firefox のブックマークツールバーへのファビコン(お気に入りに表示されるサイトを表すアイコン)の登録については @aka さんの記事 Firefox のブックマーク・ツールバーをファビコンでスマートにと、firefox の bookmarklet に favicon をに詳しく書かれているので、そちらをお読み下さい。 今日紹介するのは、左の画像のように、ブックマークツールバー上で動くファビコンについて。 といっても大したワザでもないので、もったいつけずに、さっさとやり方を書きますと… 1.画像ファイル(アニメーション GIF)を Firefox で表示し、ブックマークツールバー上にブックマーク。 2.出来たブックマークを一度クリックして、ファビコン画像を確定させる。 3.出来たブックマークを右クリック、プロパティから名前(なしでも OK)とブックマークに登録したい URL を入力。も
id:brazil さんのブックマークで知ったのだが、 Firebugには、便利な組み込み関数が定義されているようだ。 一通りさわってみたのだが、 $x() で 任意のXPath要素が取得できるのとかに感動した。 そして、やっぱりちゃんとドキュメント読むべきだなぁと思った。 XPathから要素を取得する。 $x("/html/body/h1"); -> 要素の配列が返ってくる。 selector名から要素を取得する。(getElementsByTagName) $$("h1") -> 要素の配列 所要時間測定 console#time, console#timeEnd time ~ timeEnd で囲んだ部分の所要時間を 計測することが出来るみたいで、 以下のような関数にまとめると良さそうだ。 function bench( callback ) { var uniq_id = Date
Accessible Rich Internet Applications (ARIA) is a set of roles and attributes that define ways to make web content and web applications (especially those developed with JavaScript) more accessible to people with disabilities. ARIA supplements HTML so that interactions and widgets commonly used in applications can be passed to assistive technologies when there is not otherwise a mechanism. For exam
毎回、jar ファイルを作り直す作業が 面倒だと思った事はないだろうか。 じつは、chrome.manifest というファイルを 書き換える事によってこの作業は必要なくなる。 たとえば、FireBug を簡単に改造する手順を説明してみる。 この手順では、既にインストールしてあるものを 改造する手順を説明させていただくこととする。 ちなみに、コレに関連した話として、 入れておくと便利な拡張に、 Extension Developer's Extension というものがある。 http://ted.mielczarek.org/code/mozilla/extensiondev/ これについては後述する。 まず、FireBug のインストールされているディレクトリを探す。 それは、プロファイルディレクトリの下の ./extensions/firebug@software.joehewitt
The Extension Developer's Extension exists to make life easier for Firefox extension developers. Testing JavaScript code, prototyping XUL layouts, and building XPI packages are all made easier by this extension. Install it and try it out! Extension Builder Build your extension's package (jar and xpi files), as well as install your working directory as an extension for development. Now provides mos
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く