Commit a7004fd55ead1b2b85f7bd6862b07493960c279d

  • avatar
  • Adolfo Fitoria <fitoria @fitoria…ptop.(none)>
  • Mon Sep 07 01:48:54 CEST 2009
FoF Ready
  
1class JuegosController < ApplicationController
2layout 'normal'
3 def index
4 end
5
6 def inscribirseFoF
7 @fof_player = FoFPlayer.new()
8 if request.post?
9 @user = User.find_by_id(session[:user_id])
10 @fof_player = FoFPlayer.new(params['FoFPlayer'])
11 @fof_player.participante = @user.participante
12 if FoFPlayer.count(:conditions => 'modalidad' == @fof_player.modalidad) > 16
13 flash[:error] = "cupo lleno, será para la próxima"
14 elsif FoFPlayer.count(:conditions => 'participante_id' == @fof_player.participante.id)
15 flash[:error] = "Usted ya se inscribió"
16 elsif @fof_player.save
17 flash[:notice] = "Se ha inscrito en Frets On Fire. Esperamos practique mucho!"
18 else
19 flash[:error] = "Se produjo un error al procesar."
20 end
21 redirect_to :action => 'index'
22 end
23 end
24
25 def cancelarFoF
26 @user = User.find_by_id(session[:user_id])
27 @fof_player = FoFPlayer.find_by_participante_id(@user.participante)
28 if FoFPlayer.delete(@fof_player)
29 flash[:notice] = "se ha eliminado su participacion en el concurso"
30 redirect_to :action => "index"
31 else
32 flash[:error] = "Se produjo un error."
33 end
34 end
35end
  
1module JuegosHelper
2end
  
1class FoFPlayer < ActiveRecord::Base
2 belongs_to :participante
3end
  
55 has_and_belongs_to_many :tallers
66 has_many :fretsonfires
77 has_many :instalacions
8 has_one :FoFPlayers
89end
  
1<h1>Juegos</h1>
2<% unless flash[:notice].blank? %>
3 <div id="notification"><%= flash[:notice]%> </div>
4 <% end %>
5<% unless flash[:error].blank? %>
6 <div id="error"><%= flash[:error] %></div>
7<%end%>
8
9<br/>
10<br/>
11Escribir mas
  
1<h1>Inscribirse en Frets On Fire</h1>
2<% unless flash[:notice].blank? %>
3 <div id="notification"><%= flash[:notice]%> </div>
4 <% end %>
5<% unless flash[:error].blank? %>
6 <div id="error"><%= flash[:error] %></div>
7<%end%>
8
9<br/>
10<br/>
11Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
12
13<%form_for :FoFPlayer do |form| %>
14 <table>
15 <tr>
16 <td>
17 Modalidad:
18 </td>
19 <td>
20 <%= form.select :modalidad, ['fácil', 'medio', 'experto'] %>
21 </td>
22 </tr>
23
24 <tr>
25 <td colspan="2" align="right">
26 <%= submit_tag :Inscribirse%>
27 </td>
28 </tr>
29 </table>
30<%end%>
  
1<h1>Inscribirse en Frets On Fire</h1>
2<% unless flash[:notice].blank? %>
3 <div id="notification"><%= flash[:notice]%> </div>
4 <% end %>
5<% unless flash[:error].blank? %>
6 <div id="error"><%= flash[:error] %></div>
7<%end%>
8
9<br/>
10<br/>
11Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
  
11<%= @usuario.participante.nombre %>
22
3Gracias por suscribirse al evento mas grande de Software Libre en Nicaragua
3Gracias por suscribirse al evento mas grande de Software Libre en Nicaragua y al mejor evento por dos años consecutivos a nivel mundial.
44
5Mantengase informado en: http://linuxtour.org
5Manténgase informado en: http://linuxtour.org/sfd
Binary files differ
  
1class CreateFoFPlayers < ActiveRecord::Migration
2 def self.up
3 create_table :fo_f_players do |t|
4 t.column :modalidad, :string
5 t.timestamps
6 end
7 end
8
9 def self.down
10 drop_table :fo_f_players
11 end
12end
  
1class CorregirFofPlayer < ActiveRecord::Migration
2 def self.up
3 drop_table :fo_f_players
4 create_table :fo_f_players do |t|
5 t.column :participante_id, :integer
6 t.column :modalidad, :string
7 t.timestamps
8 end
9 end
10
11 def self.down
12 drop_table :participantes_tallers
13 end
14end
  
1class CorregirFofPlayer < ActiveRecord::Migration
2 def self.up
3 end
4
5 def self.down
6 end
7end
  
99#
1010# It's strongly recommended to check this file into your version control system.
1111
12ActiveRecord::Schema.define(:version => 20080917192859) do
12ActiveRecord::Schema.define(:version => 20090830232456) do
1313
1414 create_table "conferencias", :force => true do |t|
1515 t.string "nombre"
3535 t.datetime "updated_at"
3636 end
3737
38 create_table "fo_f_players", :force => true do |t|
39 t.integer "participante_id"
40 t.string "modalidad"
41 t.datetime "created_at"
42 t.datetime "updated_at"
43 end
44
3845 create_table "frets_on_fires", :force => true do |t|
3946 t.string "cancion"
4047 t.integer "puntaje"
9999 create_table "users", :force => true do |t|
100100 t.string "login"
101101 t.string "password"
102 t.string "role", :default => 'asistente'
102 t.string "role"
103103 end
104104
105105end
  
42754275Rendering template within layouts/normal
42764276Rendering index/welcome
42774277Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00195 (47%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
4278DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
4279DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
4280DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
4281
4282
4283Processing IndexController#welcome (for 127.0.0.1 at 2009-08-30 16:34:41) [GET]
4284 Session ID: BAh7CToMdXNlcl9pZGkfOhFvcmlnaW5hbF91cmkiGi9hZG1pbi9saXN0YV91
4285c3VhcmlvcyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZs
4286YXNoSGFzaHsABjoKQHVzZWR7ADoMY3NyZl9pZCIlYzQwNjdiYzhiZjg4Mjdi
4287M2Q3Njk5ZmVlNjRiMWY3YTg=--79e965329ec609bcae558292f28f973c92baffe5
4288 Parameters: {"action"=>"welcome", "controller"=>"index"}
4289Rendering template within layouts/normal
4290Rendering index/welcome
4291 User Load (0.000295) SELECT * FROM "users" WHERE ("users"."id" = 26) LIMIT 1
4292
4293
4294ActionView::TemplateError (You have a nil object when you didn't expect it!
4295The error occurred while evaluating nil.role) on line #21 of layouts/normal.html.erb:
429618: <%= link_to "Cerrar Sesion", :controller => 'account', :action => 'logout' %> |
429719: <%= link_to "Cambiar Contraseña", :controller => 'account', :action => 'change_password' %> |
429820: <%= link_to "Mis Talleres", :controller => 'account', :action => 'mis_talleres' %>
429921: <% if User.find_by_id(session[:user_id]).role == 'admin' %>
430022: | <%= link_to "Administracion", :controller => 'admin', :action => 'index' %>
430123: <%end%>
430224: <%else%>
4303
4304 app/views/layouts/normal.html.erb:21:in `_run_erb_47app47views47layouts47normal46html46erb'
4305 vendor/rails/actionpack/lib/action_view/base.rb:338:in `send'
4306 vendor/rails/actionpack/lib/action_view/base.rb:338:in `execute'
4307 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send'
4308 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render'
4309 vendor/rails/actionpack/lib/action_view/template.rb:35:in `render'
4310 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
4311 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
4312 vendor/rails/actionpack/lib/action_controller/layout.rb:257:in `render_without_benchmark'
4313 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4314 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
4315 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4316 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
4317 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
4318 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4319 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4320 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4321 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4322 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4323 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4324 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4325 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4326 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4327 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4328 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4329 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4330 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4331 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4332 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4333 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4334 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4335 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4336 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4337 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4338 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4339 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4340 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4341 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4342 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4343 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4344 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4345 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4346 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4347 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4348 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4349 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4350 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4351 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4352 vendor/rails/railties/lib/commands/servers/webrick.rb:66
4353 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4354 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4355 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4356 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4357 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4358 vendor/rails/railties/lib/commands/server.rb:39
4359 script/server:3:in `require'
4360 script/server:3
4361
4362Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4363
4364
4365Processing IndexController#welcome (for 127.0.0.1 at 2009-08-30 16:34:55) [GET]
4366 Session ID: 1602ec35eb22a53c5be557841529d8d2
4367 Parameters: {"action"=>"welcome", "controller"=>"index"}
4368Rendering template within layouts/normal
4369Rendering index/welcome
4370Completed in 0.00605 (165 reqs/sec) | Rendering: 0.00389 (64%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
4371
4372
4373Processing AccountController#login (for 127.0.0.1 at 2009-08-30 16:34:57) [GET]
4374 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
4375SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
4376 Parameters: {"action"=>"login", "controller"=>"account"}
4377Rendering template within layouts/normal
4378Rendering account/login
4379Completed in 0.01304 (76 reqs/sec) | Rendering: 0.01076 (82%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/login]
4380
4381
4382Processing AccountController#login (for 127.0.0.1 at 2009-08-30 16:35:01) [POST]
4383 Session ID: BAh7BzoMY3NyZl9pZCIlZTY5OWYwZmZlZjcwNWE1ZmE5NmE2MzhkYWE1OTVi
4384ZmEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
4385c2h7AAY6CkB1c2VkewA=--0e8c5e6d6741896c08765c4c27acb2829ad05044
4386 Parameters: {"commit"=>"Iniciar Sesion", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"login", "controller"=>"account", "user"=>{"login"=>"fitoria", "password"=>"qwerty"}}
4387 User Load (0.000399) SELECT * FROM "users" WHERE ("users"."password" = 'ba0d78f4f642cd3bef63fe9b62233c79949cee13' AND "users"."login" = 'fitoria') LIMIT 1
4388Redirected to http://0.0.0.0:3000/admin
4389Completed in 0.01842 (54 reqs/sec) | DB: 0.00040 (2%) | 302 Found [http://0.0.0.0/account/login]
4390
4391
4392Processing AdminController#index (for 127.0.0.1 at 2009-08-30 16:35:01) [GET]
4393 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4394bGFzaDo6Rmxhc2hIYXNoewYiC25vdGljZSIUSW5pY2lvIGV4aXN0b3NvBjoK
4395QHVzZWR7BkAIRjoMY3NyZl9pZCIlZTY5OWYwZmZlZjcwNWE1ZmE5NmE2Mzhk
4396YWE1OTViZmE=--0872617e03ee4aefc588cd0c66288ec9427971f8
4397 Parameters: {"action"=>"index", "controller"=>"admin"}
4398 User Load (0.000417) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4399Rendering template within layouts/admin
4400Rendering admin/index
4401Completed in 0.02695 (37 reqs/sec) | Rendering: 0.00942 (34%) | DB: 0.00042 (1%) | 200 OK [http://0.0.0.0/admin]
4402
4403
4404Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:01) [GET]
4405 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4406YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4407c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
4408c2VkewZACVQ=--d52f2db5451757feafce00bd2483b6313493f58c
4409 Parameters: {}
4410
4411
4412ActionController::RoutingError (No route matches "/javascripts/scriptaculous/prototype.js" with {:method=>:get}):
4413 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4414 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4415 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4416 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4417 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4418 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4419 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4420 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4421 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4422 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4423 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4424 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4425 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4426 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4427 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4428 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4429 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4430 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4431 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4432 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4433 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4434 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4435 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4436 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4437 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4438 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4439 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4440 /vendor/rails/railties/lib/commands/server.rb:39
4441 script/server:3:in `require'
4442 script/server:3
4443
4444Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4445
4446
4447Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:01) [GET]
4448 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4449YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4450c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
4451c2VkewZACVQ=--d52f2db5451757feafce00bd2483b6313493f58c
4452 Parameters: {}
4453
4454
4455ActionController::RoutingError (No route matches "/javascripts/scriptaculous/scriptaculous.js" with {:method=>:get}):
4456 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4457 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4458 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4459 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4460 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4461 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4462 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4463 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4464 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4465 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4466 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4467 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4468 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4469 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4470 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4471 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4472 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4473 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4474 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4475 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4476 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4477 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4478 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4479 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4480 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4481 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4482 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4483 /vendor/rails/railties/lib/commands/server.rb:39
4484 script/server:3:in `require'
4485 script/server:3
4486
4487Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4488
4489
4490Processing AdminController#lista_talleres (for 127.0.0.1 at 2009-08-30 16:35:03) [GET]
4491 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4492bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4493ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4494 Parameters: {"action"=>"lista_talleres", "controller"=>"admin"}
4495 User Load (0.000474) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4496 Taller Load (0.000902) SELECT * FROM "tallers" 
4497Rendering template within layouts/admin
4498Rendering admin/lista_talleres
4499Completed in 0.03828 (26 reqs/sec) | Rendering: 0.01548 (40%) | DB: 0.00138 (3%) | 200 OK [http://0.0.0.0/admin/lista_talleres]
4500
4501
4502Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:03) [GET]
4503 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4504YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4505c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4506 Parameters: {}
4507
4508
4509ActionController::RoutingError (No route matches "/javascripts/scriptaculous/scriptaculous.js" with {:method=>:get}):
4510 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4511 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4512 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4513 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4514 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4515 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4516 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4517 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4518 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4519 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4520 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4521 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4522 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4523 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4524 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4525 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4526 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4527 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4528 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4529 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4530 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4531 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4532 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4533 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4534 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4535 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4536 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4537 /vendor/rails/railties/lib/commands/server.rb:39
4538 script/server:3:in `require'
4539 script/server:3
4540
4541Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4542
4543
4544Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:03) [GET]
4545 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4546YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4547c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4548 Parameters: {}
4549
4550
4551ActionController::RoutingError (No route matches "/javascripts/scriptaculous/prototype.js" with {:method=>:get}):
4552 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4553 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4554 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4555 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4556 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4557 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4558 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4559 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4560 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4561 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4562 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4563 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4564 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4565 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4566 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4567 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4568 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4569 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4570 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4571 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4572 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4573 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4574 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4575 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4576 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4577 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4578 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4579 /vendor/rails/railties/lib/commands/server.rb:39
4580 script/server:3:in `require'
4581 script/server:3
4582
4583Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4584
4585
4586Processing AdminController#lista_talleres (for 127.0.0.1 at 2009-08-30 16:35:15) [GET]
4587 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4588bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4589ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4590 Parameters: {"action"=>"lista_talleres", "controller"=>"admin"}
4591 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4592 Taller Load (0.000999) SELECT * FROM "tallers" 
4593Rendering template within layouts/admin
4594Rendering admin/lista_talleres
4595Completed in 0.03455 (28 reqs/sec) | Rendering: 0.01300 (37%) | DB: 0.00140 (4%) | 200 OK [http://0.0.0.0/admin/lista_talleres]
4596
4597
4598Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:15) [GET]
4599 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4600YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4601c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4602 Parameters: {}
4603
4604
4605ActionController::RoutingError (No route matches "/javascripts/scriptaculous/scriptaculous.js" with {:method=>:get}):
4606 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4607 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4608 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4609 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4610 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4611 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4612 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4613 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4614 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4615 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4616 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4617 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4618 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4619 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4620 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4621 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4622 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4623 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4624 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4625 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4626 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4627 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4628 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4629 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4630 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4631 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4632 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4633 /vendor/rails/railties/lib/commands/server.rb:39
4634 script/server:3:in `require'
4635 script/server:3
4636
4637Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4638
4639
4640Processing ApplicationController#index (for 127.0.0.1 at 2009-08-30 16:35:15) [GET]
4641 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4642YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4643c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4644 Parameters: {}
4645
4646
4647ActionController::RoutingError (No route matches "/javascripts/scriptaculous/prototype.js" with {:method=>:get}):
4648 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4649 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4650 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4651 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4652 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4653 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4654 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4655 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4656 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4657 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4658 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4659 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4660 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4661 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4662 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4663 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4664 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4665 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4666 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4667 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4668 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4669 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4670 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4671 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4672 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4673 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4674 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4675 /vendor/rails/railties/lib/commands/server.rb:39
4676 script/server:3:in `require'
4677 script/server:3
4678
4679Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4680
4681
4682Processing IndexController#welcome (for 127.0.0.1 at 2009-08-30 16:35:18) [GET]
4683 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4684bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4685ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4686 Parameters: {"action"=>"welcome", "controller"=>"index"}
4687Rendering template within layouts/normal
4688Rendering index/welcome
4689 User Load (0.001424) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4690Completed in 0.01995 (50 reqs/sec) | Rendering: 0.01635 (81%) | DB: 0.00142 (7%) | 200 OK [http://0.0.0.0/]
4691
4692
4693Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:35:19) [GET]
4694 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4695YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4696c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4697 Parameters: {"action"=>"index", "controller"=>"tallers"}
4698 Taller Load (0.001405) SELECT * FROM "tallers" 
4699Rendering template within layouts/normal
4700Rendering tallers/index
4701 User Load (0.001445) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4702Completed in 0.03451 (28 reqs/sec) | Rendering: 0.02215 (64%) | DB: 0.00285 (8%) | 200 OK [http://0.0.0.0/tallers]
4703
4704
4705Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:38:13) [GET]
4706 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4707bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4708ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4709 Parameters: {"action"=>"index", "controller"=>"tallers"}
4710 Taller Load (0.004316) SELECT * FROM "tallers" ORDER BY fecha, hora ASC
4711Rendering template within layouts/normal
4712Rendering tallers/index
4713 User Load (0.000493) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4714Completed in 0.04408 (22 reqs/sec) | Rendering: 0.02873 (65%) | DB: 0.00481 (10%) | 200 OK [http://0.0.0.0/tallers]
4715
4716
4717Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:38:15) [GET]
4718 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4719YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4720c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4721 Parameters: {"action"=>"index", "controller"=>"tallers"}
4722 Taller Load (0.001548) SELECT * FROM "tallers" ORDER BY fecha, hora ASC
4723Rendering template within layouts/normal
4724Rendering tallers/index
4725 User Load (0.000401) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4726Completed in 0.06269 (15 reqs/sec) | Rendering: 0.04438 (70%) | DB: 0.00195 (3%) | 200 OK [http://0.0.0.0/tallers]
4727
4728
4729Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:39:23) [GET]
4730 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4731bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4732ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4733 Parameters: {"action"=>"index", "controller"=>"tallers"}
4734 Taller Load (0.001609) SELECT * FROM "tallers" ORDER BY fecha, hora ASC
4735Rendering template within layouts/normal
4736Rendering tallers/index
4737 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4738Completed in 0.03541 (28 reqs/sec) | Rendering: 0.02409 (68%) | DB: 0.00200 (5%) | 200 OK [http://0.0.0.0/tallers]
4739
4740
4741Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:39:26) [GET]
4742 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4743YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4744c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4745 Parameters: {"action"=>"index", "controller"=>"tallers"}
4746 Taller Load (0.001546) SELECT * FROM "tallers" ORDER BY fecha, hora ASC
4747Rendering template within layouts/normal
4748Rendering tallers/index
4749 User Load (0.000421) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4750Completed in 0.13648 (7 reqs/sec) | Rendering: 0.12438 (91%) | DB: 0.00197 (1%) | 200 OK [http://0.0.0.0/tallers]
4751
4752
4753Processing TallersController#index (for 127.0.0.1 at 2009-08-30 16:39:41) [GET]
4754 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4755bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4756ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4757 Parameters: {"action"=>"index", "controller"=>"tallers"}
4758 Taller Load (0.001545) SELECT * FROM "tallers" ORDER BY fecha, hora DESC
4759Rendering template within layouts/normal
4760Rendering tallers/index
4761 User Load (0.000408) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4762Completed in 0.03498 (28 reqs/sec) | Rendering: 0.02311 (66%) | DB: 0.00195 (5%) | 200 OK [http://0.0.0.0/tallers]
4763
4764
4765Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:13:23) [GET]
4766 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4767YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4768c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4769 Parameters: {"action"=>"index", "controller"=>"juegos"}
4770
4771
4772NoMethodError (undefined method `normal' for #<JuegosController:0xb68cdb54>):
4773 /vendor/rails/actionpack/lib/action_controller/layout.rb:227:in `send!'
4774 /vendor/rails/actionpack/lib/action_controller/layout.rb:227:in `active_layout'
4775 /vendor/rails/actionpack/lib/action_controller/layout.rb:287:in `pick_layout'
4776 /vendor/rails/actionpack/lib/action_controller/layout.rb:247:in `render_without_benchmark'
4777 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4778 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
4779 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4780 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
4781 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
4782 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4783 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4784 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4785 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4786 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4787 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4788 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4789 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4790 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4791 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4792 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4793 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4794 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4795 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4796 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4797 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4798 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4799 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4800 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4801 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4802 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4803 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4804 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4805 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4806 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4807 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4808 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4809 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4810 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4811 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4812 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4813 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4814 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4815 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4816 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4817 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4818 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4819 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4820 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4821 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4822 /vendor/rails/railties/lib/commands/server.rb:39
4823 script/server:3:in `require'
4824 script/server:3
4825
4826Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4827
4828
4829Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:14:24) [GET]
4830 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4831bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4832ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4833 Parameters: {"action"=>"index", "controller"=>"juegos"}
4834Rendering template within layouts/normal
4835Rendering juegos/index
4836 User Load (0.000452) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4837Completed in 0.01868 (53 reqs/sec) | Rendering: 0.01596 (85%) | DB: 0.00045 (2%) | 200 OK [http://0.0.0.0/juegos]
4838
4839
4840Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:14:31) [GET]
4841 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
4842YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4843c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
4844 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
4845 User Load (0.000399) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4846
4847
4848ActiveRecord::StatementInvalid (Could not find table 'fo_f_players'):
4849 /vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb:29:in `table_structure'
4850 /vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb:28:in `returning'
4851 /vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb:28:in `table_structure'
4852 /vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb:189:in `columns'
4853 /vendor/rails/activerecord/lib/active_record/base.rb:1145:in `columns'
4854 /vendor/rails/activerecord/lib/active_record/base.rb:2598:in `attributes_from_column_definition_without_lock'
4855 /vendor/rails/activerecord/lib/active_record/locking/optimistic.rb:55:in `attributes_from_column_definition'
4856 /vendor/rails/activerecord/lib/active_record/base.rb:2126:in `initialize'
4857 /app/controllers/juegos_controller.rb:8:in `new'
4858 /app/controllers/juegos_controller.rb:8:in `inscribirseFoF'
4859 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4860 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4861 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4862 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4863 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4864 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4865 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4866 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4867 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4868 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4869 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4870 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4871 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4872 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4873 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4874 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4875 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4876 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4877 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4878 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4879 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4880 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4881 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4882 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4883 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4884 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4885 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4886 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4887 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4888 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4889 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4890 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4891 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4892 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4893 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4894 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4895 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4896 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4897 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4898 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4899 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4900 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4901 /vendor/rails/railties/lib/commands/server.rb:39
4902 script/server:3:in `require'
4903 script/server:3
4904
4905Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4906DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
4907 SQL (0.001512)  SELECT name
4908 FROM sqlite_master
4909 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4910
4911 SQL (0.000907) SELECT version FROM schema_migrations
4912 SQL (0.000726) SELECT version FROM schema_migrations
4913 SQL (0.000704) SELECT version FROM schema_migrations
4914 SQL (0.000702) SELECT version FROM schema_migrations
4915 SQL (0.000691) SELECT version FROM schema_migrations
4916 SQL (0.000702) SELECT version FROM schema_migrations
4917 SQL (0.000698) SELECT version FROM schema_migrations
4918 SQL (0.000718) SELECT version FROM schema_migrations
4919 SQL (0.000694) SELECT version FROM schema_migrations
4920 SQL (0.000690) SELECT version FROM schema_migrations
4921 SQL (0.000701) SELECT version FROM schema_migrations
4922 SQL (0.000732) SELECT version FROM schema_migrations
4923 SQL (0.000887) SELECT version FROM schema_migrations
4924 SQL (0.000750) SELECT version FROM schema_migrations
4925 SQL (0.000714) SELECT version FROM schema_migrations
4926 SQL (0.000699) SELECT version FROM schema_migrations
4927Migrating to CreateTallers (1)
4928 SQL (0.000711) SELECT version FROM schema_migrations
4929Migrating to CreateConferencias (2)
4930 SQL (0.000737) SELECT version FROM schema_migrations
4931Migrating to CreateUniversidads (3)
4932 SQL (0.000706) SELECT version FROM schema_migrations
4933Migrating to CreateEmpresas (4)
4934 SQL (0.000700) SELECT version FROM schema_migrations
4935Migrating to CreateUsers (5)
4936 SQL (0.000883) SELECT version FROM schema_migrations
4937Migrating to AddUserRole (6)
4938 SQL (0.000984) SELECT version FROM schema_migrations
4939Migrating to CreateParticipantes (7)
4940 SQL (0.001002) SELECT version FROM schema_migrations
4941Migrating to AddHorasFinales (8)
4942 SQL (0.000964) SELECT version FROM schema_migrations
4943Migrating to AddUniversidadId (9)
4944 SQL (0.001001) SELECT version FROM schema_migrations
4945Migrating to AddParticipanteTallerTable (10)
4946 SQL (0.000960) SELECT version FROM schema_migrations
4947Migrating to CorregirParticipantesTaller (11)
4948 SQL (0.000950) SELECT version FROM schema_migrations
4949Migrating to AddUserToParticipante (12)
4950 SQL (0.000972) SELECT version FROM schema_migrations
4951Migrating to AgregarCupoTaller (13)
4952 SQL (0.005455) SELECT version FROM schema_migrations
4953Migrating to CreateFretsOnFires (20080908203124)
4954 SQL (0.001070) SELECT version FROM schema_migrations
4955Migrating to CreateDistros (20080917191920)
4956 SQL (0.000953) SELECT version FROM schema_migrations
4957Migrating to CreateInstalacions (20080917192859)
4958 SQL (0.000951) SELECT version FROM schema_migrations
4959Migrating to CreateFoFPlayers (20090830220527)
4960 SQL (0.000969) SELECT version FROM schema_migrations
4961 SQL (0.000273) select sqlite_version(*)
4962 SQL (0.002934) CREATE TABLE "fo_f_players" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "modalidad" varchar(255) DEFAULT NULL NULL, "created_at" datetime DEFAULT NULL NULL, "updated_at" datetime DEFAULT NULL NULL) 
4963 SQL (0.003381) INSERT INTO schema_migrations (version) VALUES ('20090830220527')
4964 SQL (0.001246) SELECT version FROM schema_migrations
4965 SQL (0.000830)  SELECT name
4966 FROM sqlite_master
4967 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4968
4969 SQL (0.000109) PRAGMA index_list("conferencias")
4970 SQL (0.000083) PRAGMA index_list("distros")
4971 SQL (0.000121) PRAGMA index_list("empresas")
4972 SQL (0.000084) PRAGMA index_list("fo_f_players")
4973 SQL (0.000083) PRAGMA index_list("frets_on_fires")
4974 SQL (0.000081) PRAGMA index_list("instalacions")
4975 SQL (0.000116) PRAGMA index_list("participantes")
4976 SQL (0.000084) PRAGMA index_list("participantes_tallers")
4977 SQL (0.000100) PRAGMA index_list("tallers")
4978 SQL (0.000160) PRAGMA index_list("universidads")
4979 SQL (0.000082) PRAGMA index_list("users")
4980
4981
4982Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:14:54) [GET]
4983 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4984bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
4985ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
4986 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
4987 User Load (0.000423) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4988 Participante Load (0.000345) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
4989
4990
4991NoMethodError (undefined method `participante=' for #<FoFPlayer:0xb6a50e7c>):
4992 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
4993 /app/controllers/juegos_controller.rb:9:in `inscribirseFoF'
4994 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4995 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4996 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4997 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4998 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4999 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5000 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5001 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5002 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5003 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5004 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5005 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5006 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5007 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5008 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5009 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5010 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5011 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5012 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5013 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5014 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5015 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5016 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5017 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5018 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5019 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5020 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5021 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5022 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5023 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5024 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5025 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5026 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5027 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5028 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5029 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5030 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5031 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5032 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5033 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5034 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5035 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5036 /vendor/rails/railties/lib/commands/server.rb:39
5037 script/server:3:in `require'
5038 script/server:3
5039
5040Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5041
5042
5043Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:17:03) [GET]
5044 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5045YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5046c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5047 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5048Rendering template within layouts/normal
5049Rendering juegos/inscribirseFoF
5050ERROR: compiling _run_erb_47app47views47juegos47inscribirseFoF46html46erb RAISED compile error
5051/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:13: syntax error, unexpected ';'
5052; form_for :FoFPlayer |form| ; _erbout.concat "\n <ta...
5053 ^
5054/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33: syntax error, unexpected kEND, expecting $end
5055Function body: def _run_erb_47app47views47juegos47inscribirseFoF46html46erb(local_assigns)
5056_erbout = ''; _erbout.concat "<h1>Inscribirse en Frets On Fire</h1>\n"
5057; unless flash[:notice].blank? ; _erbout.concat "\n\t <div id=\"notification\">"
5058; _erbout.concat(( flash[:notice]).to_s); _erbout.concat " </div>\n\t\t"
5059; end ; _erbout.concat "\n"
5060; unless flash[:error].blank? ; _erbout.concat "\n <div id=\"error\">"
5061; _erbout.concat(( flash[:error] ).to_s); _erbout.concat "</div>\n"
5062; end; _erbout.concat "\n\n<br/>\n<br/>\nPara esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.\n\n"
5063
5064
5065
5066
5067
5068; form_for :FoFPlayer |form| ; _erbout.concat "\n <table>\n <tr>\n <td>\n Modalidad:\n </td>\n <td>\n "
5069
5070
5071
5072
5073
5074
5075; _erbout.concat(( form.text_field :modalidad).to_s); _erbout.concat "\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" align=\"right\">\n "
5076
5077
5078
5079
5080; _erbout.concat(( submit_tag :Inscribirse).to_s); _erbout.concat "\n </td>\n </tr>\n </table>\n"
5081
5082
5083
5084; end; _erbout.concat "\n\n\n"
5085
5086
5087; _erbout
5088end
5089Backtrace: /media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33:in `compile_template'
5090/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5091/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5092/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5093/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5094/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5095/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5096/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5097/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5098/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5099/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5100/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5101/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5102/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5103/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5104/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5105/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5106/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5107/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5108/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5109/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5110/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5111/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5112/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5113/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5114/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5115/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5116/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5117/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5118/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5119/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5120/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5121/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5122/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5123/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5124/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5125/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5126/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5127/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5128/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5129/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5130/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5131/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5132/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5133/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5134/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5135/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5136/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/servers/webrick.rb:66
5137/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5138/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5139/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5140/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5141/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5142/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/server.rb:39
5143script/server:3:in `require'
5144script/server:3
5145
5146
5147ActionView::TemplateError (compile error
5148/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:13: syntax error, unexpected ';'
5149; form_for :FoFPlayer |form| ; _erbout.concat "\n <ta...
5150 ^
5151/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33: syntax error, unexpected kEND, expecting $end) on line #13 of juegos/inscribirseFoF.html.erb:
515210: <br/>
515311: Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
515412:
515513: <%form_for :FoFPlayer |form| %>
515614: <table>
515715: <tr>
515816: <td>
5159
5160 app/views/juegos/inscribirseFoF.html.erb:33:in `compile_template'
5161 vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5162 vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5163 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5164 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5165 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5166 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5167 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5168 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5169 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5170 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5171 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5172 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5173 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5174 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5175 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5176 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5177 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5178 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5179 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5180 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5181 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5182 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5183 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5184 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5185 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5186 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5187 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5188 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5189 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5190 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5191 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5192 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5193 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5194 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5195 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5196 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5197 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5198 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5199 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5200 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5201 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5202 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5203 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5204 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5205 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5206 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5207 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5208 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5209 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5210 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5211 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5212 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5213 vendor/rails/railties/lib/commands/server.rb:39
5214 script/server:3:in `require'
5215 script/server:3
5216
5217Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5218
5219
5220Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:17:05) [GET]
5221 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5222bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5223ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5224 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5225Rendering template within layouts/normal
5226Rendering juegos/inscribirseFoF
5227ERROR: compiling _run_erb_47app47views47juegos47inscribirseFoF46html46erb RAISED compile error
5228/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:13: syntax error, unexpected ';'
5229; form_for :FoFPlayer |form| ; _erbout.concat "\n <ta...
5230 ^
5231/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33: syntax error, unexpected kEND, expecting $end
5232Function body: def _run_erb_47app47views47juegos47inscribirseFoF46html46erb(local_assigns)
5233_erbout = ''; _erbout.concat "<h1>Inscribirse en Frets On Fire</h1>\n"
5234; unless flash[:notice].blank? ; _erbout.concat "\n\t <div id=\"notification\">"
5235; _erbout.concat(( flash[:notice]).to_s); _erbout.concat " </div>\n\t\t"
5236; end ; _erbout.concat "\n"
5237; unless flash[:error].blank? ; _erbout.concat "\n <div id=\"error\">"
5238; _erbout.concat(( flash[:error] ).to_s); _erbout.concat "</div>\n"
5239; end; _erbout.concat "\n\n<br/>\n<br/>\nPara esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.\n\n"
5240
5241
5242
5243
5244
5245; form_for :FoFPlayer |form| ; _erbout.concat "\n <table>\n <tr>\n <td>\n Modalidad:\n </td>\n <td>\n "
5246
5247
5248
5249
5250
5251
5252; _erbout.concat(( form.text_field :modalidad).to_s); _erbout.concat "\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" align=\"right\">\n "
5253
5254
5255
5256
5257; _erbout.concat(( submit_tag :Inscribirse).to_s); _erbout.concat "\n </td>\n </tr>\n </table>\n"
5258
5259
5260
5261; end; _erbout.concat "\n\n\n"
5262
5263
5264; _erbout
5265end
5266Backtrace: /media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33:in `compile_template'
5267/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5268/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5269/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5270/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5271/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5272/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5273/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5274/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5275/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5276/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5277/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5278/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5279/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5280/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5281/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5282/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5283/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5284/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5285/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5286/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5287/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5288/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5289/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5290/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5291/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5292/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5293/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5294/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5295/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5296/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5297/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5298/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5299/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5300/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5301/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5302/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5303/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5304/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5305/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5306/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5307/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5308/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5309/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5310/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5311/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5312/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5313/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/servers/webrick.rb:66
5314/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5315/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5316/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5317/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5318/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5319/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/server.rb:39
5320script/server:3:in `require'
5321script/server:3
5322
5323
5324ActionView::TemplateError (compile error
5325/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:13: syntax error, unexpected ';'
5326; form_for :FoFPlayer |form| ; _erbout.concat "\n <ta...
5327 ^
5328/media/disk/home/fitoria/code/sfd-reg/app/views/juegos/inscribirseFoF.html.erb:33: syntax error, unexpected kEND, expecting $end) on line #13 of juegos/inscribirseFoF.html.erb:
532910: <br/>
533011: Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
533112:
533213: <%form_for :FoFPlayer |form| %>
533314: <table>
533415: <tr>
533516: <td>
5336
5337 app/views/juegos/inscribirseFoF.html.erb:33:in `compile_template'
5338 vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5339 vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5340 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5341 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5342 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5343 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5344 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5345 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5346 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5347 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5348 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5349 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5350 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5351 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5352 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5353 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5354 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5355 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5356 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5357 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5358 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5359 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5360 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5361 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5362 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5363 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5364 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5365 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5366 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5367 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5368 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5369 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5370 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5371 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5372 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5373 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5374 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5375 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5376 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5377 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5378 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5379 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5380 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5381 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5382 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5383 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5384 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5385 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5386 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5387 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5388 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5389 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5390 vendor/rails/railties/lib/commands/server.rb:39
5391 script/server:3:in `require'
5392 script/server:3
5393
5394Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5395
5396
5397Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:20:47) [GET]
5398 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5399YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5400c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5401 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5402Rendering template within layouts/normal
5403Rendering juegos/inscribirseFoF
5404
5405
5406ActionView::TemplateError (undefined method `fo_f_players_path' for #<ActionView::Base:0xb69740f8>) on line #13 of juegos/inscribirseFoF.html.erb:
540710: <br/>
540811: Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
540912:
541013: <%form_for @fof_player do |form| %>
541114: <table>
541215: <tr>
541316: <td>
5414
5415 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `send!'
5416 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `polymorphic_url'
5417 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:108:in `polymorphic_path'
5418 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:269:in `apply_form_for_options!'
5419 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:248:in `form_for'
5420 app/views/juegos/inscribirseFoF.html.erb:13:in `_run_erb_47app47views47juegos47inscribirseFoF46html46erb'
5421 vendor/rails/actionpack/lib/action_view/base.rb:338:in `send'
5422 vendor/rails/actionpack/lib/action_view/base.rb:338:in `execute'
5423 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send'
5424 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render'
5425 vendor/rails/actionpack/lib/action_view/template.rb:35:in `render'
5426 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5427 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5428 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5429 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5430 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5431 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5432 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5433 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5434 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5435 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5436 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5437 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5438 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5439 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5440 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5441 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5442 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5443 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5444 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5445 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5446 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5447 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5448 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5449 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5450 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5451 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5452 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5453 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5454 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5455 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5456 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5457 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5458 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5459 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5460 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5461 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5462 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5463 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5464 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5465 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5466 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5467 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5468 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5469 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5470 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5471 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5472 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5473 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5474 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5475 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5476 vendor/rails/railties/lib/commands/server.rb:39
5477 script/server:3:in `require'
5478 script/server:3
5479
5480Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5481
5482
5483Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:20:50) [GET]
5484 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5485bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5486ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5487 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5488Rendering template within layouts/normal
5489Rendering juegos/inscribirseFoF
5490
5491
5492ActionView::TemplateError (undefined method `fo_f_players_path' for #<ActionView::Base:0xb6a2f2b8>) on line #13 of juegos/inscribirseFoF.html.erb:
549310: <br/>
549411: Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
549512:
549613: <%form_for @fof_player do |form| %>
549714: <table>
549815: <tr>
549916: <td>
5500
5501 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `send!'
5502 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `polymorphic_url'
5503 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:108:in `polymorphic_path'
5504 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:269:in `apply_form_for_options!'
5505 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:248:in `form_for'
5506 app/views/juegos/inscribirseFoF.html.erb:13:in `_run_erb_47app47views47juegos47inscribirseFoF46html46erb'
5507 vendor/rails/actionpack/lib/action_view/base.rb:338:in `send'
5508 vendor/rails/actionpack/lib/action_view/base.rb:338:in `execute'
5509 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send'
5510 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render'
5511 vendor/rails/actionpack/lib/action_view/template.rb:35:in `render'
5512 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5513 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5514 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5515 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5516 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5517 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5518 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5519 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5520 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5521 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5522 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5523 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5524 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5525 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5526 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5527 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5528 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5529 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5530 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5531 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5532 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5533 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5534 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5535 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5536 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5537 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5538 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5539 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5540 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5541 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5542 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5543 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5544 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5545 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5546 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5547 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5548 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5549 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5550 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5551 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5552 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5553 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5554 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5555 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5556 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5557 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5558 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5559 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5560 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5561 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5562 vendor/rails/railties/lib/commands/server.rb:39
5563 script/server:3:in `require'
5564 script/server:3
5565
5566Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5567
5568
5569Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:21:44) [GET]
5570 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5571YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5572c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5573 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5574Rendering template within layouts/normal
5575Rendering juegos/inscribirseFoF
5576
5577
5578ActionView::TemplateError (undefined method `fo_f_players_path' for #<ActionView::Base:0xb68c5af8>) on line #13 of juegos/inscribirseFoF.html.erb:
557910: <br/>
558011: Para esto necesitamos que elija una modalidad entre: facil, medio o experto. Solo se permite participar en una sola modalidad.
558112:
558213: <%form_for @fof_player do |form| %>
558314: <table>
558415: <tr>
558516: <td>
5586
5587 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `send!'
5588 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:101:in `polymorphic_url'
5589 vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb:108:in `polymorphic_path'
5590 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:269:in `apply_form_for_options!'
5591 vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb:248:in `form_for'
5592 app/views/juegos/inscribirseFoF.html.erb:13:in `_run_erb_47app47views47juegos47inscribirseFoF46html46erb'
5593 vendor/rails/actionpack/lib/action_view/base.rb:338:in `send'
5594 vendor/rails/actionpack/lib/action_view/base.rb:338:in `execute'
5595 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `send'
5596 vendor/rails/actionpack/lib/action_view/template_handlers/compilable.rb:29:in `render'
5597 vendor/rails/actionpack/lib/action_view/template.rb:35:in `render'
5598 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5599 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5600 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5601 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5602 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5603 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5604 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5605 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5606 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5607 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5608 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5609 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5610 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5611 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5612 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5613 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5614 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5615 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5616 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5617 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5618 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5619 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5620 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5621 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5622 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5623 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5624 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5625 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5626 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5627 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5628 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5629 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5630 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5631 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5632 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5633 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5634 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5635 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5636 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5637 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5638 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5639 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5640 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5641 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5642 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5643 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5644 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5645 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5646 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5647 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5648 vendor/rails/railties/lib/commands/server.rb:39
5649 script/server:3:in `require'
5650 script/server:3
5651
5652Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5653
5654
5655Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:22:01) [GET]
5656 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5657bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5658ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5659 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5660Rendering template within layouts/normal
5661Rendering juegos/inscribirseFoF
5662 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5663Completed in 0.02409 (41 reqs/sec) | Rendering: 0.01595 (66%) | DB: 0.00038 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
5664
5665
5666Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:22:09) [POST]
5667 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5668YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5669c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5670 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
5671 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5672 Participante Load (0.000289) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
5673
5674
5675NoMethodError (undefined method `participante=' for #<FoFPlayer:0xb6845a9c>):
5676 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
5677 /app/controllers/juegos_controller.rb:11:in `inscribirseFoF'
5678 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5679 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5680 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5681 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5682 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5683 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5684 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5685 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5686 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5687 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5688 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5689 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5690 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5691 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5692 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5693 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5694 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5695 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5696 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5697 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5698 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5699 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5700 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5701 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5702 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5703 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5704 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5705 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5706 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5707 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5708 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5709 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5710 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5711 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5712 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5713 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5714 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5715 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5716 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5717 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5718 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5719 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5720 /vendor/rails/railties/lib/commands/server.rb:39
5721 script/server:3:in `require'
5722 script/server:3
5723
5724Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5725DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
5726DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
5727 SQL (0.001387)  SELECT name
5728 FROM sqlite_master
5729 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5730
5731 SQL (0.000877) SELECT version FROM schema_migrations
5732 SQL (0.000781) SELECT version FROM schema_migrations
5733 SQL (0.000746) SELECT version FROM schema_migrations
5734 SQL (0.000732) SELECT version FROM schema_migrations
5735 SQL (0.000727) SELECT version FROM schema_migrations
5736 SQL (0.000854) SELECT version FROM schema_migrations
5737 SQL (0.000785) SELECT version FROM schema_migrations
5738 SQL (0.000744) SELECT version FROM schema_migrations
5739 SQL (0.000751) SELECT version FROM schema_migrations
5740 SQL (0.000748) SELECT version FROM schema_migrations
5741 SQL (0.000732) SELECT version FROM schema_migrations
5742 SQL (0.000798) SELECT version FROM schema_migrations
5743 SQL (0.000768) SELECT version FROM schema_migrations
5744 SQL (0.000732) SELECT version FROM schema_migrations
5745 SQL (0.000802) SELECT version FROM schema_migrations
5746 SQL (0.000761) SELECT version FROM schema_migrations
5747 SQL (0.000765) SELECT version FROM schema_migrations
5748Migrating to CreateTallers (1)
5749 SQL (0.000789) SELECT version FROM schema_migrations
5750Migrating to CreateConferencias (2)
5751 SQL (0.000736) SELECT version FROM schema_migrations
5752Migrating to CreateUniversidads (3)
5753 SQL (0.000724) SELECT version FROM schema_migrations
5754Migrating to CreateEmpresas (4)
5755 SQL (0.000752) SELECT version FROM schema_migrations
5756Migrating to CreateUsers (5)
5757 SQL (0.000765) SELECT version FROM schema_migrations
5758Migrating to AddUserRole (6)
5759 SQL (0.000741) SELECT version FROM schema_migrations
5760Migrating to CreateParticipantes (7)
5761 SQL (0.000720) SELECT version FROM schema_migrations
5762Migrating to AddHorasFinales (8)
5763 SQL (0.000827) SELECT version FROM schema_migrations
5764Migrating to AddUniversidadId (9)
5765 SQL (0.000741) SELECT version FROM schema_migrations
5766Migrating to AddParticipanteTallerTable (10)
5767 SQL (0.000778) SELECT version FROM schema_migrations
5768Migrating to CorregirParticipantesTaller (11)
5769 SQL (0.000726) SELECT version FROM schema_migrations
5770Migrating to AddUserToParticipante (12)
5771 SQL (0.000723) SELECT version FROM schema_migrations
5772Migrating to AgregarCupoTaller (13)
5773 SQL (0.000726) SELECT version FROM schema_migrations
5774Migrating to CreateFretsOnFires (20080908203124)
5775 SQL (0.000728) SELECT version FROM schema_migrations
5776Migrating to CreateDistros (20080917191920)
5777 SQL (0.000722) SELECT version FROM schema_migrations
5778Migrating to CreateInstalacions (20080917192859)
5779 SQL (0.000726) SELECT version FROM schema_migrations
5780Migrating to CreateFoFPlayers (20090830220527)
5781 SQL (0.000745) SELECT version FROM schema_migrations
5782Migrating to CorregirFofPlayer (20090830232456)
5783 SQL (0.000769) SELECT version FROM schema_migrations
5784 SQL (0.023910) DROP TABLE "fo_f_players"
5785 SQL (0.000234) select sqlite_version(*)
5786 SQL (0.003384) CREATE TABLE "fo_f_players" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "participante_id" integer DEFAULT NULL NULL, "modalidad" varchar(255) DEFAULT NULL NULL, "created_at" datetime DEFAULT NULL NULL, "updated_at" datetime DEFAULT NULL NULL) 
5787 SQL (0.006857) INSERT INTO schema_migrations (version) VALUES ('20090830232456')
5788 SQL (0.000942) SELECT version FROM schema_migrations
5789 SQL (0.000627)  SELECT name
5790 FROM sqlite_master
5791 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5792
5793 SQL (0.000123) PRAGMA index_list("conferencias")
5794 SQL (0.000064) PRAGMA index_list("distros")
5795 SQL (0.000064) PRAGMA index_list("empresas")
5796 SQL (0.000066) PRAGMA index_list("fo_f_players")
5797 SQL (0.000069) PRAGMA index_list("frets_on_fires")
5798 SQL (0.000069) PRAGMA index_list("instalacions")
5799 SQL (0.000063) PRAGMA index_list("participantes")
5800 SQL (0.000061) PRAGMA index_list("participantes_tallers")
5801 SQL (0.000099) PRAGMA index_list("tallers")
5802 SQL (0.000066) PRAGMA index_list("universidads")
5803 SQL (0.000060) PRAGMA index_list("users")
5804
5805
5806Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:27:19) [GET]
5807 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5808bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5809ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5810 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5811Rendering template within layouts/normal
5812Rendering juegos/inscribirseFoF
5813 User Load (0.000406) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5814Completed in 0.02739 (36 reqs/sec) | Rendering: 0.01725 (62%) | DB: 0.00041 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
5815
5816
5817Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:27:22) [POST]
5818 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5819YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5820c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5821 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"face"}}
5822 User Load (0.000417) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5823 Participante Load (0.000289) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
5824
5825
5826NoMethodError (undefined method `participante=' for #<FoFPlayer:0xb688b394>):
5827 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
5828 /app/controllers/juegos_controller.rb:11:in `inscribirseFoF'
5829 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5830 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5831 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5832 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5833 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5834 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5835 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5836 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5837 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5838 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5839 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5840 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5841 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5842 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5843 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5844 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5845 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5846 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5847 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5848 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5849 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5850 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5851 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5852 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5853 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5854 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5855 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5856 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5857 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5858 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5859 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5860 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5861 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5862 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5863 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5864 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5865 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5866 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5867 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5868 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5869 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5870 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5871 /vendor/rails/railties/lib/commands/server.rb:39
5872 script/server:3:in `require'
5873 script/server:3
5874
5875Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5876
5877
5878Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:31:23) [GET]
5879 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5880bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5881ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5882 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5883Rendering template within layouts/normal
5884Rendering juegos/inscribirseFoF
5885 User Load (0.000396) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5886Completed in 0.02713 (36 reqs/sec) | Rendering: 0.01649 (60%) | DB: 0.00040 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
5887
5888
5889Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:31:26) [POST]
5890 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5891YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5892c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5893 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"asdfasd"}}
5894 User Load (0.000411) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5895 Participante Load (0.000322) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
5896
5897
5898NoMethodError (undefined method `participante=' for #<FoFPlayer:0xb68d2f28>):
5899 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
5900 /app/controllers/juegos_controller.rb:11:in `inscribirseFoF'
5901 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5902 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5903 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5904 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5905 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5906 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5907 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5908 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5909 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5910 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5911 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5912 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5913 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5914 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5915 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5916 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5917 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5918 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5919 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5920 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5921 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5922 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5923 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5924 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5925 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5926 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5927 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5928 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5929 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5930 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5931 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5932 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5933 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5934 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5935 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5936 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5937 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5938 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5939 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5940 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5941 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5942 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5943 /vendor/rails/railties/lib/commands/server.rb:39
5944 script/server:3:in `require'
5945 script/server:3
5946
5947Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5948DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
5949
5950
5951Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:36:37) [GET]
5952 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5953bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
5954ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
5955 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
5956Rendering template within layouts/normal
5957Rendering juegos/inscribirseFoF
5958 User Load (0.000502) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5959Completed in 0.03351 (29 reqs/sec) | Rendering: 0.02358 (70%) | DB: 0.00050 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
5960
5961
5962Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:36:41) [POST]
5963 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
5964YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5965c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
5966 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"asdfasdf"}}
5967 User Load (0.000418) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
5968 Participante Load (0.000295) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
5969
5970
5971NoMethodError (undefined method `participante=' for #<FoFPlayer:0xb6838374>):
5972 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
5973 /app/controllers/juegos_controller.rb:11:in `inscribirseFoF'
5974 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5975 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5976 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5977 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5978 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5979 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5980 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5981 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5982 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5983 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5984 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5985 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5986 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5987 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5988 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5989 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5990 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5991 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5992 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5993 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5994 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5995 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5996 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5997 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5998 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5999 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6000 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6001 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6002 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6003 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6004 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6005 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6006 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6007 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6008 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6009 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6010 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6011 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6012 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6013 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6014 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6015 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6016 /vendor/rails/railties/lib/commands/server.rb:39
6017 script/server:3:in `require'
6018 script/server:3
6019
6020Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6021DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
6022 FoFPlayer Load (0.000966) SELECT * FROM "fo_f_players" 
6023DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
6024DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
6025
6026
6027Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:38:50) [GET]
6028 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6029bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
6030ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
6031 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
6032Rendering template within layouts/normal
6033Rendering juegos/inscribirseFoF
6034 User Load (0.000413) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6035Completed in 0.02587 (38 reqs/sec) | Rendering: 0.01573 (60%) | DB: 0.00041 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
6036
6037
6038Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:38:52) [POST]
6039 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
6040YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6041c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
6042 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"asdfs"}}
6043 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6044 Participante Load (0.000279) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6045 FoFPlayer Create (0.000568) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-08-30 17:38:52', NULL, '2009-08-30 17:38:52', NULL)
6046Redirected to http://0.0.0.0:3000/juegos
6047Completed in 0.03452 (28 reqs/sec) | DB: 0.00125 (3%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
6048
6049
6050Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:38:52) [GET]
6051 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6052bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
6053RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
6054dXNlZHsGOwdGOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2YTYzOGRh
6055YTU5NWJmYQ==--b661569f7d732b5c6a80f41153baf10d8468e6a5
6056 Parameters: {"action"=>"index", "controller"=>"juegos"}
6057Rendering template within layouts/normal
6058Rendering juegos/index
6059 User Load (0.000442) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6060Completed in 0.03168 (31 reqs/sec) | Rendering: 0.02521 (79%) | DB: 0.00044 (1%) | 200 OK [http://0.0.0.0/juegos]
6061 FoFPlayer Load (0.001098) SELECT * FROM "fo_f_players" LIMIT 1
6062
6063
6064Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:44:18) [GET]
6065 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
6066YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6067c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
6068ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
6069ZWR7BjsIVA==--cd76c9ab760ee60e949bbabd48e9efbbe86571d7
6070 Parameters: {"action"=>"index", "controller"=>"juegos"}
6071Rendering template within layouts/normal
6072Rendering juegos/index
6073 User Load (0.000397) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6074Completed in 0.01731 (57 reqs/sec) | Rendering: 0.01457 (84%) | DB: 0.00040 (2%) | 200 OK [http://0.0.0.0/juegos]
6075
6076
6077Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:45:56) [GET]
6078 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6079bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
6080ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
6081 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
6082Rendering template within layouts/normal
6083Rendering juegos/inscribirseFoF
6084 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6085Completed in 0.02460 (40 reqs/sec) | Rendering: 0.01547 (62%) | DB: 0.00039 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
6086
6087
6088Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:45:58) [POST]
6089 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
6090YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6091c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--f910a4913005424ede6ac0bab801cc04823b4cc6
6092 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"asdfas"}}
6093 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6094 Participante Load (0.000303) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6095 FoFPlayer Create (0.000385) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-08-30 17:45:59', NULL, '2009-08-30 17:45:59', NULL)
6096Redirected to http://0.0.0.0:3000/juegos
6097Completed in 0.19355 (5 reqs/sec) | DB: 0.00108 (0%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
6098
6099
6100Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:45:59) [GET]
6101 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6102bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
6103RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
6104dXNlZHsGOwdGOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2YTYzOGRh
6105YTU5NWJmYQ==--b661569f7d732b5c6a80f41153baf10d8468e6a5
6106 Parameters: {"action"=>"index", "controller"=>"juegos"}
6107Rendering template within layouts/normal
6108Rendering juegos/index
6109 User Load (0.000490) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6110Completed in 0.03086 (32 reqs/sec) | Rendering: 0.02742 (88%) | DB: 0.00049 (1%) | 200 OK [http://0.0.0.0/juegos]
6111 FoFPlayer Load (0.001373) SELECT * FROM "fo_f_players" 
6112
6113
6114Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:46:34) [GET]
6115 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
6116YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6117c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
6118ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
6119ZWR7BjsIVA==--cd76c9ab760ee60e949bbabd48e9efbbe86571d7
6120 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
6121Rendering template within layouts/normal
6122Rendering juegos/inscribirseFoF
6123 User Load (0.000454) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6124Completed in 0.03449 (28 reqs/sec) | Rendering: 0.02324 (67%) | DB: 0.00045 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
6125
6126
6127Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-08-30 17:46:37) [POST]
6128 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6129bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVlNjk5ZjBm
6130ZmVmNzA1YTVmYTk2YTYzOGRhYTU5NWJmYQ==--fbd869137b53b2116610b6770b3c65992be67f74
6131 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"ab57f10df31b860820bc44f7dbd9d4d2726ecc1a", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"asdfsd"}}
6132 User Load (0.000426) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6133 Participante Load (0.000301) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6134 FoFPlayer Create (0.000376) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-08-30 17:46:37', NULL, '2009-08-30 17:46:37', NULL)
6135Redirected to http://0.0.0.0:3000/juegos
6136Completed in 0.04195 (23 reqs/sec) | DB: 0.00110 (2%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
6137
6138
6139Processing JuegosController#index (for 127.0.0.1 at 2009-08-30 17:46:37) [GET]
6140 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiVlNjk5ZjBmZmVmNzA1YTVmYTk2
6141YTYzOGRhYTU5NWJmYSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6142c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
6143ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
6144ZWR7BjsIRg==--0e457d21fe032df6a1cf6bedf85a5e6731e2ca20
6145 Parameters: {"action"=>"index", "controller"=>"juegos"}
6146Rendering template within layouts/normal
6147Rendering juegos/index
6148 User Load (0.000427) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6149Completed in 0.01910 (52 reqs/sec) | Rendering: 0.01656 (86%) | DB: 0.00043 (2%) | 200 OK [http://0.0.0.0/juegos]
6150 FoFPlayer Load (0.001591) SELECT * FROM "fo_f_players" 
6151DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
6152
6153
6154Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:04:57) [GET]
6155 Session ID: 861c89e2a6cce5f7f2e2e239204622df
6156 Parameters: {"action"=>"welcome", "controller"=>"index"}
6157Rendering template within layouts/normal
6158Rendering index/welcome
6159Completed in 0.04408 (22 reqs/sec) | Rendering: 0.04140 (93%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6160
6161
6162Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:05:29) [GET]
6163 Session ID: 7208e08399a3b07040d158368df5ce93
6164 Parameters: {"action"=>"welcome", "controller"=>"index"}
6165Rendering template within layouts/normal
6166Rendering index/welcome
6167Completed in 0.00407 (245 reqs/sec) | Rendering: 0.00190 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6168
6169
6170Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:06:43) [GET]
6171 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6172SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6173 Parameters: {"action"=>"welcome", "controller"=>"index"}
6174Rendering template within layouts/normal
6175Rendering index/welcome
6176Completed in 0.00420 (237 reqs/sec) | Rendering: 0.00205 (48%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6177
6178
6179Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:07:07) [GET]
6180 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6181SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6182 Parameters: {"action"=>"welcome", "controller"=>"index"}
6183Rendering template within layouts/normal
6184Rendering index/welcome
6185Completed in 0.00410 (244 reqs/sec) | Rendering: 0.00190 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6186
6187
6188Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:07:07) [GET]
6189 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6190SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6191 Parameters: {"action"=>"welcome", "controller"=>"index"}
6192Rendering template within layouts/normal
6193Rendering index/welcome
6194Completed in 0.00415 (241 reqs/sec) | Rendering: 0.00194 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6195
6196
6197Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:07:49) [GET]
6198 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6199SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6200 Parameters: {"action"=>"welcome", "controller"=>"index"}
6201Rendering template within layouts/normal
6202Rendering index/welcome
6203Completed in 0.00394 (254 reqs/sec) | Rendering: 0.00180 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6204
6205
6206Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:08:31) [GET]
6207 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6208SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6209 Parameters: {"action"=>"welcome", "controller"=>"index"}
6210Rendering template within layouts/normal
6211Rendering index/welcome
6212Completed in 0.00426 (234 reqs/sec) | Rendering: 0.00200 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6213
6214
6215Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:08:37) [GET]
6216 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6217SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6218 Parameters: {"action"=>"welcome", "controller"=>"index"}
6219Rendering template within layouts/normal
6220Rendering index/welcome
6221Completed in 0.00530 (188 reqs/sec) | Rendering: 0.00203 (38%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6222
6223
6224Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:08:49) [GET]
6225 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6226SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6227 Parameters: {"action"=>"welcome", "controller"=>"index"}
6228Rendering template within layouts/normal
6229Rendering index/welcome
6230Completed in 0.00402 (248 reqs/sec) | Rendering: 0.00186 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6231
6232
6233Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:09:10) [GET]
6234 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6235SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6236 Parameters: {"action"=>"welcome", "controller"=>"index"}
6237Rendering template within layouts/normal
6238Rendering index/welcome
6239Completed in 0.00462 (216 reqs/sec) | Rendering: 0.00246 (53%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6240
6241
6242Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:09:32) [GET]
6243 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6244SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6245 Parameters: {"action"=>"welcome", "controller"=>"index"}
6246Rendering template within layouts/normal
6247Rendering index/welcome
6248Completed in 0.00405 (246 reqs/sec) | Rendering: 0.00182 (44%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6249
6250
6251Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:10:31) [GET]
6252 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6253SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6254 Parameters: {"action"=>"welcome", "controller"=>"index"}
6255Rendering template within layouts/normal
6256Rendering index/welcome
6257Completed in 0.00417 (240 reqs/sec) | Rendering: 0.00189 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6258
6259
6260Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:10:42) [GET]
6261 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6262SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6263 Parameters: {"action"=>"welcome", "controller"=>"index"}
6264Rendering template within layouts/normal
6265Rendering index/welcome
6266Completed in 0.00687 (145 reqs/sec) | Rendering: 0.00211 (30%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6267
6268
6269Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:10:48) [GET]
6270 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6271SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6272 Parameters: {"action"=>"welcome", "controller"=>"index"}
6273Rendering template within layouts/normal
6274Rendering index/welcome
6275Completed in 0.00785 (127 reqs/sec) | Rendering: 0.00503 (64%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6276
6277
6278Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:11:09) [GET]
6279 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6280SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6281 Parameters: {"action"=>"welcome", "controller"=>"index"}
6282Rendering template within layouts/normal
6283Rendering index/welcome
6284Completed in 0.00405 (247 reqs/sec) | Rendering: 0.00184 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6285
6286
6287Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:11:33) [GET]
6288 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6289SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6290 Parameters: {"action"=>"welcome", "controller"=>"index"}
6291Rendering template within layouts/normal
6292Rendering index/welcome
6293Completed in 0.00401 (249 reqs/sec) | Rendering: 0.00188 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6294
6295
6296Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:11:45) [GET]
6297 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6298SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6299 Parameters: {"action"=>"welcome", "controller"=>"index"}
6300Rendering template within layouts/normal
6301Rendering index/welcome
6302Completed in 0.00452 (221 reqs/sec) | Rendering: 0.00194 (43%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6303
6304
6305Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:11:56) [GET]
6306 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6307SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6308 Parameters: {"action"=>"welcome", "controller"=>"index"}
6309Rendering template within layouts/normal
6310Rendering index/welcome
6311Completed in 0.00400 (249 reqs/sec) | Rendering: 0.00182 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6312
6313
6314Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:12:14) [GET]
6315 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6316SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6317 Parameters: {"action"=>"welcome", "controller"=>"index"}
6318Rendering template within layouts/normal
6319Rendering index/welcome
6320Completed in 0.00523 (191 reqs/sec) | Rendering: 0.00237 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6321
6322
6323Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:12:31) [GET]
6324 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6325SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6326 Parameters: {"action"=>"welcome", "controller"=>"index"}
6327Rendering template within layouts/normal
6328Rendering index/welcome
6329Completed in 0.00436 (229 reqs/sec) | Rendering: 0.00201 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6330
6331
6332Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:14:56) [GET]
6333 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6334SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6335 Parameters: {"action"=>"welcome", "controller"=>"index"}
6336Rendering template within layouts/normal
6337Rendering index/welcome
6338Completed in 0.00545 (183 reqs/sec) | Rendering: 0.00250 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6339
6340
6341Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:16:46) [GET]
6342 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6343SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6344 Parameters: {"action"=>"welcome", "controller"=>"index"}
6345Rendering template within layouts/normal
6346Rendering index/welcome
6347Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00206 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6348
6349
6350Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:18:23) [GET]
6351 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6352SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6353 Parameters: {"action"=>"welcome", "controller"=>"index"}
6354Rendering template within layouts/normal
6355Rendering index/welcome
6356Completed in 0.00552 (181 reqs/sec) | Rendering: 0.00260 (47%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6357
6358
6359Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:18:55) [GET]
6360 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6361SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6362 Parameters: {"action"=>"welcome", "controller"=>"index"}
6363Rendering template within layouts/normal
6364Rendering index/welcome
6365Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00181 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6366
6367
6368Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:19:37) [GET]
6369 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6370SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6371 Parameters: {"action"=>"welcome", "controller"=>"index"}
6372Rendering template within layouts/normal
6373Rendering index/welcome
6374Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00182 (44%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6375
6376
6377Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:21:13) [GET]
6378 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6379SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6380 Parameters: {"action"=>"welcome", "controller"=>"index"}
6381Rendering template within layouts/normal
6382Rendering index/welcome
6383Completed in 0.01184 (84 reqs/sec) | Rendering: 0.00967 (81%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6384
6385
6386Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:21:19) [GET]
6387 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6388SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6389 Parameters: {"action"=>"welcome", "controller"=>"index"}
6390Rendering template within layouts/normal
6391Rendering index/welcome
6392Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00241 (52%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6393
6394
6395Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:21:35) [GET]
6396 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6397SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6398 Parameters: {"action"=>"welcome", "controller"=>"index"}
6399Rendering template within layouts/normal
6400Rendering index/welcome
6401Completed in 0.00426 (234 reqs/sec) | Rendering: 0.00204 (48%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6402
6403
6404Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:21:41) [GET]
6405 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6406SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6407 Parameters: {"action"=>"welcome", "controller"=>"index"}
6408Rendering template within layouts/normal
6409Rendering index/welcome
6410Completed in 0.00400 (250 reqs/sec) | Rendering: 0.00184 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6411
6412
6413Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:48:33) [GET]
6414 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6415SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6416 Parameters: {"action"=>"welcome", "controller"=>"index"}
6417Rendering template within layouts/normal
6418Rendering index/welcome
6419Completed in 0.00504 (198 reqs/sec) | Rendering: 0.00230 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6420
6421
6422Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:49:03) [GET]
6423 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6424SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6425 Parameters: {"action"=>"welcome", "controller"=>"index"}
6426Rendering template within layouts/normal
6427Rendering index/welcome
6428Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00191 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6429
6430
6431Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:49:33) [GET]
6432 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6433SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6434 Parameters: {"action"=>"welcome", "controller"=>"index"}
6435Rendering template within layouts/normal
6436Rendering index/welcome
6437Completed in 0.00562 (177 reqs/sec) | Rendering: 0.00248 (44%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6438
6439
6440Processing IndexController#welcome (for 127.0.0.1 at 2009-09-01 21:49:48) [GET]
6441 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6442SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6443 Parameters: {"action"=>"welcome", "controller"=>"index"}
6444Rendering template within layouts/normal
6445Rendering index/welcome
6446Completed in 0.00413 (241 reqs/sec) | Rendering: 0.00190 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6447DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
6448
6449
6450Processing IndexController#welcome (for 127.0.0.1 at 2009-09-04 22:54:58) [GET]
6451 Session ID: 6592c9a35c6c5ebe76cd5717936601aa
6452 Parameters: {"action"=>"welcome", "controller"=>"index"}
6453Rendering template within layouts/normal
6454Rendering index/welcome
6455Completed in 0.03782 (26 reqs/sec) | Rendering: 0.03544 (93%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6456
6457
6458Processing IndexController#welcome (for 127.0.0.1 at 2009-09-04 22:55:05) [GET]
6459 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6460SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6461 Parameters: {"action"=>"welcome", "controller"=>"index"}
6462Rendering template within layouts/normal
6463Rendering index/welcome
6464Completed in 0.00412 (243 reqs/sec) | Rendering: 0.00186 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6465
6466
6467Processing IndexController#welcome (for 127.0.0.1 at 2009-09-04 22:55:06) [GET]
6468 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6469SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6470 Parameters: {"action"=>"welcome", "controller"=>"index"}
6471Rendering template within layouts/normal
6472Rendering index/welcome
6473Completed in 0.00496 (201 reqs/sec) | Rendering: 0.00276 (55%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6474
6475
6476Processing IndexController#welcome (for 127.0.0.1 at 2009-09-04 22:56:00) [GET]
6477 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6478SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6479 Parameters: {"action"=>"welcome", "controller"=>"index"}
6480Rendering template within layouts/normal
6481Rendering index/welcome
6482Completed in 0.00416 (240 reqs/sec) | Rendering: 0.00188 (45%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6483
6484
6485Processing IndexController#welcome (for 127.0.0.1 at 2009-09-04 22:56:51) [GET]
6486 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6487SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6488 Parameters: {"action"=>"welcome", "controller"=>"index"}
6489Rendering template within layouts/normal
6490Rendering index/welcome
6491Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00189 (46%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6492DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at ./script/../config/../vendor/rails/railties/lib/initializer.rb:455)
6493
6494
6495Processing IndexController#welcome (for 127.0.0.1 at 2009-09-06 16:51:18) [GET]
6496 Session ID: 2f94aaace174d6d50aa870a731b7d772
6497 Parameters: {"action"=>"welcome", "controller"=>"index"}
6498Rendering template within layouts/normal
6499Rendering index/welcome
6500Completed in 0.03712 (26 reqs/sec) | Rendering: 0.03464 (93%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6501
6502
6503Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 16:51:20) [GET]
6504 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6505SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6506 Parameters: {"action"=>"index", "controller"=>"juegos"}
6507Rendering template within layouts/normal
6508Rendering juegos/index
6509Completed in 0.02393 (41 reqs/sec) | Rendering: 0.02176 (90%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/juegos]
6510
6511
6512Processing IndexController#welcome (for 127.0.0.1 at 2009-09-06 16:51:23) [GET]
6513 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6514SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6515 Parameters: {"action"=>"welcome", "controller"=>"index"}
6516Rendering template within layouts/normal
6517Rendering index/welcome
6518Completed in 0.01104 (90 reqs/sec) | Rendering: 0.00532 (48%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
6519
6520
6521Processing ConferenciasController#index (for 127.0.0.1 at 2009-09-06 16:51:25) [GET]
6522 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6523SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6524 Parameters: {"action"=>"index", "controller"=>"conferencias"}
6525 Conferencia Load (0.049644) SELECT * FROM "conferencias" 
6526Rendering template within layouts/normal
6527Rendering conferencias/index
6528Completed in 0.09309 (10 reqs/sec) | Rendering: 0.02815 (30%) | DB: 0.04964 (53%) | 200 OK [http://0.0.0.0/conferencias]
6529
6530
6531Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 16:51:28) [GET]
6532 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6533SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6534 Parameters: {"action"=>"index", "controller"=>"juegos"}
6535Rendering template within layouts/normal
6536Rendering juegos/index
6537Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00204 (48%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/juegos]
6538
6539
6540Processing AccountController#login (for 127.0.0.1 at 2009-09-06 16:51:33) [GET]
6541 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
6542SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
6543 Parameters: {"action"=>"login", "controller"=>"account"}
6544Rendering template within layouts/normal
6545Rendering account/login
6546Completed in 0.03624 (27 reqs/sec) | Rendering: 0.03040 (83%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/login]
6547
6548
6549Processing AccountController#login (for 127.0.0.1 at 2009-09-06 16:51:38) [POST]
6550 Session ID: BAh7BzoMY3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3MWVhNmYwMDVmNmE3
6551MjYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
6552c2h7AAY6CkB1c2VkewA=--5fefe235c28b4e31eddda616e3968b357d0be850
6553 Parameters: {"commit"=>"Iniciar Sesion", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"login", "controller"=>"account", "user"=>{"login"=>"fitoria", "password"=>"qwerty"}}
6554 User Load (0.000549) SELECT * FROM "users" WHERE ("users"."password" = 'ba0d78f4f642cd3bef63fe9b62233c79949cee13' AND "users"."login" = 'fitoria') LIMIT 1
6555Redirected to http://0.0.0.0:3000/admin
6556Completed in 0.04514 (22 reqs/sec) | DB: 0.00055 (1%) | 302 Found [http://0.0.0.0/account/login]
6557
6558
6559Processing AdminController#index (for 127.0.0.1 at 2009-09-06 16:51:38) [GET]
6560 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6561bGFzaDo6Rmxhc2hIYXNoewYiC25vdGljZSIUSW5pY2lvIGV4aXN0b3NvBjoK
6562QHVzZWR7BkAIRjoMY3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3MWVhNmYw
6563MDVmNmE3MjY=--3e70ccd9313867ffeb13d2517328b912a1922a75
6564 Parameters: {"action"=>"index", "controller"=>"admin"}
6565 User Load (0.000570) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6566Rendering template within layouts/admin
6567Rendering admin/index
6568Completed in 0.04724 (21 reqs/sec) | Rendering: 0.03315 (70%) | DB: 0.00057 (1%) | 200 OK [http://0.0.0.0/admin]
6569
6570
6571Processing ApplicationController#index (for 127.0.0.1 at 2009-09-06 16:51:38) [GET]
6572 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6573ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6574c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
6575c2VkewZACVQ=--feaca3c5bf1dd38ef47db79697ed526e322a2915
6576 Parameters: {}
6577
6578
6579ActionController::RoutingError (No route matches "/javascripts/scriptaculous/prototype.js" with {:method=>:get}):
6580 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
6581 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
6582 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
6583 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6584 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6585 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6586 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6587 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6588 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6589 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6590 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6591 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6592 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6593 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6594 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6595 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6596 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6597 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6598 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6599 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6600 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6601 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6602 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6603 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6604 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6605 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6606 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6607 /vendor/rails/railties/lib/commands/server.rb:39
6608 script/server:3:in `require'
6609 script/server:3
6610
6611Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
6612
6613
6614Processing ApplicationController#index (for 127.0.0.1 at 2009-09-06 16:51:38) [GET]
6615 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6616ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6617c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
6618c2VkewZACVQ=--feaca3c5bf1dd38ef47db79697ed526e322a2915
6619 Parameters: {}
6620
6621
6622ActionController::RoutingError (No route matches "/javascripts/scriptaculous/scriptaculous.js" with {:method=>:get}):
6623 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
6624 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
6625 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
6626 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6627 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6628 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6629 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6630 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6631 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6632 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6633 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6634 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6635 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6636 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6637 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6638 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6639 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6640 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6641 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6642 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6643 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6644 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6645 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6646 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6647 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6648 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6649 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6650 /vendor/rails/railties/lib/commands/server.rb:39
6651 script/server:3:in `require'
6652 script/server:3
6653
6654Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
6655
6656
6657Processing IndexController#welcome (for 127.0.0.1 at 2009-09-06 16:51:41) [GET]
6658 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6659bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
6660Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--77a97a289e5699e3fc44179a1607ab4c9b74ed66
6661 Parameters: {"action"=>"welcome", "controller"=>"index"}
6662Rendering template within layouts/normal
6663Rendering index/welcome
6664 User Load (0.000445) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6665Completed in 0.01809 (55 reqs/sec) | Rendering: 0.01553 (85%) | DB: 0.00044 (2%) | 200 OK [http://0.0.0.0/]
6666
6667
6668Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 16:52:04) [GET]
6669 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6670ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6671c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--3f2568d10aad69496da89bef41646891b5ff7efd
6672 Parameters: {"action"=>"index", "controller"=>"juegos"}
6673Rendering template within layouts/normal
6674Rendering juegos/index
6675 User Load (0.000593) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6676Completed in 0.01916 (52 reqs/sec) | Rendering: 0.01629 (84%) | DB: 0.00059 (3%) | 200 OK [http://0.0.0.0/juegos]
6677
6678
6679Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 16:52:27) [GET]
6680 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6681bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
6682Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--77a97a289e5699e3fc44179a1607ab4c9b74ed66
6683 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
6684Rendering template within layouts/normal
6685Rendering juegos/inscribirseFoF
6686 User Load (0.000438) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6687Completed in 0.06778 (14 reqs/sec) | Rendering: 0.03389 (50%) | DB: 0.00044 (0%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
6688
6689
6690Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 16:52:31) [POST]
6691 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6692ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6693c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--3f2568d10aad69496da89bef41646891b5ff7efd
6694 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
6695 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6696 Participante Load (0.000352) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6697 FoFPlayer Create (0.000679) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 16:52:31', NULL, '2009-09-06 16:52:31', NULL)
6698Redirected to http://0.0.0.0:3000/juegos
6699Completed in 0.13745 (7 reqs/sec) | DB: 0.00144 (1%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
6700
6701
6702Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 16:52:31) [GET]
6703 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6704bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
6705RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
6706dXNlZHsGOwdGOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
6707NWY2YTcyNg==--a9894d37c026039d226270ca6318cbff745ceec8
6708 Parameters: {"action"=>"index", "controller"=>"juegos"}
6709Rendering template within layouts/normal
6710Rendering juegos/index
6711 User Load (0.000486) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6712Completed in 0.02372 (42 reqs/sec) | Rendering: 0.01844 (77%) | DB: 0.00049 (2%) | 200 OK [http://0.0.0.0/juegos]
6713
6714
6715Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 16:54:09) [POST]
6716 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6717ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6718c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
6719ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
6720ZWR7BjsIVA==--c36217f916ddd292bef0133b282a065ac34caa1d
6721 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
6722 User Load (0.000386) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6723 Participante Load (0.000341) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6724
6725
6726NoMethodError (undefined method `save?' for #<FoFPlayer:0xb68eb744>):
6727 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
6728 /app/controllers/juegos_controller.rb:12:in `inscribirseFoF'
6729 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
6730 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
6731 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6732 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6733 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6734 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6735 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6736 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6737 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6738 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6739 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6740 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6741 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6742 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6743 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6744 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6745 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6746 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6747 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6748 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6749 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6750 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6751 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6752 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6753 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6754 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6755 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6756 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6757 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6758 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6759 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6760 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6761 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6762 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6763 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6764 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6765 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6766 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6767 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6768 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6769 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6770 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6771 /vendor/rails/railties/lib/commands/server.rb:39
6772 script/server:3:in `require'
6773 script/server:3
6774
6775Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6776
6777
6778Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 16:57:49) [POST]
6779 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6780bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
6781Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--77a97a289e5699e3fc44179a1607ab4c9b74ed66
6782 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
6783 User Load (0.000459) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6784 Participante Load (0.000310) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6785
6786
6787NoMethodError (undefined method `save?' for #<FoFPlayer:0xb6a1f250>):
6788 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:251:in `method_missing'
6789 /app/controllers/juegos_controller.rb:12:in `inscribirseFoF'
6790 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
6791 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
6792 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6793 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6794 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6795 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6796 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6797 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6798 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6799 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6800 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6801 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6802 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6803 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6804 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6805 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6806 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6807 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6808 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6809 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6810 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6811 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6812 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6813 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6814 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6815 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6816 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6817 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6818 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6819 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6820 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6821 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6822 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6823 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6824 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6825 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6826 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6827 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6828 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6829 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6830 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6831 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6832 /vendor/rails/railties/lib/commands/server.rb:39
6833 script/server:3:in `require'
6834 script/server:3
6835
6836Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6837
6838
6839Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 16:58:03) [POST]
6840 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6841ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6842c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--3f2568d10aad69496da89bef41646891b5ff7efd
6843 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
6844 User Load (0.000503) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6845 Participante Load (0.000374) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
6846 FoFPlayer Create (0.000377) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 16:58:03', NULL, '2009-09-06 16:58:03', NULL)
6847Redirected to http://0.0.0.0:3000/juegos
6848Completed in 0.03136 (31 reqs/sec) | DB: 0.00125 (3%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
6849
6850
6851Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 16:58:03) [GET]
6852 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6853bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
6854RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
6855dXNlZHsGOwdGOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
6856NWY2YTcyNg==--a9894d37c026039d226270ca6318cbff745ceec8
6857 Parameters: {"action"=>"index", "controller"=>"juegos"}
6858Rendering template within layouts/normal
6859Rendering juegos/index
6860 User Load (0.000423) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
6861Completed in 0.02027 (49 reqs/sec) | Rendering: 0.01763 (87%) | DB: 0.00042 (2%) | 200 OK [http://0.0.0.0/juegos]
6862
6863
6864Processing AccountController#logout (for 127.0.0.1 at 2009-09-06 16:59:25) [GET]
6865 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6866ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6867c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
6868ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
6869ZWR7BjsIVA==--c36217f916ddd292bef0133b282a065ac34caa1d
6870 Parameters: {"action"=>"logout", "controller"=>"account"}
6871Rendering template within layouts/normal
6872Rendering account/logout
6873Completed in 0.01095 (91 reqs/sec) | Rendering: 0.00882 (80%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/logout]
6874
6875
6876Processing AccountController#login (for 127.0.0.1 at 2009-09-06 16:59:28) [GET]
6877 Session ID: BAh7CDoMdXNlcl9pZDAiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZs
6878YXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6DGNzcmZfaWQiJTFhOTQ0MThm
6879ODQzM2JiM2JjNzFlYTZmMDA1ZjZhNzI2--937430868f25693f8bd359097d5527374e7be36f
6880 Parameters: {"action"=>"login", "controller"=>"account"}
6881Rendering template within layouts/normal
6882Rendering account/login
6883Completed in 0.00505 (198 reqs/sec) | Rendering: 0.00290 (57%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/login]
6884
6885
6886Processing AccountController#signup (for 127.0.0.1 at 2009-09-06 16:59:29) [GET]
6887 Session ID: BAh7CDoMdXNlcl9pZDA6DGNzcmZfaWQiJTFhOTQ0MThmODQzM2JiM2JjNzFl
6888YTZmMDA1ZjZhNzI2IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFz
6889aDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--ee5f850d68f0f6caf9a69a8a3c0a97e62db92e04
6890 Parameters: {"action"=>"signup", "controller"=>"account"}
6891 Universidad Load (0.003923) SELECT * FROM "universidads" 
6892Rendering template within layouts/normal
6893Rendering account/signup
6894Completed in 0.10786 (9 reqs/sec) | Rendering: 0.02338 (21%) | DB: 0.00392 (3%) | 200 OK [http://0.0.0.0/account/signup]
6895
6896
6897Processing AccountController#signup (for 127.0.0.1 at 2009-09-06 16:59:51) [POST]
6898 Session ID: BAh7CDoMdXNlcl9pZDAiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZs
6899YXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6DGNzcmZfaWQiJTFhOTQ0MThm
6900ODQzM2JiM2JjNzFlYTZmMDA1ZjZhNzI2--937430868f25693f8bd359097d5527374e7be36f
6901 Parameters: {"commit"=>"Crear Usuario", "universidad"=>"UCA", "password_confirmation"=>"fitoria", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"signup", "controller"=>"account", "participante"=>{"telefono"=>"232434", "nombre"=>"gema jimenez", "email"=>"hask@hask.com"}, "user"=>{"login"=>"hask", "password"=>"fiotira"}}
6902 Universidad Load (0.001442) SELECT * FROM "universidads" 
6903 Universidad Load (0.000429) SELECT * FROM "universidads" WHERE ("universidads"."nombre" = 'UCA') LIMIT 1
6904 SQL (0.000675) SELECT "login" FROM "users" WHERE ("users".login = 'hask') 
6905 CACHE (0.000000) SELECT "login" FROM "users" WHERE ("users".login = 'hask') 
6906 User Create (0.000353) INSERT INTO "users" ("role", "login", "password") VALUES('asistente', 'hask', '5a420dc43aeb3c86c802a8d34c914e4121ef6720')
6907 Participante Create (0.000339) INSERT INTO "participantes" ("telefono", "created_at", "nombre", "updated_at", "user_id", "universidad_id", "email") VALUES('232434', '2009-09-06 16:59:51', 'gema jimenez', '2009-09-06 16:59:51', 37, 4, 'hask@hask.com')
6908 User Load (0.000494) SELECT * FROM "users" WHERE ("users"."password" = '5a420dc43aeb3c86c802a8d34c914e4121ef6720' AND "users"."login" = 'hask') LIMIT 1
6909Sent mail to hask@hask.com
6910
6911Date: Sun, 6 Sep 2009 16:59:51 -0600
6912From: noreply@registro.linuxtour.org
6913To: hask@hask.com
6914Subject: =?utf-8?Q?Confirmaci=c3=b3n_de_suscripcion_para_el_SFD_Nicaragua_=32=30=30=39?=
6915Mime-Version: 1.0
6916Content-Type: text/plain; charset=utf-8
6917
6918gema jimenez
6919
6920Gracias por suscribirse al evento mas grande de Software Libre en Nicaragua y al mejor evento por dos años consecutivos a nivel mundial.
6921
6922Manténgase informado en: http://linuxtour.org/sfd
6923
6924
6925Net::SMTPSyntaxError (503 AUTH command used when not advertised
6926):
6927 /usr/lib/ruby/1.8/net/smtp.rb:948:in `check_auth_continue'
6928 /usr/lib/ruby/1.8/net/smtp.rb:740:in `auth_login'
6929 /usr/lib/ruby/1.8/net/smtp.rb:921:in `critical'
6930 /usr/lib/ruby/1.8/net/smtp.rb:739:in `auth_login'
6931 /usr/lib/ruby/1.8/net/smtp.rb:725:in `send'
6932 /usr/lib/ruby/1.8/net/smtp.rb:725:in `authenticate'
6933 /usr/lib/ruby/1.8/net/smtp.rb:566:in `do_start'
6934 /usr/lib/ruby/1.8/net/smtp.rb:525:in `start'
6935 /usr/lib/ruby/1.8/net/smtp.rb:463:in `start'
6936 /vendor/rails/actionmailer/lib/action_mailer/base.rb:627:in `perform_delivery_smtp'
6937 /vendor/rails/actionmailer/lib/action_mailer/base.rb:508:in `__send__'
6938 /vendor/rails/actionmailer/lib/action_mailer/base.rb:508:in `deliver!'
6939 /vendor/rails/actionmailer/lib/action_mailer/base.rb:383:in `method_missing'
6940 /app/controllers/account_controller.rb:35:in `signup'
6941 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
6942 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
6943 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6944 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6945 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6946 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6947 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6948 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6949 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6950 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6951 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6952 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6953 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6954 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6955 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6956 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6957 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6958 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6959 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6960 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6961 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6962 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6963 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6964 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6965 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6966 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6967 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6968 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6969 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6970 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6971 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6972 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6973 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6974 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6975 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6976 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6977 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6978 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6979 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6980 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6981 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6982 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6983 /vendor/rails/railties/lib/commands/server.rb:39
6984 script/server:3:in `require'
6985 script/server:3
6986
6987Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6988
6989
6990Processing IndexController#welcome (for 127.0.0.1 at 2009-09-06 16:59:59) [GET]
6991 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
6992ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6993c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiGUluc2NyaXBjaW9uIEV4aXRvc2Eu
6994BjoKQHVzZWR7BjsIRg==--93c142f66e90cbe54f98b249408189ba69bc93f8
6995 Parameters: {"action"=>"welcome", "controller"=>"index"}
6996Rendering template within layouts/normal
6997Rendering index/welcome
6998 User Load (0.000551) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
6999Completed in 0.02278 (43 reqs/sec) | Rendering: 0.01934 (84%) | DB: 0.00055 (2%) | 200 OK [http://0.0.0.0/]
7000
7001
7002Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:00:21) [GET]
7003 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7004bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIZSW5zY3JpcGNpb24gRXhpdG9z
7005YS4GOgpAdXNlZHsGOwdUOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7006ZWE2ZjAwNWY2YTcyNg==--1ed3fcc558e9f65a652522826ecba74de88adf2f
7007 Parameters: {"action"=>"index", "controller"=>"juegos"}
7008Rendering template within layouts/normal
7009Rendering juegos/index
7010 User Load (0.000471) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7011Completed in 0.01765 (56 reqs/sec) | Rendering: 0.01479 (83%) | DB: 0.00047 (2%) | 200 OK [http://0.0.0.0/juegos]
7012
7013
7014Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:00:24) [GET]
7015 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7016ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7017c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7018 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7019Rendering template within layouts/normal
7020Rendering juegos/inscribirseFoF
7021 User Load (0.000479) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7022Completed in 0.02487 (40 reqs/sec) | Rendering: 0.01521 (61%) | DB: 0.00048 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
7023
7024
7025Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:00:28) [POST]
7026 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7027bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7028Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7029 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
7030 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7031 Participante Load (0.000552) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7032 FoFPlayer Create (0.000361) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:00:28', NULL, '2009-09-06 17:00:28', 38)
7033Redirected to http://0.0.0.0:3000/juegos
7034Completed in 0.03278 (30 reqs/sec) | DB: 0.00130 (3%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
7035
7036
7037Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:00:28) [GET]
7038 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7039ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7040c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
7041ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
7042ZWR7BjsIRg==--b87ce260f47bfe152f9ebb07cb5182725a247c7b
7043 Parameters: {"action"=>"index", "controller"=>"juegos"}
7044Rendering template within layouts/normal
7045Rendering juegos/index
7046 User Load (0.000407) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7047Completed in 0.02121 (47 reqs/sec) | Rendering: 0.01859 (87%) | DB: 0.00041 (1%) | 200 OK [http://0.0.0.0/juegos]
7048
7049
7050Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:02:07) [POST]
7051 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7052bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
7053RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
7054dXNlZHsGOwdUOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
7055NWY2YTcyNg==--2751b0971a226f2759b668a1681e9852c1a4d9a0
7056 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
7057 User Load (0.000557) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7058 Participante Load (0.000524) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7059 FoFPlayer Create (0.000448) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:02:07', 'facil', '2009-09-06 17:02:07', 38)
7060Redirected to http://0.0.0.0:3000/juegos
7061Completed in 0.03739 (26 reqs/sec) | DB: 0.00153 (4%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
7062
7063
7064Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:02:08) [GET]
7065 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7066ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7067c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
7068ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
7069ZWR7BjsIRg==--b87ce260f47bfe152f9ebb07cb5182725a247c7b
7070 Parameters: {"action"=>"index", "controller"=>"juegos"}
7071Rendering template within layouts/normal
7072Rendering juegos/index
7073 User Load (0.000466) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7074Completed in 0.01652 (60 reqs/sec) | Rendering: 0.01393 (84%) | DB: 0.00047 (2%) | 200 OK [http://0.0.0.0/juegos]
7075
7076
7077Processing JuegosController#cancelarFoF (for 127.0.0.1 at 2009-09-06 17:07:37) [GET]
7078 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7079bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
7080RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
7081dXNlZHsGOwdUOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
7082NWY2YTcyNg==--2751b0971a226f2759b668a1681e9852c1a4d9a0
7083 Parameters: {"action"=>"cancelarFoF", "controller"=>"juegos"}
7084 User Load (0.000406) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7085 Participante Load (0.000536) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7086 SQL (0.000728)  SELECT name
7087 FROM sqlite_master
7088 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7089
7090
7091
7092NoMethodError (undefined method `find_by_participante' for #<Class:0xb6a21aa0>):
7093 /vendor/rails/activerecord/lib/active_record/base.rb:1613:in `method_missing'
7094 /app/controllers/juegos_controller.rb:23:in `cancelarFoF'
7095 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7096 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7097 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7098 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7099 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7100 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7101 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7102 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7103 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7104 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7105 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7106 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7107 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7108 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7109 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7110 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7111 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7112 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7113 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7114 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7115 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7116 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7117 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7118 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7119 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7120 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7121 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7122 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7123 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7124 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7125 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7126 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7127 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7128 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7129 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7130 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7131 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7132 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7133 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7134 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7135 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7136 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7137 /vendor/rails/railties/lib/commands/server.rb:39
7138 script/server:3:in `require'
7139 script/server:3
7140
7141Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7142
7143
7144Processing JuegosController#cancelarFoF (for 127.0.0.1 at 2009-09-06 17:08:46) [GET]
7145 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7146ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7147c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7148 Parameters: {"action"=>"cancelarFoF", "controller"=>"juegos"}
7149 User Load (0.000488) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7150 Participante Load (0.000639) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7151 SQL (0.001269)  SELECT name
7152 FROM sqlite_master
7153 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7154
7155
7156
7157NoMethodError (undefined method `find_by_participantes' for #<Class:0xb6907f0c>):
7158 /vendor/rails/activerecord/lib/active_record/base.rb:1613:in `method_missing'
7159 /app/controllers/juegos_controller.rb:23:in `cancelarFoF'
7160 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7161 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7162 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7163 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7164 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7165 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7166 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7167 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7168 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7169 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7170 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7171 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7172 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7173 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7174 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7175 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7176 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7177 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7178 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7179 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7180 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7181 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7182 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7183 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7184 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7185 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7186 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7187 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7188 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7189 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7190 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7191 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7192 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7193 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7194 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7195 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7196 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7197 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7198 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7199 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7200 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7201 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7202 /vendor/rails/railties/lib/commands/server.rb:39
7203 script/server:3:in `require'
7204 script/server:3
7205
7206Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7207DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
7208 SQL (0.001431)  SELECT name
7209 FROM sqlite_master
7210 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7211
7212 SQL (0.001913)  SELECT name
7213 FROM sqlite_master
7214 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7215
7216 FoFPlayer Load (0.000598) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" IS NULL) LIMIT 1
7217 FoFPlayer Load (0.000576) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 380) LIMIT 1
7218 FoFPlayer Load (0.001017) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 38) LIMIT 1
7219
7220
7221Processing JuegosController#cancelarFoF (for 127.0.0.1 at 2009-09-06 17:09:43) [GET]
7222 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7223bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7224Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7225 Parameters: {"action"=>"cancelarFoF", "controller"=>"juegos"}
7226 User Load (0.000499) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7227 Participante Load (0.000621) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7228 FoFPlayer Load (0.000475) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 38) LIMIT 1
7229
7230
7231NoMethodError (undefined method `delete' for #<FoFPlayer:0xb6a1e148>):
7232 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
7233 /app/controllers/juegos_controller.rb:24:in `cancelarFoF'
7234 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7235 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7236 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7237 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7238 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7239 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7240 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7241 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7242 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7243 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7244 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7245 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7246 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7247 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7248 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7249 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7250 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7251 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7252 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7253 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7254 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7255 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7256 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7257 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7258 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7259 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7260 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7261 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7262 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7263 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7264 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7265 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7266 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7267 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7268 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7269 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7270 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7271 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7272 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7273 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7274 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7275 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7276 /vendor/rails/railties/lib/commands/server.rb:39
7277 script/server:3:in `require'
7278 script/server:3
7279
7280Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7281
7282
7283Processing JuegosController#cancelarFoF (for 127.0.0.1 at 2009-09-06 17:09:43) [GET]
7284 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7285bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7286Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7287 Parameters: {"action"=>"cancelarFoF", "controller"=>"juegos"}
7288 User Load (0.000378) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7289 Participante Load (0.000523) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7290 FoFPlayer Load (0.000547) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 38) LIMIT 1
7291
7292
7293NoMethodError (undefined method `delete' for #<FoFPlayer:0xb68f6ae0>):
7294 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
7295 /app/controllers/juegos_controller.rb:24:in `cancelarFoF'
7296 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7297 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7298 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7299 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7300 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7301 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7302 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7303 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7304 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7305 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7306 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7307 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7308 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7309 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7310 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7311 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7312 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7313 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7314 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7315 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7316 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7317 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7318 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7319 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7320 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7321 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7322 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7323 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7324 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7325 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7326 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7327 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7328 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7329 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7330 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7331 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7332 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7333 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7334 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7335 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7336 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7337 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7338 /vendor/rails/railties/lib/commands/server.rb:39
7339 script/server:3:in `require'
7340 script/server:3
7341
7342Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7343 FoFPlayer Load (0.001066) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 38) LIMIT 1
7344 FoFPlayer Delete all (0.004100) DELETE FROM "fo_f_players" WHERE ("id" IN (7)) 
7345
7346
7347Processing JuegosController#cancelarFoF (for 127.0.0.1 at 2009-09-06 17:13:02) [GET]
7348 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7349ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7350c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7351 Parameters: {"action"=>"cancelarFoF", "controller"=>"juegos"}
7352 User Load (0.000398) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7353 Participante Load (0.000550) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7354 FoFPlayer Load (0.000263) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."participante_id" = 38) LIMIT 1
7355 FoFPlayer Delete all (0.000350) DELETE FROM "fo_f_players" WHERE ("id" IN (NULL)) 
7356Redirected to http://0.0.0.0:3000/juegos
7357Completed in 0.03268 (30 reqs/sec) | DB: 0.00156 (4%) | 302 Found [http://0.0.0.0/juegos/cancelarFoF]
7358
7359
7360Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:13:02) [GET]
7361 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7362bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSI0c2UgaGEgZWxpbWluYWRvIHN1
7363IHBhcnRpY2lwYWNpb24gZW4gZWwgY29uY3Vyc28GOgpAdXNlZHsGOwdGOgxj
7364c3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--b29c8f51a0daba5099a19bf894b8bc6a7dad9c63
7365 Parameters: {"action"=>"index", "controller"=>"juegos"}
7366Rendering template within layouts/normal
7367Rendering juegos/index
7368 User Load (0.000420) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7369Completed in 0.01634 (61 reqs/sec) | Rendering: 0.01385 (84%) | DB: 0.00042 (2%) | 200 OK [http://0.0.0.0/juegos]
7370 SQL (0.001930)  SELECT name
7371 FROM sqlite_master
7372 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7373
7374 FoFPlayer Load (0.000609) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7375 FoFPlayer Load (0.000622) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7376 FoFPlayer Load (0.000590) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7377
7378
7379Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:19:18) [GET]
7380 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7381ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7382c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiNHNlIGhhIGVsaW1pbmFkbyBzdSBw
7383YXJ0aWNpcGFjaW9uIGVuIGVsIGNvbmN1cnNvBjoKQHVzZWR7BjsIVA==--305a7d9a5c614a96eee0430b0dd95e70adbf5af4
7384 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7385Rendering template within layouts/normal
7386Rendering juegos/inscribirseFoF
7387 User Load (0.000431) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7388Completed in 0.02478 (40 reqs/sec) | Rendering: 0.01615 (65%) | DB: 0.00043 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
7389
7390
7391Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:19:22) [POST]
7392 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7393bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7394Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7395 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"facil"}}
7396 User Load (0.000432) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7397 Participante Load (0.000582) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7398 FoFPlayer Create (0.000363) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:19:22', 'facil', '2009-09-06 17:19:22', 38)
7399Redirected to http://0.0.0.0:3000/juegos
7400Completed in 0.03420 (29 reqs/sec) | DB: 0.00138 (4%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
7401
7402
7403Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:19:22) [GET]
7404 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7405ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7406c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
7407ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
7408ZWR7BjsIRg==--b87ce260f47bfe152f9ebb07cb5182725a247c7b
7409 Parameters: {"action"=>"index", "controller"=>"juegos"}
7410Rendering template within layouts/normal
7411Rendering juegos/index
7412 User Load (0.000393) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7413Completed in 0.01613 (62 reqs/sec) | Rendering: 0.01363 (84%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/juegos]
7414 FoFPlayer Load (0.001115) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7415 FoFPlayer Load (0.000426) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7416 FoFPlayer Load (0.001046) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7417 FoFPlayer Load (0.001147) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7418 FoFPlayer Load (0.001072) SELECT * FROM "fo_f_players" WHERE ("fo_f_players"."modalidad" = 'facil') LIMIT 1
7419 SQL (0.000780) SELECT count(*) AS count_all FROM "fo_f_players" 
7420 SQL (0.000783) SELECT count(*) AS count_all FROM "fo_f_players" 
7421 SQL (0.002342)  SELECT name
7422 FROM sqlite_master
7423 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7424
7425 SQL (0.001983)  SELECT name
7426 FROM sqlite_master
7427 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7428
7429DEPRECATION WARNING: config.action_view.cache_template_extensions option has been deprecated and has no affect. Please remove it from your config files. See http://www.rubyonrails.org/deprecation for details. (called from send at /media/disk/home/fitoria/code/sfd-reg/config/../vendor/rails/railties/lib/initializer.rb:455)
7430 SQL (0.001408)  SELECT name
7431 FROM sqlite_master
7432 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7433
7434 SQL (0.001935)  SELECT name
7435 FROM sqlite_master
7436 WHERE type = 'table' AND NOT name = 'sqlite_sequence'
7437
7438 FoFPlayer Load (0.001042) SELECT * FROM "fo_f_players" 
7439 FoFPlayer Load (0.001026) SELECT * FROM "fo_f_players" 
7440 FoFPlayer Load (0.001018) SELECT * FROM "fo_f_players" 
7441
7442
7443Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:37:26) [GET]
7444 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7445bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
7446RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
7447dXNlZHsGOwdUOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
7448NWY2YTcyNg==--2751b0971a226f2759b668a1681e9852c1a4d9a0
7449 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7450Rendering template within layouts/normal
7451Rendering juegos/inscribirseFoF
7452 User Load (0.000530) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7453Completed in 0.03223 (31 reqs/sec) | Rendering: 0.02055 (63%) | DB: 0.00053 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
7454 FoFPlayer Load (0.001009) SELECT * FROM "fo_f_players" 
7455
7456
7457Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:38:18) [GET]
7458 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7459ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7460c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7461 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7462Rendering template within layouts/normal
7463Rendering juegos/inscribirseFoF
7464 User Load (0.000398) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7465Completed in 0.02455 (40 reqs/sec) | Rendering: 0.01584 (64%) | DB: 0.00040 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
7466
7467
7468Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:38:21) [POST]
7469 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7470bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7471Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7472 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"medio"}}
7473 User Load (0.000568) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7474 Participante Load (0.000654) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7475 SQL (0.000335) SELECT count(*) AS count_all FROM "fo_f_players" 
7476 FoFPlayer Create (0.000619) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:38:21', 'medio', '2009-09-06 17:38:21', 38)
7477Redirected to http://0.0.0.0:3000/juegos
7478Completed in 0.07714 (12 reqs/sec) | DB: 0.00218 (2%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
7479
7480
7481Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:38:21) [GET]
7482 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7483ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7484c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZy
7485ZXRzIE9uIEZpcmUuIEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVz
7486ZWR7BjsIRg==--b87ce260f47bfe152f9ebb07cb5182725a247c7b
7487 Parameters: {"action"=>"index", "controller"=>"juegos"}
7488Rendering template within layouts/normal
7489Rendering juegos/index
7490 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7491Completed in 0.01591 (62 reqs/sec) | Rendering: 0.01344 (84%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/juegos]
7492 FoFPlayer Load (0.001373) SELECT * FROM "fo_f_players" 
7493 FoFPlayer Load (0.001266) SELECT * FROM "fo_f_players" 
7494
7495
7496Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:39:59) [POST]
7497 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7498bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSJAU2UgaGEgaW5zY3JpdG8gZW4g
7499RnJldHMgT24gRmlyZS4gRXNwZXJhbW9zIHByYWN0aXF1ZSBtdWNobyEGOgpA
7500dXNlZHsGOwdUOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcxZWE2ZjAw
7501NWY2YTcyNg==--2751b0971a226f2759b668a1681e9852c1a4d9a0
7502 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"experto"}}
7503
7504
7505SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:36: syntax error, unexpected $end, expecting kEND):
7506 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7507 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7508 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7509 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7510 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7511 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7512 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7513 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7514 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7515 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7516 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7517 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7518 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7519 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7520 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7521 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7522 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7523 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7524 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7525 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7526 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7527 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7528 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7529 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7530 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7531 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7532 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7533 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7534 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7535 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7536 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7537 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7538 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7539 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7540 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7541 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7542 /vendor/rails/railties/lib/commands/server.rb:39
7543 script/server:3:in `require'
7544 script/server:3
7545
7546Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7547
7548
7549Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:40:17) [GET]
7550 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7551ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7552c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7553 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7554
7555
7556SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:36: syntax error, unexpected $end, expecting kEND):
7557 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7558 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7559 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7560 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7561 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7562 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7563 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7564 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7565 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7566 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7567 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7568 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7569 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7570 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7571 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7572 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7573 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7574 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7575 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7576 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7577 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7578 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7579 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7580 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7581 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7582 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7583 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7584 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7585 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7586 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7587 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7588 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7589 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7590 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7591 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7592 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7593 /vendor/rails/railties/lib/commands/server.rb:39
7594 script/server:3:in `require'
7595 script/server:3
7596
7597Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7598
7599
7600Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:40:20) [GET]
7601 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7602bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7603Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7604 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7605
7606
7607SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:36: syntax error, unexpected $end, expecting kEND):
7608 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7609 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7610 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7611 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7612 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7613 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7614 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7615 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7616 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7617 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7618 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7619 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7620 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7621 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7622 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7623 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7624 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7625 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7626 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7627 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7628 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7629 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7630 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7631 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7632 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7633 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7634 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7635 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7636 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7637 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7638 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7639 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7640 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7641 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7642 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7643 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7644 /vendor/rails/railties/lib/commands/server.rb:39
7645 script/server:3:in `require'
7646 script/server:3
7647
7648Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7649
7650
7651Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:41:30) [GET]
7652 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7653ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7654c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7655 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7656
7657
7658SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:37: syntax error, unexpected $end, expecting kEND):
7659 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7660 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7661 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7662 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7663 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7664 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7665 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7666 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7667 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7668 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7669 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7670 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7671 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7672 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7673 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7674 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7675 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7676 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7677 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7678 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7679 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7680 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7681 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7682 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7683 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7684 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7685 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7686 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7687 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7688 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7689 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7690 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7691 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7692 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7693 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7694 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7695 /vendor/rails/railties/lib/commands/server.rb:39
7696 script/server:3:in `require'
7697 script/server:3
7698
7699Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7700
7701
7702Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:41:31) [GET]
7703 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7704bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7705Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7706 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7707
7708
7709SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:37: syntax error, unexpected $end, expecting kEND):
7710 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7711 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7712 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7713 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7714 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7715 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7716 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7717 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7718 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7719 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7720 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7721 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7722 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7723 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7724 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7725 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7726 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7727 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7728 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7729 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7730 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7731 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7732 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7733 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7734 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7735 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7736 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7737 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7738 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7739 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7740 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7741 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7742 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7743 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7744 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7745 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7746 /vendor/rails/railties/lib/commands/server.rb:39
7747 script/server:3:in `require'
7748 script/server:3
7749
7750Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7751
7752
7753Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:41:31) [GET]
7754 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7755ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7756c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7757 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7758
7759
7760SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:37: syntax error, unexpected $end, expecting kEND):
7761 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7762 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7763 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7764 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7765 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7766 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7767 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7768 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7769 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7770 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7771 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7772 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7773 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7774 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7775 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7776 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7777 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7778 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7779 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7780 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7781 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7782 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7783 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7784 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7785 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7786 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7787 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7788 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7789 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7790 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7791 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7792 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7793 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7794 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7795 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7796 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7797 /vendor/rails/railties/lib/commands/server.rb:39
7798 script/server:3:in `require'
7799 script/server:3
7800
7801Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7802
7803
7804Processing ApplicationController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:41:31) [GET]
7805 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7806ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7807c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7808 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7809
7810
7811SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/juegos_controller.rb:37: syntax error, unexpected $end, expecting kEND):
7812 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
7813 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
7814 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7815 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
7816 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
7817 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
7818 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
7819 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
7820 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
7821 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
7822 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
7823 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
7824 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7825 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7826 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7827 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7828 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7829 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7830 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7831 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7832 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7833 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7834 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7835 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7836 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7837 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7838 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7839 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7840 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7841 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7842 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7843 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7844 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7845 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7846 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7847 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7848 /vendor/rails/railties/lib/commands/server.rb:39
7849 script/server:3:in `require'
7850 script/server:3
7851
7852Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7853
7854
7855Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:42:58) [GET]
7856 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7857bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxYTk0NDE4
7858Zjg0MzNiYjNiYzcxZWE2ZjAwNWY2YTcyNg==--48d64b50aefbb44bc7f19ebde2e3f23b04a7ad6c
7859 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
7860Rendering template within layouts/normal
7861Rendering juegos/inscribirseFoF
7862 User Load (0.000414) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7863Completed in 0.02502 (39 reqs/sec) | Rendering: 0.01480 (59%) | DB: 0.00041 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
7864
7865
7866Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:43:02) [POST]
7867 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7868ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7869c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--839f977343d29d6b8cdcf3027b9f0dd21ebb0fce
7870 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"medio"}}
7871 User Load (0.000415) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7872 Participante Load (0.000548) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7873 SQL (0.000318) SELECT count(*) AS count_all FROM "fo_f_players" 
7874 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
7875Redirected to http://0.0.0.0:3000/juegos
7876 FoFPlayer Create (0.000363) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:43:02', 'medio', '2009-09-06 17:43:02', 38)
7877
7878
7879ActionController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
7880 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7881 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7882 /app/controllers/juegos_controller.rb:21:in `inscribirseFoF'
7883 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7884 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7885 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7886 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7887 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7888 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7889 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7890 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7891 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7892 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7893 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7894 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7895 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7896 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7897 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7898 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7899 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7900 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7901 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7902 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7903 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7904 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7905 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7906 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7907 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7908 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7909 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7910 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7911 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7912 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7913 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7914 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7915 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7916 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7917 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7918 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7919 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7920 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7921 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7922 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7923 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7924 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7925 /vendor/rails/railties/lib/commands/server.rb:39
7926 script/server:3:in `require'
7927 script/server:3
7928
7929Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7930
7931
7932Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:43:50) [POST]
7933 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7934bGFzaDo6Rmxhc2hIYXNoewc6CmVycm9yIhtVc3RlZCB5YSBzZSBpbnNjcmli
7935acOzOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZyZXRzIE9uIEZpcmUu
7936IEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVzZWR7BzsHRjsIRjoM
7937Y3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3MWVhNmYwMDVmNmE3MjY=--0700818249ad5aaa0ffc5d942a43cdef9e342dda
7938 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"medio"}}
7939 User Load (0.000391) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7940 Participante Load (0.000611) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7941 SQL (0.000376) SELECT count(*) AS count_all FROM "fo_f_players" 
7942 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
7943 FoFPlayer Create (0.000414) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:43:50', 'medio', '2009-09-06 17:43:50', 38)
7944Redirected to http://0.0.0.0:3000/juegos
7945Completed in 0.05567 (17 reqs/sec) | DB: 0.00179 (3%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
7946
7947
7948Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:43:51) [GET]
7949 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
7950ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7951c2g6OkZsYXNoSGFzaHsHOgplcnJvciIbVXN0ZWQgeWEgc2UgaW5zY3JpYmnD
7952szoLbm90aWNlIkBTZSBoYSBpbnNjcml0byBlbiBGcmV0cyBPbiBGaXJlLiBF
7953c3BlcmFtb3MgcHJhY3RpcXVlIG11Y2hvIQY6CkB1c2Vkewc7CEY7CUY=--23a5c22768321e7f3e6582a65c3dca89dbd521a5
7954 Parameters: {"action"=>"index", "controller"=>"juegos"}
7955Rendering template within layouts/normal
7956Rendering juegos/index
7957 User Load (0.000395) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7958Completed in 0.01748 (57 reqs/sec) | Rendering: 0.01427 (81%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/juegos]
7959
7960
7961Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:44:29) [POST]
7962 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7963bGFzaDo6Rmxhc2hIYXNoewc6CmVycm9yIhtVc3RlZCB5YSBzZSBpbnNjcmli
7964acOzOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZyZXRzIE9uIEZpcmUu
7965IEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVzZWR7BzsHVDsIVDoM
7966Y3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3MWVhNmYwMDVmNmE3MjY=--f18e5891f129e380f16d8cae56431c80838ba9a4
7967 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"medio"}}
7968 User Load (0.000486) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
7969 Participante Load (0.000650) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
7970 SQL (0.000338) SELECT count(*) AS count_all FROM "fo_f_players" 
7971 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
7972Redirected to http://0.0.0.0:3000/juegos
7973 FoFPlayer Create (0.000385) INSERT INTO "fo_f_players" ("created_at", "modalidad", "updated_at", "participante_id") VALUES('2009-09-06 17:44:29', 'medio', '2009-09-06 17:44:29', 38)
7974
7975
7976ActionController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
7977 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7978 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7979 /app/controllers/juegos_controller.rb:21:in `inscribirseFoF'
7980 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7981 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7982 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7983 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7984 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7985 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7986 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7987 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7988 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7989 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7990 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7991 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7992 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7993 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7994 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7995 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7996 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7997 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7998 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7999 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
8000 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
8001 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
8002 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
8003 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
8004 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
8005 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
8006 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
8007 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
8008 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
8009 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
8010 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
8011 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
8012 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
8013 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
8014 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
8015 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
8016 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
8017 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
8018 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
8019 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
8020 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
8021 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
8022 /vendor/rails/railties/lib/commands/server.rb:39
8023 script/server:3:in `require'
8024 script/server:3
8025
8026Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
8027
8028
8029Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:46:11) [GET]
8030 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
8031ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
8032c2g6OkZsYXNoSGFzaHsHOgplcnJvciIbVXN0ZWQgeWEgc2UgaW5zY3JpYmnD
8033szoLbm90aWNlIkBTZSBoYSBpbnNjcml0byBlbiBGcmV0cyBPbiBGaXJlLiBF
8034c3BlcmFtb3MgcHJhY3RpcXVlIG11Y2hvIQY6CkB1c2Vkewc7CEY7CUY=--23a5c22768321e7f3e6582a65c3dca89dbd521a5
8035 Parameters: {"action"=>"inscribirseFoF", "controller"=>"juegos"}
8036Rendering template within layouts/normal
8037Rendering juegos/inscribirseFoF
8038 User Load (0.000444) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8039Completed in 0.03119 (32 reqs/sec) | Rendering: 0.01814 (58%) | DB: 0.00044 (1%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
8040
8041
8042Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:46:16) [POST]
8043 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
8044bGFzaDo6Rmxhc2hIYXNoewc6CmVycm9yIhtVc3RlZCB5YSBzZSBpbnNjcmli
8045acOzOgtub3RpY2UiQFNlIGhhIGluc2NyaXRvIGVuIEZyZXRzIE9uIEZpcmUu
8046IEVzcGVyYW1vcyBwcmFjdGlxdWUgbXVjaG8hBjoKQHVzZWR7BzsHVDsIVDoM
8047Y3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3MWVhNmYwMDVmNmE3MjY=--f18e5891f129e380f16d8cae56431c80838ba9a4
8048 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"medio"}}
8049 User Load (0.000402) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8050 Participante Load (0.000544) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
8051 SQL (0.000310) SELECT count(*) AS count_all FROM "fo_f_players" 
8052 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
8053Rendering template within layouts/normal
8054Rendering juegos/inscribirseFoF
8055 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8056Completed in 0.03600 (27 reqs/sec) | Rendering: 0.00428 (11%) | DB: 0.00126 (3%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
8057
8058
8059Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:46:19) [POST]
8060 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
8061ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
8062c2g6OkZsYXNoSGFzaHsGOgplcnJvciIbVXN0ZWQgeWEgc2UgaW5zY3JpYmnD
8063swY6CkB1c2VkewY7CEY=--e94ddde004f8daeeae79c9fb19aa41f700cdb5aa
8064 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"experto"}}
8065 User Load (0.000390) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8066 Participante Load (0.000522) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
8067 SQL (0.000308) SELECT count(*) AS count_all FROM "fo_f_players" 
8068 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
8069Rendering template within layouts/normal
8070Rendering juegos/inscribirseFoF
8071 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8072Completed in 0.03761 (26 reqs/sec) | Rendering: 0.00463 (12%) | DB: 0.00122 (3%) | 200 OK [http://0.0.0.0/juegos/inscribirseFoF]
8073
8074
8075Processing JuegosController#inscribirseFoF (for 127.0.0.1 at 2009-09-06 17:46:38) [POST]
8076 Session ID: BAh7CDoMdXNlcl9pZGkqIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
8077bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIhtVc3RlZCB5YSBzZSBpbnNjcmli
8078acOzBjoKQHVzZWR7BjsHRjoMY3NyZl9pZCIlMWE5NDQxOGY4NDMzYmIzYmM3
8079MWVhNmYwMDVmNmE3MjY=--eb1e356d69d17e9d8328246e68be2f976923d030
8080 Parameters: {"commit"=>"Inscribirse", "authenticity_token"=>"3956d456ec7f9a75a6e0c9692ee26574e075aeda", "action"=>"inscribirseFoF", "controller"=>"juegos", "FoFPlayer"=>{"modalidad"=>"fácil"}}
8081 User Load (0.000387) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8082 Participante Load (0.000613) SELECT * FROM "participantes" WHERE ("participantes".user_id = 37) LIMIT 1
8083 SQL (0.000306) SELECT count(*) AS count_all FROM "fo_f_players" 
8084 CACHE (0.000000) SELECT count(*) AS count_all FROM "fo_f_players" 
8085Redirected to http://0.0.0.0:3000/juegos
8086Completed in 0.10958 (9 reqs/sec) | DB: 0.00131 (1%) | 302 Found [http://0.0.0.0/juegos/inscribirseFoF]
8087
8088
8089Processing JuegosController#index (for 127.0.0.1 at 2009-09-06 17:46:38) [GET]
8090 Session ID: BAh7CDoMdXNlcl9pZGkqOgxjc3JmX2lkIiUxYTk0NDE4Zjg0MzNiYjNiYzcx
8091ZWE2ZjAwNWY2YTcyNiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
8092c2g6OkZsYXNoSGFzaHsGOgplcnJvciIbVXN0ZWQgeWEgc2UgaW5zY3JpYmnD
8093swY6CkB1c2VkewY7CEY=--e94ddde004f8daeeae79c9fb19aa41f700cdb5aa
8094 Parameters: {"action"=>"index", "controller"=>"juegos"}
8095Rendering template within layouts/normal
8096Rendering juegos/index
8097 User Load (0.000482) SELECT * FROM "users" WHERE ("users"."id" = 37) LIMIT 1
8098Completed in 0.01675 (59 reqs/sec) | Rendering: 0.01412 (84%) | DB: 0.00048 (2%) | 200 OK [http://0.0.0.0/juegos]
  
1# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2one:
3 modalidad: expert
4 participante_id: 1
  
55#
66# two:
77# column: value
8#
9
10fitoria:
11 nombre: adolfo fitorai
12 email: adolfo@fitoria.net
13 universidad_id: 2
14 telefono: 234245
  
1require 'test_helper'
2
3class JuegosControllerTest < ActionController::TestCase
4 # Replace this with your real tests.
5 def test_truth
6 assert true
7 end
8end
  
1require 'test_helper'
2
3class FoFPlayerTest < ActiveSupport::TestCase
4 # Replace this with your real tests.
5 def test_truth
6 assert true
7 end
8end