2005-10-01から1ヶ月間の記事一覧
モデルをデータのみから成るドメインモデルと,アプリケーション固有の情報から成るアプリケーションモデルに分けることで,ドメインモデルの独立性・再利用性を高めています。http://www.sra.co.jp/people/nisinaka/Jun4Java/MVC/vw-mvc-application2.gif
タグ付き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…
mozdev.org - greasemonkey: authoring http://greasemonkey.mozdev.org/authoring.htmlここ英語だからこのページの日本語化が最初かな。
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…