【Play2.2】フォームヘルパーを自作してみた

play-2.2.0/framework/src/play/src/mainscala/views/helper を参考に。テキストボックスが2つ並んでる部品を、 app/helpers/doubleInput.scala.html に置く想定で作成。 画面上に 1 2 @helpers.html.doubleInput(aform(""), "ID2", "NAME2", "VALUE2" , '_label -> "ラベル") を書くと 1 2 3 4

【FreeBSD】FreeBSDでgit-flowをインストールする

Mac OS Xと同じ。rootで 1 2 wget --no-check-certificate -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash とやるか、もしくは 1 2 3 curl -L -O https://raw.github.com/nvie/gitflow/develop/contrib/gitflow-installer.sh bash gitflow-installer.sh とする。ちなみに 8.3-RELEASE は pkg_add -r git-flow では入らなかった。 参考 git-fl