# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 5 def form render :inline=>%Q{<%= form_tag do %>Hello<% end %>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 19 def form_path render :inline=>%Q{<%= form_for @user do %>Hello<% end %>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 22 def form_path_admin render :inline=>%Q{<%= form_for [:admin, @user] do %>Hello<% end %>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 8 def link render :inline=>%Q{<%= link_to "linkto" %>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 26 def link_path render :inline => %Q{<%= link_to "linkto", @user -%>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 29 def link_path_admin render :inline => %Q{<%= link_to "linkto", [:admin, @user] -%>} end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 11 def redirect redirect_to('/') end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 40 def redirect_action redirect_to :action => "form" end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 33 def redirect_path redirect_to @user end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 36 def redirect_path_admin redirect_to [:admin, @user] end
# File test/rails/overrides/app/controllers/trans_sid_base_controller.rb, line 14 def session_init session[:jpmobile] = "everyleaf" @user = User.find(1) rescue User.create(:id => 1, :name => "everyleaf") end