2008年2月21日木曜日

FreeMind のソースコードを読む準備 - Eclipse で CVS を利用する

最近、FreeMind は必需品となっている。中身がどんな風になっているか、ソースコードを見てみたくなった。

Getting Freemind from SourceForge's CVS via Eclipse を参考にして、Eclipse 上でソースコードを読めるようにした。

使用したツール

Eclipse 3.3.1.1

方法

Eclipse を起動する。

メニューの Window > Open Perspective > Other... を選択する。

080221-001

Open Perspective ダイアログが表示されるので、 CVS Repository Exploring を選択する。

080221-002

SourceForge.net: CVS に、CVS にアクセスするための方法が書かれている。

080221-003

Anonymous CVS Access に、CVS のコマンドが書かれている。これを Eclipse の CVS を管理するところで利用する。

080221-006

cvs -d:pserver:anonymous@freemind.cvs.sourceforge.net:/cvsroot/freemind login

(上記のページより)

Eclipse に戻り、CVS Repositories において、Add CVS Repository ボタンをクリックする。 Add CVS Repository ダイアログが表示されるので、上記の CVS のコマンドに書かれていたものに対応するフィールドに、以下のように記述する。

  • Host : freemind.cvs.sourceforge.net
  • Repository path : /cvsroot/freemind
  • User : anonymous
  • Connection type : pserver

080221-005

CVS Repositories に freemind が追加された。

080221-007

上記を開いて、HEAD > freemind において、Check Out を選択すると、freemind というプロジェクトが Eclipse に作成される。 ( Window > Open Perspective > Resource で確認。)

080221-008