Merge pull request #13325 from kuldeepaggarwal/docs-update
Improved documents [ci skip]
This commit is contained in:
commit
badcd7bb00
@ -238,7 +238,7 @@ Action Pack
|
||||
end
|
||||
```
|
||||
|
||||
In the example above, Posts controller will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from `ApplicationController` or explicitly set it to `nil` in `PostsController`.
|
||||
In the example above, `PostsController` will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from `ApplicationController` or explicitly set it to `nil` in `PostsController`.
|
||||
|
||||
* Deprecated `ActionController::UnknownAction` in favor of `AbstractController::ActionNotFound`.
|
||||
|
||||
|
@ -1591,7 +1591,7 @@ Localized Views
|
||||
|
||||
Action View has the ability render different templates depending on the current locale.
|
||||
|
||||
For example, suppose you have a Posts controller with a show action. By default, calling this action will render `app/views/posts/show.html.erb`. But if you set `I18n.locale = :de`, then `app/views/posts/show.de.html.erb` will be rendered instead. If the localized template isn't present, the undecorated version will be used. This means you're not required to provide localized views for all cases, but they will be preferred and used if available.
|
||||
For example, suppose you have a `PostsController` with a show action. By default, calling this action will render `app/views/posts/show.html.erb`. But if you set `I18n.locale = :de`, then `app/views/posts/show.de.html.erb` will be rendered instead. If the localized template isn't present, the undecorated version will be used. This means you're not required to provide localized views for all cases, but they will be preferred and used if available.
|
||||
|
||||
You can use the same technique to localize the rescue files in your public directory. For example, setting `I18n.locale = :de` and creating `public/500.de.html` and `public/404.de.html` would allow you to have localized rescue pages.
|
||||
|
||||
|
@ -342,7 +342,7 @@ If you have created namespaced routes, `form_for` has a nifty shorthand for that
|
||||
form_for [:admin, @article]
|
||||
```
|
||||
|
||||
will create a form that submits to the articles controller inside the admin namespace (submitting to `admin_article_path(@article)` in the case of an update). If you have several levels of namespacing then the syntax is similar:
|
||||
will create a form that submits to the `ArticlesController` inside the admin namespace (submitting to `admin_article_path(@article)` in the case of an update). If you have several levels of namespacing then the syntax is similar:
|
||||
|
||||
```ruby
|
||||
form_for [:admin, :management, @article]
|
||||
|
@ -404,7 +404,7 @@ class ProductsController < ApplicationController
|
||||
end
|
||||
```
|
||||
|
||||
With this declaration, all of the views rendered by the products controller will use `app/views/layouts/inventory.html.erb` as their layout.
|
||||
With this declaration, all of the views rendered by the `ProductsController` will use `app/views/layouts/inventory.html.erb` as their layout.
|
||||
|
||||
To assign a specific layout for the entire application, use a `layout` declaration in your `ApplicationController` class:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user