年別アーカイブ: 2008年
エラー発生時に通知メールを送信する
MacPortsでapacheやphpをアップデートすると、conf/extraとextra-conf下のファイルが上書きされてしまう
MacPortsでapacheやphpをアップデートすると、conf/extraとextra-conf下のファイルが上書きされてしまう。(conf直下のファイルは上書きされない。)
$ sudo port upgrade outdated
とかする前に、バックアップしておく必要がある。
Ruby Advent 2008
Apache のリバースプロキシの設定方法
Nested Layouts
Matt McCray - Sorta Nested Layouts
素直なやり方。
Peter Marklund's Home : Rails Tip: Nested Layouts
Plugins - Nested Layouts - Agile Web Development
これらは、Railsの実装が変わると動作しなくなる。
script/consoleでアクションやヘルパーメソッドを実行
script/consoleでアクションを実行。
$ ./script/console Loading development environment (Rails 2.1.2) >> app.get "/" => 200 >> app.response
script/consoleでヘルパーメソッドを実行。
$ ./script/console Loading development environment (Rails 2.1.2) >> foo = ActionView::Base.new => #<ActionView::Base:0x220c310 @controller=nil, @finder=#<ActionView::TemplateFinder:0x220c2c0 @view_paths=[], @template=#<ActionView::Base:0x220c310 ...>>, @assigns_added=nil, @assigns={}> >> foo.extend ApplicationHelper => #<ActionView::Base:0x220c310 @controller=nil, @finder=#<ActionView::TemplateFinder:0x220c2c0 @view_paths=[], @template=#<ActionView::Base:0x220c310 ...>>, @assigns_added=nil, @assigns={}> >> foo.your_helper_method(args) => "<html>created by your helper</html>" >> foo.extend YourHelperModule => #<ActionView::Base:0x220c310 @controller=nil, @finder=#<ActionView::TemplateFinder:0x220c2c0 @view_paths=[], @template=#<ActionView::Base:0x220c310 ...>>, @assigns_added=nil, @assigns={}> >> foo.your_helper_method(args) => "<html>created by your helper</html>"
script/console で URL がどんな params に認識されるかを確かめる - d.hatena.ne.jp/jun66j5/
Firing A Controller's Action From The Console | DZone
Misuse » Firing Rails Controller Actions from Command line (console)
How do I call controller/view methods from the console in Rails? - Stack Overflow
ActiveRecordでカラムの変更情報を取得する
Module: ActiveRecord::Dirty
モデルオブジェクトに保存されていない変更があるかどうか?
カラムが変更されたかどうか?
変更前の値、変更後の値、変更されたカラムのリスト等の情報を取得できる。
C#でデザインパターン
増補改訂版Java言語で学ぶデザインパターン入門のサンプルコードをC#、VB.NETに移植したもの。
窓際プログラマーの独り言 -C#の話題を中心に:C#デザインパターン Index
Gushwell's C# Programming Page - C#デザインパターン (C#3.0に対応)
VB.NETとC#でデザインパターン