From 0049bd729f71c804b4c930e38269aa5a40cca158 Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Sat, 29 Apr 2006 16:34:23 +0000 Subject: Update README git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4307 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/README | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'actionpack/README') diff --git a/actionpack/README b/actionpack/README index dc475a6610..88bcab8461 100755 --- a/actionpack/README +++ b/actionpack/README @@ -139,7 +139,7 @@ A short rundown of the major features: end Layout file (called weblog_layout): - <%= @content_for_layout %> + <%= yield %> Template for hello_world action:

Hello world

@@ -155,7 +155,7 @@ A short rundown of the major features: map.connect 'clients/:client_name/:project_name/:controller/:action' Accessing /clients/37signals/basecamp/project/dash calls ProjectController#dash with - { "client_name" => "37signals", "project_name" => "basecamp" } in @params["params"] + { "client_name" => "37signals", "project_name" => "basecamp" } in params[:params] From that URL, you can rewrite the redirect in a number of ways: @@ -338,7 +338,7 @@ A short rundown of the major features: - This form generates a @params["post"] array that can be used directly in a save action: + This form generates a params[:post] array that can be used directly in a save action: class WeblogController < ActionController::Base def save @@ -370,7 +370,7 @@ methods: end def display - @post = Post.find(:params[:id]) + @post = Post.find(params[:id]) end def new @@ -394,7 +394,7 @@ And the templates look like this: weblog/layout.rhtml: - <%= @content_for_layout %> + <%= yield %> weblog/index.rhtml: -- cgit v1.2.3