Changeset 4888
- Timestamp:
- 08/31/06 23:38:03 (2 years ago)
- Files:
-
- trunk/actionpack/lib/action_controller/scaffolding.rb (modified) (1 diff)
- trunk/actionpack/README (modified) (1 diff)
- trunk/railties/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/scaffolding.rb
r4310 r4888 25 25 # 26 26 # def list 27 # @entries = Entry.find _all27 # @entries = Entry.find(:all) 28 28 # render_scaffold "list" 29 29 # end trunk/actionpack/README
r4307 r4888 367 367 368 368 def index 369 @posts = Post.find _all369 @posts = Post.find(:all) 370 370 end 371 371 trunk/railties/README
r4672 r4888 91 91 class WeblogController < ActionController::Base 92 92 def index 93 @posts = Post.find _all93 @posts = Post.find(:all) 94 94 breakpoint "Breaking out from the list" 95 95 end