2005-10-01から1ヶ月間の記事一覧

アプリケーションモデル

モデルをデータのみから成るドメインモデルと,アプリケーション固有の情報から成るアプリケーションモデルに分けることで,ドメインモデルの独立性・再利用性を高めています。http://www.sra.co.jp/people/nisinaka/Jun4Java/MVC/vw-mvc-application2.gif

innerHTML

タグ付きinnerHTMLサンプル <p onclick = "this.innerHTML='<i>On Click InnerHTML Italic.</i>.'" onmouseout = "this.innerHTML='On Mouse Out InnerHTML Normal.'" > On Mouse Out InnerHTML Normal. </p>

テストリポート出力環境のテンプレート

project.properties # ソースディレクトリ src=src # .class出力ディレクトリ build=bin # JARライブラリディレクトリ lib=lib # レポートソース出力ディレクトリ report.src=report/src # レポート出力ディレクトリ report=report build.xml <project default="test" basedir="."> <property file="project.properties" /> <fileset id="classpath" dir="${lib}"> </fileset></property></project>

ユーザースクリプトの書き方

ユーザースクリプトファイルを作成。サンプルを書きます。最初はお約束のhello world。hello.user.js (function() { alert("Hello, world!"); })();ファイル名は〜.user.jsとする。〜は1バイト文字じゃないと駄目。最小のソースは (function() { })();で、he…

ユーザー JavaScriptの書き方

mozdev.org - greasemonkey: authoring http://greasemonkey.mozdev.org/authoring.htmlここ英語だからこのページの日本語化が最初かな。

猿でも分かる GreaseMonkey + Platypus 超入門

Platypus ここではPlatypusについて学ぶ

事始

Greasemonkey - Firefox まとめサイト Greasemonkey まずはここでインストールとか基本を学ぶ。

どのイベントバインディングが最良か?

On the one hand, the tag attribute approach is acknowledged by the W3C DOM Level 2 recommendation as an acceptable substitute for the addEventListener() method. To be compatible with millions of existing scripts, all scriptable browsers su…