This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | Thu Feb 21 05:40:54 -0800 2008 | [carlosbrando] |
| |
README | Tue Aug 05 04:10:34 -0700 2008 | [Alexander Lang] |
| |
Rakefile | Thu Feb 21 05:40:54 -0800 2008 | [carlosbrando] |
| |
init.rb | Fri Feb 29 20:08:59 -0800 2008 | [carlosbrando] |
| |
install.rb | Thu Feb 21 05:40:54 -0800 2008 | [carlosbrando] |
| |
lib/ | Tue Aug 05 06:50:08 -0700 2008 | [carlosbrando] |
| |
tasks/ | Thu Feb 21 05:40:54 -0800 2008 | [carlosbrando] |
| |
test/ | Tue Aug 05 06:37:58 -0700 2008 | [carlosbrando] |
| |
uninstall.rb | Thu Feb 21 05:40:54 -0800 2008 | [carlosbrando] |
README
Custom Resource Name 1.2 ======================== The Custom Resource Name Plugin lets you add aliases for your routes. This is very useful if you are developing a software to a country that does not speak English and wants all URLs in the native language. To install the plugin is very simple. The plugin is on the GitHub. If you have Git installed, take the plugin using the command: git clone git://github.com/carlosbrando/custom_resource_name.git custom_resource_name If you don’t use Git (should…) you can download the plugin and then copy the files into the folder vendor/plugins of your project. To download: http://github.com/carlosbrando/custom_resource_name/tarball/master To use it is simpler yet. Open the file routes.rb of your project and include the following lines BEFORE the routes that should be translated: # translate resources map.aliases :resources, :posts => ‘artigos‘, :comments => ‘comentarios‘ # translate singleton resources map.aliases :resource, :comment => 'comentario' # translate actions map.aliases :actions, :new => ‘novo‘, :edit => ‘editar‘, :logout => ‘sair‘ # translate namespaces map.aliases :namespaces, :admin => ‘administrativo‘ If you have any english route that should stay untouched, put it before the aliases definition. Ready! You can add aliases for all its resources and actions. New feature =========== Added one more feature to plugin. Imagine the following case: ActionController::Routing::Routes.draw do |map| map.aliases :resources, :houses => 'casas' map.aliases :actions, :new => 'novo' map.resources :houses end See that all actions :new will be replaced by 'novo', but this does not fit properly in resource :casas, which would correct be 'nova' and not 'novo' (is just one example). In this case we can use the option :actions_as in the resources, like this: map.resources :houses, :actions_as => {:new => 'nova'} Problem solved. In all other cases the action :new will be called 'novo', but only in the resource :casas it will be 'nova'. In addition we also have the option :as those who do the same thing with the name of the resource. More info: http://www.nomedojogo.com/custom-resource-name-plugin/ If this plugin is interesting to you, be sure to recommend me on Working with Rails. This plugin has been created by Carlos Brando, a developer of Surgeworks LLC. Copyright (c) 2008 Carlos Brando, released under the MIT license




