Commit 11e829f152da8ddcf543ea3380760c3a35130830

  • avatar
  • Adolfo Fitoria <fitoria @fitoria…ptop.(none)>
  • Wed Sep 09 01:09:36 CEST 2009
corrigiendo bugs
  
88 def crear_equipo
99 if request.post?
1010 @user = User.find_by_id(session[:user_id])
11 @equipo = UrbanTerrorTeam.new(params[:team])
12 @player = UrbanTerrorPlayer.new()
13 @player.participante = @user.participante
14 @player.tipo = "leader"
15 if UrbanTerrorTeam.count < 16
16 if @equipo.save
17 @player.urban_terror_team = @equipo
18 if @player.save
19 flash[:notice] = "Equipo guardado. Practiquen!"
20 else
21 flash[:error] = "Error al guardar equipo"
22 end
11 if @user.participante.urban_terror_player
12 if @user.participante.urban_terror_player.tipo == "leader"
13 flash[:error]= "usted ya posee un equipo si eliminelo si desea crear otro"
14 redirect_to :action => 'equipo', :id => @user.participante.urban_terror_player.urban_terror_team.id
15 elsif @user.participante.urban_terror_player
16 flash[:error]= "usted ya está en un equipo. Favor elimine su suscripcion si desea crear uno nuevo"
17 redirect_to :action => 'equipo', :id => @user.participante.urban_terror_player.urban_terror_team.id
2318 end
2419 else
25 flash[:error] = "Número máximo de equipos alcanzado"
20 @equipo = UrbanTerrorTeam.new(params[:urban_terror_team])
21 @player = UrbanTerrorPlayer.new()
22 @player.participante = @user.participante
23 @player.tipo = "leader"
24 if UrbanTerrorTeam.count < 16
25 if @equipo.save
26 @player.urban_terror_team = @equipo
27 if @player.save
28 flash[:notice] = "Equipo guardado. Practiquen!"
29 redirect_to :action => 'equipo', :id => @equipo.id
30 else
31 flash[:error] = "Error al guardar equipo"
32 end
33 end
34 else
35 flash[:error] = "Número máximo de equipos alcanzado"
36 end
2637 end
27 redirect_to :action => 'index'
2838 end
2939 end
3040
5050 @user = User.find_by_id(session[:user_id])
5151 @equipo = UrbanTerrorTeam.find_by_id(params[:id])
5252 if request.post?
53 @player = UrbanTerrorPlayer.new()
54 @player.participante = Participante.find_by_nombre(params[:participante][:nombre])
55 if @equipo.urban_terror_players.count < 4 and @user.participante.urban_terror_player.tipo =="leader"
56 @player.urban_terror_team = @equipo
57 if @player.save
58 flash[:notice] = "Jugador agregado"
53 participante = Participante.find_by_nombre(params[:participante][:nombre])
54 if participante and participante.urban_terror_player == nil
55 @player = UrbanTerrorPlayer.new(:participante => participante)
56 if @equipo.urban_terror_players.count < 4 and @user.participante.urban_terror_player.tipo =="leader"
57 @player.urban_terror_team = @equipo
58 if @player.save
59 flash[:notice] = "Jugador agregado"
60 else
61 flash[:error] = "Error al agregar el jugador"
62 end
5963 else
60 flash[:error] = "Error al agregar el jugador"
64 flash[:error] = "Ya no se puede inscribir a más jugadores o usted no es el creador del equipo"
6165 end
6266 else
63 flash[:error] = "Ya no se puede inscribir a más jugadores o usted no es el creador del equipo"
67 flash[:error] = "El jugador agregado no existe o ya ha sido agregado"
6468 end
6569 end
6670 end
6771
6872 def eliminar_miembros
6973 @user = User.find_by_id(session[:user_id])
70 if @user.participante.urban_terror_player.tipo == "leader"
71 @jugador = UrbanTerrorPlayer.find_by_id(params[:id])
72 UrbanTerrorPlayer.delete(@jugador)
73 flash[:notice] = "Jugador Eliminado"
74 redirect_to :action => 'equipo', :id => @user.participante.urban_terror_team.id
74 if @user.participante.urban_terror_player
75 if @user.participante.urban_terror_player.tipo == "leader" or @user.participante.urban_terror_player.id == params[:id]
76 @jugador = UrbanTerrorPlayer.find_by_id(params[:id])
77 if @user.participante.urban_terror_player.urban_terror_team == @jugador.urban_terror_team
78 if @jugador == @user.participante.urban_terror_player
79 UrbanTerrorTeam.delete(@jugador.urban_terror_team)
80 UrbanTerrorPlayer.delete(@jugador)
81 flash[:notice] = "Su equipo ha sido eliminado"
82 redirect_to :action => 'index'
83 else
84 UrbanTerrorPlayer.delete(@jugador)
85 flash[:notice] = "Jugador Eliminado"
86 redirect_to :action => 'equipo', :id => @user.participante.urban_terror_player.urban_terror_team.id
87 end
88 else
89 flash[:error] = "El jugador que quiere eliminar no está en su equipo"
90 redirect_to :action => 'lista_equipos'
91 end
92 end
7593 else
7694 flash[:error] = "usted no puede editar este equipo solo el creador puede"
95 redirect_to :action => 'lista_equipos'
7796 end
7897 end
7998end
  
11class UrbanTerrorTeam < ActiveRecord::Base
22 has_many :urban_terror_players
3 validates_uniqueness_of :name
4 validates_presence_of :name
5 validates_length_of :name, :within => 3..20
36
4 def leader
5 return self.urban_terror_players.find_by_type("leader")
6 end
77end
  
1616 </tr>
1717</table>
1818Su equipo tiene: <%= @equipo.urban_terror_players.count %> miembros de 4 permitidos
19
20<h3> Jugadores: </h3>
21<ul>
22<% for dude in @equipo.urban_terror_players %>
23 <li><%= dude.participante.nombre %> <%= link_to "Eliminar", :action => "eliminar_miembros", :id => dude %>
24<% end%>
25</ul>
1926<% end%>
Binary files differ
  
39153915Rendering juegos/index
39163916 User Load (0.000373) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
39173917Completed in 0.01946 (51 reqs/sec) | Rendering: 0.01691 (86%) | DB: 0.00037 (1%) | 200 OK [http://0.0.0.0/juegos]
3918DEPRECATION 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)
3919
3920
3921Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 16:18:04) [GET]
3922 Session ID: aaa2b212e9f1da772acb1d80e944aba9
3923 Parameters: {"action"=>"welcome", "controller"=>"index"}
3924Rendering template within layouts/normal
3925Rendering index/welcome
3926Completed in 0.06869 (14 reqs/sec) | Rendering: 0.06583 (95%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/]
3927
3928
3929Processing AccountController#login (for 127.0.0.1 at 2009-09-08 16:18:18) [GET]
3930 Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
3931SGFzaHsABjoKQHVzZWR7AA==--1d2b86bba507d0957b4380e88a16435272c55e3d
3932 Parameters: {"action"=>"login", "controller"=>"account"}
3933Rendering template within layouts/normal
3934Rendering account/login
3935Completed in 0.01390 (71 reqs/sec) | Rendering: 0.01145 (82%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/login]
3936
3937
3938Processing AccountController#login (for 127.0.0.1 at 2009-09-08 16:18:23) [POST]
3939 Session ID: BAh7BzoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNjZWU4MDUy
3940ZTkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
3941c2h7AAY6CkB1c2VkewA=--dbe690190e49c961f9b61ee33b430dfe1302e8cf
3942 Parameters: {"commit"=>"Iniciar Sesion", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"login", "controller"=>"account", "user"=>{"login"=>"fitoria", "password"=>"qwerty"}}
3943 User Load (0.001134) SELECT * FROM "users" WHERE ("users"."password" = 'ba0d78f4f642cd3bef63fe9b62233c79949cee13' AND "users"."login" = 'fitoria') LIMIT 1
3944Redirected to http://0.0.0.0:3000/admin
3945Completed in 0.26527 (3 reqs/sec) | DB: 0.00113 (0%) | 302 Found [http://0.0.0.0/account/login]
3946
3947
3948Processing AdminController#index (for 127.0.0.1 at 2009-09-08 16:18:24) [GET]
3949 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
3950bGFzaDo6Rmxhc2hIYXNoewYiC25vdGljZSIUSW5pY2lvIGV4aXN0b3NvBjoK
3951QHVzZWR7BkAIRjoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNj
3952ZWU4MDUyZTk=--c0881f22d62a3680991c1f697cd6ca557801c855
3953 Parameters: {"action"=>"index", "controller"=>"admin"}
3954 User Load (0.000404) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
3955Rendering template within layouts/admin
3956Rendering admin/index
3957Completed in 0.03496 (28 reqs/sec) | Rendering: 0.02128 (60%) | DB: 0.00040 (1%) | 200 OK [http://0.0.0.0/admin]
3958
3959
3960Processing ApplicationController#index (for 127.0.0.1 at 2009-09-08 16:18:24) [GET]
3961 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
3962NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
3963c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
3964c2VkewZACVQ=--587802965e439c56aa5465ea87bf2b237eb2fc9c
3965 Parameters: {}
3966
3967
3968ActionController::RoutingError (No route matches "/javascripts/scriptaculous/prototype.js" with {:method=>:get}):
3969 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
3970 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
3971 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
3972 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
3973 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
3974 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
3975 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
3976 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
3977 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
3978 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
3979 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
3980 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
3981 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
3982 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
3983 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
3984 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
3985 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
3986 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
3987 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
3988 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
3989 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
3990 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
3991 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
3992 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
3993 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
3994 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
3995 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
3996 /vendor/rails/railties/lib/commands/server.rb:39
3997 script/server:3:in `require'
3998 script/server:3
3999
4000Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4001
4002
4003Processing ApplicationController#index (for 127.0.0.1 at 2009-09-08 16:18:24) [GET]
4004 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4005NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4006c2g6OkZsYXNoSGFzaHsGIgtub3RpY2UiFEluaWNpbyBleGlzdG9zbwY6CkB1
4007c2VkewZACVQ=--587802965e439c56aa5465ea87bf2b237eb2fc9c
4008 Parameters: {}
4009
4010
4011ActionController::RoutingError (No route matches "/javascripts/scriptaculous/scriptaculous.js" with {:method=>:get}):
4012 /vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
4013 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:384:in `recognize'
4014 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
4015 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4016 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4017 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4018 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4019 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4020 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4021 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4022 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4023 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4024 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4025 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4026 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4027 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4028 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4029 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4030 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4031 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4032 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4033 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4034 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4035 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4036 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4037 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4038 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4039 /vendor/rails/railties/lib/commands/server.rb:39
4040 script/server:3:in `require'
4041 script/server:3
4042
4043Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
4044
4045
4046Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 16:18:27) [GET]
4047 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4048bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4049NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4050 Parameters: {"action"=>"welcome", "controller"=>"index"}
4051Rendering template within layouts/normal
4052Rendering index/welcome
4053 User Load (0.000434) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4054Completed in 0.01725 (57 reqs/sec) | Rendering: 0.01463 (84%) | DB: 0.00043 (2%) | 200 OK [http://0.0.0.0/]
4055
4056
4057Processing JuegosController#index (for 127.0.0.1 at 2009-09-08 16:18:28) [GET]
4058 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4059NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4060c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--ac4e45c714f97d5b7014d3bad4b1bcbc6eb43abe
4061 Parameters: {"action"=>"index", "controller"=>"juegos"}
4062Rendering template within layouts/normal
4063Rendering juegos/index
4064 User Load (0.001019) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4065Completed in 0.09025 (11 reqs/sec) | Rendering: 0.08333 (92%) | DB: 0.00102 (1%) | 200 OK [http://0.0.0.0/juegos]
4066
4067
4068Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:18:30) [GET]
4069 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4070bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4071NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4072 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
4073Rendering template within layouts/normal
4074Rendering urban_terror/index
4075 User Load (0.000961) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4076Completed in 0.19019 (5 reqs/sec) | Rendering: 0.18329 (96%) | DB: 0.00096 (0%) | 200 OK [http://0.0.0.0/urban_terror]
4077
4078
4079Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:18:32) [GET]
4080 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4081NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4082c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--ac4e45c714f97d5b7014d3bad4b1bcbc6eb43abe
4083 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
4084 UrbanTerrorTeam Load (0.001122) SELECT * FROM "urban_terror_teams" 
4085Rendering template within layouts/normal
4086Rendering urban_terror/lista_equipos
4087 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4088Completed in 0.02671 (37 reqs/sec) | Rendering: 0.01770 (66%) | DB: 0.00151 (5%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
4089DEPRECATION 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)
4090 UrbanTerrorTeam Load (0.001201) SELECT * FROM "urban_terror_teams" 
4091
4092
4093Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:19:05) [GET]
4094 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4095bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4096NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4097 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
4098 User Load (0.000951) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4099Rendering template within layouts/normal
4100Rendering urban_terror/crear_equipo
4101 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4102Completed in 0.07270 (13 reqs/sec) | Rendering: 0.03905 (53%) | DB: 0.00095 (1%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
4103
4104
4105Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:19:10) [POST]
4106 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4107NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4108c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--ac4e45c714f97d5b7014d3bad4b1bcbc6eb43abe
4109 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"Re malditos"}, "controller"=>"urban_terror"}
4110 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4111 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4112 Participante Load (0.000529) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
4113 SQL (0.000335) SELECT count(*) AS count_all FROM "urban_terror_teams" 
4114
4115
4116NoMethodError (undefined method `nombre' for #<UrbanTerrorTeam:0xb67874ac>):
4117 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
4118 /vendor/rails/activerecord/lib/active_record/validations.rb:356:in `send'
4119 /vendor/rails/activerecord/lib/active_record/validations.rb:356:in `validates_each'
4120 /vendor/rails/activerecord/lib/active_record/validations.rb:355:in `each'
4121 /vendor/rails/activerecord/lib/active_record/validations.rb:355:in `validates_each'
4122 /vendor/rails/activesupport/lib/active_support/callbacks.rb:177:in `call'
4123 /vendor/rails/activesupport/lib/active_support/callbacks.rb:177:in `evaluate_method'
4124 /vendor/rails/activesupport/lib/active_support/callbacks.rb:161:in `call'
4125 /vendor/rails/activesupport/lib/active_support/callbacks.rb:90:in `run'
4126 /vendor/rails/activesupport/lib/active_support/callbacks.rb:90:in `each'
4127 /vendor/rails/activesupport/lib/active_support/callbacks.rb:90:in `send'
4128 /vendor/rails/activesupport/lib/active_support/callbacks.rb:90:in `run'
4129 /vendor/rails/activesupport/lib/active_support/callbacks.rb:272:in `run_callbacks'
4130 /vendor/rails/activerecord/lib/active_record/validations.rb:929:in `valid_without_callbacks?'
4131 /vendor/rails/activerecord/lib/active_record/callbacks.rb:267:in `valid?'
4132 /vendor/rails/activerecord/lib/active_record/validations.rb:900:in `save_without_dirty'
4133 /vendor/rails/activerecord/lib/active_record/dirty.rb:75:in `save_without_transactions'
4134 /vendor/rails/activerecord/lib/active_record/transactions.rb:106:in `save'
4135 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
4136 /vendor/rails/activerecord/lib/active_record/transactions.rb:79:in `transaction'
4137 /vendor/rails/activerecord/lib/active_record/transactions.rb:98:in `transaction'
4138 /vendor/rails/activerecord/lib/active_record/transactions.rb:106:in `save'
4139 /vendor/rails/activerecord/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
4140 /vendor/rails/activerecord/lib/active_record/transactions.rb:106:in `save'
4141 /app/controllers/urban_terror_controller.rb:16:in `crear_equipo'
4142 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4143 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4144 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4145 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4146 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4147 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4148 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4149 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4150 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4151 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4152 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4153 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4154 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4155 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4156 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4157 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4158 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4159 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4160 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4161 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4162 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4163 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4164 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4165 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4166 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4167 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4168 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4169 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4170 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4171 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4172 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4173 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4174 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4175 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4176 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4177 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4178 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4179 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4180 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4181 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4182 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4183 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4184 /vendor/rails/railties/lib/commands/server.rb:39
4185 script/server:3:in `require'
4186 script/server:3
4187
4188Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4189
4190
4191Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:19:56) [POST]
4192 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4193bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4194NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4195 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"Re malditos"}, "controller"=>"urban_terror"}
4196 User Load (0.000371) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4197 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4198 Participante Load (0.000559) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
4199 SQL (0.000312) SELECT count(*) AS count_all FROM "urban_terror_teams" 
4200 SQL (0.000340) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name IS NULL) 
4201Redirected to http://0.0.0.0:3000/urban_terror
4202Completed in 0.03899 (25 reqs/sec) | DB: 0.00158 (4%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
4203
4204
4205Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:19:56) [GET]
4206 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4207NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4208c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--ac4e45c714f97d5b7014d3bad4b1bcbc6eb43abe
4209 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
4210Rendering template within layouts/normal
4211Rendering urban_terror/index
4212 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4213Completed in 0.10489 (9 reqs/sec) | Rendering: 0.10230 (97%) | DB: 0.00041 (0%) | 200 OK [http://0.0.0.0/urban_terror]
4214
4215
4216Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:19:59) [GET]
4217 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4218bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4219NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4220 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
4221 UrbanTerrorTeam Load (0.001101) SELECT * FROM "urban_terror_teams" 
4222Rendering template within layouts/normal
4223Rendering urban_terror/lista_equipos
4224 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4225Completed in 0.02483 (40 reqs/sec) | Rendering: 0.01607 (64%) | DB: 0.00149 (5%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
4226 UrbanTerrorTeam Load (0.001174) SELECT * FROM "urban_terror_teams" 
4227
4228
4229Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:20:14) [GET]
4230 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4231NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4232c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--ac4e45c714f97d5b7014d3bad4b1bcbc6eb43abe
4233 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
4234 UrbanTerrorTeam Load (0.000371) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
4235Rendering template within layouts/normal
4236Rendering urban_terror/equipo
4237 SQL (0.000305) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
4238 UrbanTerrorPlayer Load (0.000660) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
4239 Participante Load (0.000475) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
4240 Participante Load (0.000565) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
4241 Participante Load (0.000453) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
4242 Participante Load (0.000491) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
4243 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4244Completed in 0.15510 (6 reqs/sec) | Rendering: 0.14205 (91%) | DB: 0.00373 (2%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
4245
4246
4247Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:20:16) [GET]
4248 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4249bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4250NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--b8f9a4d019c9b11503cce52d458ff1fbe3354153
4251 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
4252 User Load (0.000393) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4253 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4254 Participante Load (0.000504) SELECT * FROM "participantes" WHERE ("participantes".user_id = 9) LIMIT 1
4255 UrbanTerrorPlayer Load (0.000424) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 10) LIMIT 1
4256Rendering template within layouts/normal
4257Rendering urban_terror/eliminar_miembros
4258
4259
4260ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
4261 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
4262 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
4263 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
4264 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
4265 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
4266 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
4267 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
4268 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
4269 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4270 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
4271 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
4272 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
4273 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
4274 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4275 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4276 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4277 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4278 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4279 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4280 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4281 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4282 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4283 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4284 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4285 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4286 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4287 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4288 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4289 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4290 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4291 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4292 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4293 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4294 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4295 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4296 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4297 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4298 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4299 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4300 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4301 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4302 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4303 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4304 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4305 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4306 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4307 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4308 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4309 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4310 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4311 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4312 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4313 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4314 /vendor/rails/railties/lib/commands/server.rb:39
4315 script/server:3:in `require'
4316 script/server:3
4317
4318Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4319
4320
4321Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:20:24) [GET]
4322 Session ID: BAh7CDoMdXNlcl9pZGkOOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4323NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4324c2g6OkZsYXNoSGFzaHsGOgplcnJvciI8dXN0ZWQgbm8gcHVlZGUgZWRpdGFy
4325IGVzdGUgZXF1aXBvIHNvbG8gZWwgY3JlYWRvciBwdWVkZQY6CkB1c2VkewY7
4326CEY=--42125f2c50a90d4c44027d12b1670f692fc440ee
4327 Parameters: {"action"=>"agregar_miembros", "id"=>"1", "controller"=>"urban_terror"}
4328 User Load (0.000372) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4329 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4330 UrbanTerrorTeam Load (0.000402) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
4331Rendering template within layouts/normal
4332Rendering urban_terror/agregar_miembros
4333 SQL (0.000299) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
4334 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 9) LIMIT 1
4335Completed in 0.05011 (19 reqs/sec) | Rendering: 0.03048 (60%) | DB: 0.00107 (2%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/1]
4336
4337
4338Processing AccountController#logout (for 127.0.0.1 at 2009-09-08 16:21:53) [GET]
4339 Session ID: BAh7CDoMdXNlcl9pZGkOIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4340bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjx1c3RlZCBubyBwdWVkZSBlZGl0
4341YXIgZXN0ZSBlcXVpcG8gc29sbyBlbCBjcmVhZG9yIHB1ZWRlBjoKQHVzZWR7
4342BjsHVDoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNjZWU4MDUy
4343ZTk=--31344106183a7b5e8286f7f0a30fa69b9f101b94
4344 Parameters: {"action"=>"logout", "controller"=>"account"}
4345Rendering template within layouts/normal
4346Rendering account/logout
4347Completed in 0.01990 (50 reqs/sec) | Rendering: 0.01752 (88%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/logout]
4348
4349
4350Processing AccountController#login (for 127.0.0.1 at 2009-09-08 16:21:56) [GET]
4351 Session ID: BAh7CDoMdXNlcl9pZDA6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1
4352YTIzY2VlODA1MmU5IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFz
4353aDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--60b644be21be68b75160122cfb075e817003bc5b
4354 Parameters: {"action"=>"login", "controller"=>"account"}
4355Rendering template within layouts/normal
4356Rendering account/login
4357Completed in 0.00562 (178 reqs/sec) | Rendering: 0.00344 (61%) | DB: 0.00000 (0%) | 200 OK [http://0.0.0.0/account/login]
4358
4359
4360Processing AccountController#login (for 127.0.0.1 at 2009-09-08 16:22:03) [POST]
4361 Session ID: BAh7CDoMdXNlcl9pZDAiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZs
4362YXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6DGNzcmZfaWQiJTE0MzJhYjM1
4363MjJjNTk3ODZmODg1YTIzY2VlODA1MmU5--a6b78d27271332d2c14c85bf53efe61dc928d629
4364 Parameters: {"commit"=>"Iniciar Sesion", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"login", "controller"=>"account", "user"=>{"login"=>"kiko", "password"=>"123456"}}
4365 User Load (0.000237) SELECT * FROM "users" WHERE ("users"."password" = 'b261938efff8c7acd495c85141c067d56262e3cc' AND "users"."login" = 'kiko') LIMIT 1
4366Rendering template within layouts/normal
4367Rendering account/login
4368Completed in 0.02355 (42 reqs/sec) | Rendering: 0.00446 (18%) | DB: 0.00024 (1%) | 200 OK [http://0.0.0.0/account/login]
4369
4370
4371Processing AccountController#signup (for 127.0.0.1 at 2009-09-08 16:22:05) [GET]
4372 Session ID: BAh7CDoMdXNlcl9pZDA6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1
4373YTIzY2VlODA1MmU5IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFz
4374aDo6Rmxhc2hIYXNoewY6CmVycm9yIh9ubyBzZSBwdWRvIGluaWNpYXIgc2Vz
4375c2lvbgY6CkB1c2VkewY7CEY=--cd783d609ecbc705370b5c884a07c56daf5ccb04
4376 Parameters: {"action"=>"signup", "controller"=>"account"}
4377 Universidad Load (0.001989) SELECT * FROM "universidads" 
4378Rendering template within layouts/normal
4379Rendering account/signup
4380Completed in 0.24421 (4 reqs/sec) | Rendering: 0.02762 (11%) | DB: 0.00199 (0%) | 200 OK [http://0.0.0.0/account/signup]
4381
4382
4383Processing AccountController#signup (for 127.0.0.1 at 2009-09-08 16:22:29) [POST]
4384 Session ID: BAh7CDoMdXNlcl9pZDAiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZs
4385YXNoOjpGbGFzaEhhc2h7BjoKZXJyb3IiH25vIHNlIHB1ZG8gaW5pY2lhciBz
4386ZXNzaW9uBjoKQHVzZWR7BjsHVDoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4
4387NmY4ODVhMjNjZWU4MDUyZTk=--6d38955cde0807b0b694e7be37c4df31a7d2dc14
4388 Parameters: {"commit"=>"Crear Usuario", "universidad"=>"UNI", "password_confirmation"=>"123456", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"signup", "controller"=>"account", "participante"=>{"telefono"=>"2343543", "nombre"=>"kiko loco", "email"=>"kiko@fitoria.net"}, "user"=>{"login"=>"kiko", "password"=>"123456"}}
4389 Universidad Load (0.016763) SELECT * FROM "universidads" 
4390 Universidad Load (0.000485) SELECT * FROM "universidads" WHERE ("universidads"."nombre" = 'UNI') LIMIT 1
4391 SQL (0.000302) SELECT "login" FROM "users" WHERE ("users".login = 'kiko') 
4392 CACHE (0.000000) SELECT "login" FROM "users" WHERE ("users".login = 'kiko') 
4393 User Create (0.000640) INSERT INTO "users" ("role", "login", "password") VALUES('asistente', 'kiko', 'b261938efff8c7acd495c85141c067d56262e3cc')
4394 Participante Create (0.000307) INSERT INTO "participantes" ("telefono", "created_at", "nombre", "updated_at", "user_id", "universidad_id", "email") VALUES('2343543', '2009-09-08 16:22:29', 'kiko loco', '2009-09-08 16:22:29', 38, 6, 'kiko@fitoria.net')
4395 User Load (0.001415) SELECT * FROM "users" WHERE ("users"."password" = 'b261938efff8c7acd495c85141c067d56262e3cc' AND "users"."login" = 'kiko') LIMIT 1
4396Sent mail to kiko@fitoria.net
4397
4398Date: Tue, 8 Sep 2009 16:22:29 -0600
4399From: noreply@registro.linuxtour.org
4400To: kiko@fitoria.net
4401Subject: =?utf-8?Q?Confirmaci=c3=b3n_de_suscripcion_para_el_SFD_Nicaragua_=32=30=30=39?=
4402Mime-Version: 1.0
4403Content-Type: text/plain; charset=utf-8
4404
4405kiko loco
4406
4407Gracias por suscribirse al evento mas grande de Software Libre en Nicaragua y al mejor evento por dos años consecutivos a nivel mundial.
4408
4409Manténgase informado en: http://linuxtour.org/sfd
4410
4411
4412Net::SMTPSyntaxError (503 AUTH command used when not advertised
4413):
4414 /usr/lib/ruby/1.8/net/smtp.rb:948:in `check_auth_continue'
4415 /usr/lib/ruby/1.8/net/smtp.rb:740:in `auth_login'
4416 /usr/lib/ruby/1.8/net/smtp.rb:921:in `critical'
4417 /usr/lib/ruby/1.8/net/smtp.rb:739:in `auth_login'
4418 /usr/lib/ruby/1.8/net/smtp.rb:725:in `send'
4419 /usr/lib/ruby/1.8/net/smtp.rb:725:in `authenticate'
4420 /usr/lib/ruby/1.8/net/smtp.rb:566:in `do_start'
4421 /usr/lib/ruby/1.8/net/smtp.rb:525:in `start'
4422 /usr/lib/ruby/1.8/net/smtp.rb:463:in `start'
4423 /vendor/rails/actionmailer/lib/action_mailer/base.rb:627:in `perform_delivery_smtp'
4424 /vendor/rails/actionmailer/lib/action_mailer/base.rb:508:in `__send__'
4425 /vendor/rails/actionmailer/lib/action_mailer/base.rb:508:in `deliver!'
4426 /vendor/rails/actionmailer/lib/action_mailer/base.rb:383:in `method_missing'
4427 /app/controllers/account_controller.rb:35:in `signup'
4428 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4429 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4430 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4431 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4432 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4433 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4434 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4435 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4436 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4437 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4438 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4439 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4440 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4441 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4442 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4443 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4444 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4445 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4446 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4447 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4448 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4449 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4450 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4451 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4452 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4453 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4454 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4455 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4456 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4457 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4458 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4459 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4460 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4461 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4462 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4463 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4464 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4465 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4466 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4467 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4468 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4469 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4470 /vendor/rails/railties/lib/commands/server.rb:39
4471 script/server:3:in `require'
4472 script/server:3
4473
4474Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4475
4476
4477Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 16:22:33) [GET]
4478 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4479NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4480c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiGUluc2NyaXBjaW9uIEV4aXRvc2Eu
4481BjoKQHVzZWR7BjsIRg==--d3bf1548e3f9f71a91523b277ad8c8ac82015668
4482 Parameters: {"action"=>"welcome", "controller"=>"index"}
4483Rendering template within layouts/normal
4484Rendering index/welcome
4485 User Load (0.001736) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4486Completed in 0.02389 (41 reqs/sec) | Rendering: 0.02004 (83%) | DB: 0.00174 (7%) | 200 OK [http://0.0.0.0/]
4487
4488
4489Processing JuegosController#index (for 127.0.0.1 at 2009-09-08 16:22:35) [GET]
4490 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4491bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIZSW5zY3JpcGNpb24gRXhpdG9z
4492YS4GOgpAdXNlZHsGOwdUOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4493NWEyM2NlZTgwNTJlOQ==--1a61bacd45e6d9093a218b6d53d83bb29f47ba5b
4494 Parameters: {"action"=>"index", "controller"=>"juegos"}
4495Rendering template within layouts/normal
4496Rendering juegos/index
4497 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4498Completed in 0.01778 (56 reqs/sec) | Rendering: 0.01517 (85%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/juegos]
4499
4500
4501Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:22:37) [GET]
4502 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4503NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4504c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4505 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
4506Rendering template within layouts/normal
4507Rendering urban_terror/index
4508 User Load (0.000381) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4509Completed in 0.01709 (58 reqs/sec) | Rendering: 0.01451 (84%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/urban_terror]
4510
4511
4512Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:22:39) [GET]
4513 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4514bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4515NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4516 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
4517 User Load (0.000408) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4518Rendering template within layouts/normal
4519Rendering urban_terror/crear_equipo
4520 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4521Completed in 0.01718 (58 reqs/sec) | Rendering: 0.00483 (28%) | DB: 0.00041 (2%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
4522
4523
4524Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:22:43) [POST]
4525 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4526NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4527c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4528 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"Kiko team"}, "controller"=>"urban_terror"}
4529 User Load (0.000418) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4530 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4531 Participante Load (0.000527) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4532 SQL (0.000317) SELECT count(*) AS count_all FROM "urban_terror_teams" 
4533 SQL (0.000346) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name IS NULL) 
4534Redirected to http://0.0.0.0:3000/urban_terror
4535Completed in 0.04042 (24 reqs/sec) | DB: 0.00161 (3%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
4536
4537
4538Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:22:43) [GET]
4539 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4540bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4541NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4542 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
4543Rendering template within layouts/normal
4544Rendering urban_terror/index
4545 User Load (0.000435) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4546Completed in 0.01712 (58 reqs/sec) | Rendering: 0.01451 (84%) | DB: 0.00044 (2%) | 200 OK [http://0.0.0.0/urban_terror]
4547
4548
4549Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:22:45) [GET]
4550 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4551NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4552c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4553 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
4554 UrbanTerrorTeam Load (0.001165) SELECT * FROM "urban_terror_teams" 
4555Rendering template within layouts/normal
4556Rendering urban_terror/lista_equipos
4557 User Load (0.000534) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4558Completed in 0.02588 (38 reqs/sec) | Rendering: 0.01662 (64%) | DB: 0.00170 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
4559 UrbanTerrorTeam Load (0.001188) SELECT * FROM "urban_terror_teams" 
4560
4561
4562Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:24:41) [GET]
4563 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4564bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4565NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4566 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
4567 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4568Rendering template within layouts/normal
4569Rendering urban_terror/crear_equipo
4570 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4571Completed in 0.01746 (57 reqs/sec) | Rendering: 0.00493 (28%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
4572
4573
4574Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:24:45) [POST]
4575 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4576NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4577c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4578 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"Kiko Team"}, "controller"=>"urban_terror"}
4579 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4580 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4581 Participante Load (0.000522) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4582 SQL (0.000312) SELECT count(*) AS count_all FROM "urban_terror_teams" 
4583 SQL (0.000204) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name = 'Kiko Team') 
4584 UrbanTerrorTeam Create (0.000325) INSERT INTO "urban_terror_teams" ("name", "created_at", "updated_at") VALUES('Kiko Team', '2009-09-08 16:24:45', '2009-09-08 16:24:45')
4585 UrbanTerrorPlayer Create (0.000404) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'leader', '2009-09-08 16:24:46', '2009-09-08 16:24:46', 39)
4586Redirected to http://0.0.0.0:3000/urban_terror
4587Completed in 0.43414 (2 reqs/sec) | DB: 0.00215 (0%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
4588
4589
4590Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:24:46) [GET]
4591 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4592bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIhRXF1aXBvIGd1YXJkYWRvLiBQ
4593cmFjdGlxdWVuIQY6CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJj
4594NTk3ODZmODg1YTIzY2VlODA1MmU5--f0fa9ea1cf7a218da3d53cc86e0c0d8994d21eab
4595 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
4596Rendering template within layouts/normal
4597Rendering urban_terror/index
4598 User Load (0.000387) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4599Completed in 0.01750 (57 reqs/sec) | Rendering: 0.01487 (84%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/urban_terror]
4600
4601
4602Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:24:49) [GET]
4603 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4604NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4605c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIUVxdWlwbyBndWFyZGFkby4gUHJh
4606Y3RpcXVlbiEGOgpAdXNlZHsGOwhU--db82a523d9713de1082e18659c7cee279f7fb5f4
4607 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
4608 UrbanTerrorTeam Load (0.001167) SELECT * FROM "urban_terror_teams" 
4609Rendering template within layouts/normal
4610Rendering urban_terror/lista_equipos
4611 User Load (0.000437) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4612Completed in 0.02972 (33 reqs/sec) | Rendering: 0.02092 (70%) | DB: 0.00160 (5%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
4613
4614
4615Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:24:52) [GET]
4616 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4617bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4618NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4619 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
4620 UrbanTerrorTeam Load (0.000396) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4621Rendering template within layouts/normal
4622Rendering urban_terror/equipo
4623 SQL (0.000302) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4624 UrbanTerrorPlayer Load (0.000377) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4625 Participante Load (0.000442) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
4626 User Load (0.000425) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4627Completed in 0.04745 (21 reqs/sec) | Rendering: 0.03545 (74%) | DB: 0.00194 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
4628
4629
4630Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:24:53) [GET]
4631 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4632NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4633c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4634 Parameters: {"action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror"}
4635 User Load (0.000381) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4636 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4637 UrbanTerrorTeam Load (0.000370) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4638Rendering template within layouts/normal
4639Rendering urban_terror/agregar_miembros
4640 SQL (0.000303) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4641 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4642Completed in 0.03222 (31 reqs/sec) | Rendering: 0.01244 (38%) | DB: 0.00105 (3%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
4643
4644
4645Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:24:55) [GET]
4646 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4647bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4648NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4649 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"s"}}
4650 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4651 Participante Load (0.001952) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%s%') ORDER BY nombre ASC LIMIT 10
4652Completed in 0.12504 (7 reqs/sec) | Rendering: 0.00300 (2%) | DB: 0.00236 (1%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=s]
4653
4654
4655Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:24:57) [GET]
4656 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4657NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4658c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4659 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema"}}
4660 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4661 Participante Load (0.000882) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%gema%') ORDER BY nombre ASC LIMIT 10
4662Completed in 0.02361 (42 reqs/sec) | Rendering: 0.00237 (10%) | DB: 0.00127 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=gema]
4663
4664
4665Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:25:00) [POST]
4666 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4667bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4668NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4669 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
4670 User Load (0.000464) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4671 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4672 UrbanTerrorTeam Load (0.000381) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4673 Participante Load (0.000483) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4674 SQL (0.000350) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4675 Participante Load (0.000496) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4676 UrbanTerrorPlayer Load (0.000435) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4677 UrbanTerrorPlayer Create (0.000356) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:25:00', '2009-09-08 16:25:00', 31)
4678Rendering template within layouts/normal
4679Rendering urban_terror/agregar_miembros
4680 SQL (0.000903) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4681 User Load (0.001813) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4682Completed in 0.37090 (2 reqs/sec) | Rendering: 0.01926 (5%) | DB: 0.00568 (1%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
4683 Participante Load (0.001363) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4684 UrbanTerrorPlayer Load (0.001118) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
4685 UrbanTerrorTeam Load (0.001034) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 1) 
4686
4687
4688Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:27:21) [GET]
4689 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4690NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4691c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
4692dXNlZHsGOwhG--94d95b1e3fa477a50c9696a6cec6cbc2ed4552e3
4693 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"ge"}}
4694 User Load (0.000403) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4695 Participante Load (0.000897) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%ge%') ORDER BY nombre ASC LIMIT 10
4696Completed in 0.02406 (41 reqs/sec) | Rendering: 0.00238 (9%) | DB: 0.00130 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=ge]
4697
4698
4699Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:27:23) [POST]
4700 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4701bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
4702CkB1c2VkewY7B1Q6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
4703Y2VlODA1MmU5--21b30e4601ab0b5873217ff8f0a5d462f224fc73
4704 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
4705 User Load (0.000456) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4706 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4707 UrbanTerrorTeam Load (0.000381) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4708 Participante Load (0.000535) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4709
4710
4711NoMethodError (undefined method `urban_terror_player' for #<UrbanTerrorPlayer:0xb6890ce0>):
4712 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
4713 /app/controllers/urban_terror_controller.rb:45:in `agregar_miembros'
4714 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4715 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4716 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4717 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4718 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4719 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4720 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4721 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4722 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4723 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4724 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4725 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4726 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4727 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4728 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4729 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4730 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4731 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4732 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4733 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4734 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4735 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4736 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4737 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4738 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4739 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4740 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4741 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4742 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4743 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4744 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4745 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4746 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4747 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4748 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4749 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4750 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4751 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4752 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4753 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4754 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4755 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4756 /vendor/rails/railties/lib/commands/server.rb:39
4757 script/server:3:in `require'
4758 script/server:3
4759
4760Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4761
4762
4763Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:27:40) [POST]
4764 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4765NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4766c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4767 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
4768 User Load (0.000445) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4769 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4770 UrbanTerrorTeam Load (0.000438) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4771 Participante Load (0.000514) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4772 UrbanTerrorPlayer Load (0.000466) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
4773 SQL (0.000349) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4774 Participante Load (0.000500) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4775 UrbanTerrorPlayer Load (0.000397) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4776 UrbanTerrorPlayer Create (0.000407) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:27:41', '2009-09-08 16:27:41', 31)
4777Rendering template within layouts/normal
4778Rendering urban_terror/agregar_miembros
4779 SQL (0.000390) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4780 User Load (0.000414) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4781Completed in 0.05837 (17 reqs/sec) | Rendering: 0.00686 (11%) | DB: 0.00432 (7%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
4782
4783
4784Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:27:48) [GET]
4785 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4786bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
4787CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
4788Y2VlODA1MmU5--9081668c6bc39e51436eb2769359d4dde465f9eb
4789 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
4790 UrbanTerrorTeam Load (0.000380) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4791Rendering template within layouts/normal
4792Rendering urban_terror/equipo
4793 SQL (0.000298) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4794 UrbanTerrorPlayer Load (0.000568) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4795 Participante Load (0.000475) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
4796 Participante Load (0.000491) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
4797 CACHE (0.000000) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
4798 User Load (0.000383) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4799Completed in 0.04789 (20 reqs/sec) | Rendering: 0.03579 (74%) | DB: 0.00260 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
4800
4801
4802Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:27:51) [GET]
4803 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4804NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4805c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
4806dXNlZHsGOwhU--9a29dc46ce8ff048b486b12b0844428d44a6cd8d
4807 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"8", "controller"=>"urban_terror"}
4808 User Load (0.000437) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4809 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4810 Participante Load (0.000546) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4811 UrbanTerrorPlayer Load (0.000452) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4812 UrbanTerrorPlayer Load (0.000435) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '8') LIMIT 1
4813 UrbanTerrorPlayer Delete all (0.313521) DELETE FROM "urban_terror_players" WHERE ("id" IN (8)) 
4814
4815
4816NoMethodError (undefined method `urban_terror_team' for #<Participante:0xb692b790>):
4817 /vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
4818 /vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb:177:in `send'
4819 /vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb:177:in `method_missing'
4820 /app/controllers/urban_terror_controller.rb:68:in `eliminar_miembros'
4821 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
4822 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
4823 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
4824 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
4825 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4826 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
4827 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
4828 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
4829 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
4830 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
4831 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
4832 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
4833 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
4834 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
4835 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
4836 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
4837 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
4838 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
4839 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
4840 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
4841 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
4842 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
4843 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
4844 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
4845 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
4846 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4847 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4848 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4849 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4850 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4851 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4852 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4853 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4854 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4855 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4856 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
4857 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
4858 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
4859 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
4860 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4861 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
4862 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
4863 /vendor/rails/railties/lib/commands/server.rb:39
4864 script/server:3:in `require'
4865 script/server:3
4866
4867Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
4868
4869
4870Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:28:18) [GET]
4871 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4872bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
4873OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
4874M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
4875 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"8", "controller"=>"urban_terror"}
4876 User Load (0.000374) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4877 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4878 Participante Load (0.000529) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4879 UrbanTerrorPlayer Load (0.000420) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4880 UrbanTerrorPlayer Load (0.000287) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '8') LIMIT 1
4881 UrbanTerrorPlayer Delete all (0.000282) DELETE FROM "urban_terror_players" WHERE ("id" IN (NULL)) 
4882 UrbanTerrorTeam Load (0.000380) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
4883Redirected to http://0.0.0.0:3000/urban_terror/equipo/3
4884Completed in 0.03857 (25 reqs/sec) | DB: 0.00227 (5%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/8?confirm=%C2%BFEst%C3%A1+seguro%3F]
4885
4886
4887Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:28:19) [GET]
4888 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4889NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4890c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
4891QHVzZWR7BjsIRg==--79fadeb5e7502e3b95dc391fe1d7a26770e4576a
4892 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
4893 UrbanTerrorTeam Load (0.000395) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4894Rendering template within layouts/normal
4895Rendering urban_terror/equipo
4896 SQL (0.000305) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4897 UrbanTerrorPlayer Load (0.000505) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4898 Participante Load (0.000476) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
4899 Participante Load (0.000494) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
4900 User Load (0.000381) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4901Completed in 0.04998 (20 reqs/sec) | Rendering: 0.03735 (74%) | DB: 0.00256 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
4902
4903
4904Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:28:21) [GET]
4905 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4906bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
4907OgpAdXNlZHsGOwdUOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
4908M2NlZTgwNTJlOQ==--b640fa6ebc4ce9532884a12788af962ceb063353
4909 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"7", "controller"=>"urban_terror"}
4910 User Load (0.000374) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4911 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4912 Participante Load (0.000522) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4913 UrbanTerrorPlayer Load (0.000448) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4914 UrbanTerrorPlayer Load (0.000462) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '7') LIMIT 1
4915 UrbanTerrorPlayer Delete all (0.004283) DELETE FROM "urban_terror_players" WHERE ("id" IN (7)) 
4916 UrbanTerrorTeam Load (0.000383) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
4917Redirected to http://0.0.0.0:3000/urban_terror/equipo/3
4918Completed in 0.12838 (7 reqs/sec) | DB: 0.00647 (5%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/7?confirm=%C2%BFEst%C3%A1+seguro%3F]
4919
4920
4921Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:28:21) [GET]
4922 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4923NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4924c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
4925QHVzZWR7BjsIRg==--79fadeb5e7502e3b95dc391fe1d7a26770e4576a
4926 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
4927 UrbanTerrorTeam Load (0.000459) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4928Rendering template within layouts/normal
4929Rendering urban_terror/equipo
4930 SQL (0.000392) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4931 UrbanTerrorPlayer Load (0.002340) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4932 Participante Load (0.000596) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
4933 User Load (0.000446) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4934Completed in 0.06791 (14 reqs/sec) | Rendering: 0.05184 (76%) | DB: 0.00423 (6%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
4935
4936
4937Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:28:29) [GET]
4938 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4939bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
4940OgpAdXNlZHsGOwdUOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
4941M2NlZTgwNTJlOQ==--b640fa6ebc4ce9532884a12788af962ceb063353
4942 Parameters: {"action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror"}
4943 User Load (0.000378) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4944 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4945 UrbanTerrorTeam Load (0.000377) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4946Rendering template within layouts/normal
4947Rendering urban_terror/agregar_miembros
4948 SQL (0.000304) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4949 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4950Completed in 0.03217 (31 reqs/sec) | Rendering: 0.01233 (38%) | DB: 0.00106 (3%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
4951
4952
4953Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:28:32) [GET]
4954 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4955NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4956c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4957 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema"}}
4958 User Load (0.000394) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4959 Participante Load (0.000896) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%gema%') ORDER BY nombre ASC LIMIT 10
4960Completed in 0.02392 (41 reqs/sec) | Rendering: 0.00241 (10%) | DB: 0.00129 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=gema]
4961
4962
4963Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:28:33) [GET]
4964 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4965bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
4966NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
4967 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fit"}}
4968 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4969 Participante Load (0.000617) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%gema fit%') ORDER BY nombre ASC LIMIT 10
4970Completed in 0.02285 (43 reqs/sec) | Rendering: 0.00239 (10%) | DB: 0.00102 (4%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=gema%20fit]
4971 Participante Load (0.001290) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4972 UrbanTerrorPlayer Load (0.001176) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
4973 UrbanTerrorTeam Load (0.000801) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 1) 
4974
4975
4976Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:28:51) [POST]
4977 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
4978NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
4979c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
4980 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
4981 User Load (0.000386) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4982 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4983 UrbanTerrorTeam Load (0.000375) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
4984 Participante Load (0.000517) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
4985 UrbanTerrorPlayer Load (0.000472) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
4986 SQL (0.000426) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4987 Participante Load (0.000522) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
4988 UrbanTerrorPlayer Load (0.000393) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
4989 UrbanTerrorPlayer Create (0.000371) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:28:52', '2009-09-08 16:28:52', 31)
4990Rendering template within layouts/normal
4991Rendering urban_terror/agregar_miembros
4992 SQL (0.000373) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
4993 User Load (0.000424) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
4994Completed in 0.16663 (6 reqs/sec) | Rendering: 0.00759 (4%) | DB: 0.00426 (2%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
4995
4996
4997Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:28:55) [GET]
4998 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
4999bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
5000CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
5001Y2VlODA1MmU5--9081668c6bc39e51436eb2769359d4dde465f9eb
5002 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"g"}}
5003 User Load (0.000387) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5004 Participante Load (0.001269) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%g%') ORDER BY nombre ASC LIMIT 10
5005Completed in 0.02396 (41 reqs/sec) | Rendering: 0.00239 (9%) | DB: 0.00166 (6%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=g]
5006
5007
5008Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:28:55) [GET]
5009 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5010NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5011c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
5012dXNlZHsGOwhU--9a29dc46ce8ff048b486b12b0844428d44a6cd8d
5013 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"ge"}}
5014 User Load (0.000376) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5015 Participante Load (0.000904) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%ge%') ORDER BY nombre ASC LIMIT 10
5016Completed in 0.03034 (32 reqs/sec) | Rendering: 0.00233 (7%) | DB: 0.00128 (4%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=ge]
5017
5018
5019Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:28:57) [POST]
5020 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5021bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5022NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5023 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
5024 User Load (0.000397) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5025 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5026 UrbanTerrorTeam Load (0.000415) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5027 Participante Load (0.000524) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
5028 UrbanTerrorPlayer Load (0.000452) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
5029 SQL (0.000349) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5030 Participante Load (0.000492) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5031 UrbanTerrorPlayer Load (0.000406) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5032 UrbanTerrorPlayer Create (0.000397) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:28:58', '2009-09-08 16:28:58', 31)
5033Rendering template within layouts/normal
5034Rendering urban_terror/agregar_miembros
5035 SQL (0.000372) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5036 User Load (0.000400) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5037Completed in 0.05677 (17 reqs/sec) | Rendering: 0.00677 (11%) | DB: 0.00420 (7%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5038
5039
5040Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:30:01) [GET]
5041 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5042NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5043c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
5044dXNlZHsGOwhG--94d95b1e3fa477a50c9696a6cec6cbc2ed4552e3
5045 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"ge"}}
5046 User Load (0.000442) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5047 Participante Load (0.000905) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%ge%') ORDER BY nombre ASC LIMIT 10
5048Completed in 0.02367 (42 reqs/sec) | Rendering: 0.00243 (10%) | DB: 0.00135 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=ge]
5049
5050
5051Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:30:03) [POST]
5052 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5053bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
5054CkB1c2VkewY7B1Q6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
5055Y2VlODA1MmU5--21b30e4601ab0b5873217ff8f0a5d462f224fc73
5056 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
5057 User Load (0.000460) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5058 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5059 UrbanTerrorTeam Load (0.000450) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5060 Participante Load (0.000518) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
5061 SQL (0.000360) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5062 Participante Load (0.000509) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5063 UrbanTerrorPlayer Load (0.000428) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5064 UrbanTerrorPlayer Create (0.000366) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:30:03', '2009-09-08 16:30:03', 31)
5065Rendering template within layouts/normal
5066Rendering urban_terror/agregar_miembros
5067 SQL (0.000379) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5068 User Load (0.000415) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5069Completed in 0.16330 (6 reqs/sec) | Rendering: 0.00856 (5%) | DB: 0.00388 (2%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5070 Participante Load (0.001349) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
5071 UrbanTerrorPlayer Load (0.001118) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
5072 Participante Load (0.009679) SELECT * FROM "participantes" 
5073 Participante Load (0.009821) SELECT * FROM "participantes" 
5074 Participante Load (0.009792) SELECT * FROM "participantes" 
5075 UrbanTerrorPlayer Load (0.000550) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 17) LIMIT 1
5076
5077
5078Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:33:45) [POST]
5079 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5080NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5081c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
5082dXNlZHsGOwhG--94d95b1e3fa477a50c9696a6cec6cbc2ed4552e3
5083 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
5084 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5085 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5086 UrbanTerrorTeam Load (0.000419) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5087 Participante Load (0.000585) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
5088 UrbanTerrorPlayer Load (0.000590) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
5089Rendering template within layouts/normal
5090Rendering urban_terror/agregar_miembros
5091 SQL (0.002471) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5092 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5093Completed in 0.05160 (19 reqs/sec) | Rendering: 0.01193 (23%) | DB: 0.00445 (8%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5094
5095
5096Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:33:53) [GET]
5097 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5098bGFzaDo6Rmxhc2hIYXNoewc6CmVycm9yIjhFbCBqdWdhZG9yIGFncmVnYWRv
5099IG5vIGV4aXN0ZSBvIHlhIGhhIHNpZG8gYWdyZWdhZG86C25vdGljZSIVSnVn
5100YWRvciBhZ3JlZ2FkbwY6CkB1c2Vkewc7B0Y7CFQ6DGNzcmZfaWQiJTE0MzJh
5101YjM1MjJjNTk3ODZmODg1YTIzY2VlODA1MmU5--4dbee49e2aa8c79fb092ebd3e6baa1d8dfe0384c
5102 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
5103Rendering template within layouts/normal
5104Rendering urban_terror/index
5105 User Load (0.000403) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5106Completed in 0.01983 (50 reqs/sec) | Rendering: 0.01684 (84%) | DB: 0.00040 (2%) | 200 OK [http://0.0.0.0/urban_terror/]
5107
5108
5109Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:33:54) [GET]
5110 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5111NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5112c2g6OkZsYXNoSGFzaHsGOgplcnJvciI4RWwganVnYWRvciBhZ3JlZ2FkbyBu
5113byBleGlzdGUgbyB5YSBoYSBzaWRvIGFncmVnYWRvBjoKQHVzZWR7BjsIVA==--c76e79bca2c06c0227ed1a42465a8b1ed35ab675
5114 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
5115 UrbanTerrorTeam Load (0.001199) SELECT * FROM "urban_terror_teams" 
5116Rendering template within layouts/normal
5117Rendering urban_terror/lista_equipos
5118 User Load (0.000414) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5119Completed in 0.02515 (39 reqs/sec) | Rendering: 0.01615 (64%) | DB: 0.00161 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
5120
5121
5122Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:33:56) [GET]
5123 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5124bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5125NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5126 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5127 UrbanTerrorTeam Load (0.000413) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5128Rendering template within layouts/normal
5129Rendering urban_terror/equipo
5130 SQL (0.000294) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5131 UrbanTerrorPlayer Load (0.000703) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5132 Participante Load (0.000429) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5133 Participante Load (0.000482) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5134 CACHE (0.000000) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5135 CACHE (0.000000) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5136 User Load (0.000391) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5137Completed in 0.04833 (20 reqs/sec) | Rendering: 0.03632 (75%) | DB: 0.00271 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
5138
5139
5140Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:33:57) [GET]
5141 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5142NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5143c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5144 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"11", "controller"=>"urban_terror"}
5145 User Load (0.000394) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5146 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5147 Participante Load (0.000538) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5148 UrbanTerrorPlayer Load (0.000436) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5149 UrbanTerrorPlayer Load (0.000450) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '11') LIMIT 1
5150 UrbanTerrorPlayer Delete all (0.002486) DELETE FROM "urban_terror_players" WHERE ("id" IN (11)) 
5151 UrbanTerrorTeam Load (0.000363) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
5152Redirected to http://0.0.0.0:3000/urban_terror/equipo/3
5153Completed in 0.04247 (23 reqs/sec) | DB: 0.00467 (10%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/11?confirm=%C2%BFEst%C3%A1+seguro%3F]
5154
5155
5156Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:33:57) [GET]
5157 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5158bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
5159OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
5160M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
5161 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5162 UrbanTerrorTeam Load (0.000410) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5163Rendering template within layouts/normal
5164Rendering urban_terror/equipo
5165 SQL (0.000306) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5166 UrbanTerrorPlayer Load (0.000575) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5167 Participante Load (0.000435) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5168 Participante Load (0.000518) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5169 CACHE (0.000000) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5170 User Load (0.000383) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5171Completed in 0.04771 (20 reqs/sec) | Rendering: 0.03564 (74%) | DB: 0.00263 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
5172
5173
5174Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:33:59) [GET]
5175 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5176NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5177c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
5178QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
5179 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"10", "controller"=>"urban_terror"}
5180 User Load (0.000402) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5181 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5182 Participante Load (0.000544) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5183 UrbanTerrorPlayer Load (0.000432) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5184 UrbanTerrorPlayer Load (0.000446) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '10') LIMIT 1
5185 UrbanTerrorPlayer Delete all (0.004041) DELETE FROM "urban_terror_players" WHERE ("id" IN (10)) 
5186 UrbanTerrorTeam Load (0.000350) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
5187Redirected to http://0.0.0.0:3000/urban_terror/equipo/3
5188Completed in 0.04487 (22 reqs/sec) | DB: 0.00622 (13%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/10?confirm=%C2%BFEst%C3%A1+seguro%3F]
5189
5190
5191Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:33:59) [GET]
5192 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5193bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
5194OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
5195M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
5196 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5197 UrbanTerrorTeam Load (0.000430) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5198Rendering template within layouts/normal
5199Rendering urban_terror/equipo
5200 SQL (0.000338) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5201 UrbanTerrorPlayer Load (0.000552) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5202 Participante Load (0.000503) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5203 Participante Load (0.000558) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
5204 User Load (0.000440) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5205Completed in 0.05540 (18 reqs/sec) | Rendering: 0.04153 (74%) | DB: 0.00282 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
5206
5207
5208Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:34:00) [GET]
5209 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5210NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5211c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
5212QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
5213 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"9", "controller"=>"urban_terror"}
5214 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5215 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5216 Participante Load (0.000570) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5217 UrbanTerrorPlayer Load (0.000454) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5218 UrbanTerrorPlayer Load (0.000458) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '9') LIMIT 1
5219 UrbanTerrorPlayer Delete all (0.002486) DELETE FROM "urban_terror_players" WHERE ("id" IN (9)) 
5220 UrbanTerrorTeam Load (0.000354) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
5221Redirected to http://0.0.0.0:3000/urban_terror/equipo/3
5222Completed in 0.04591 (21 reqs/sec) | DB: 0.00473 (10%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/9?confirm=%C2%BFEst%C3%A1+seguro%3F]
5223
5224
5225Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:34:00) [GET]
5226 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5227bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
5228OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
5229M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
5230 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5231 UrbanTerrorTeam Load (0.000384) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5232Rendering template within layouts/normal
5233Rendering urban_terror/equipo
5234 SQL (0.000304) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5235 UrbanTerrorPlayer Load (0.000361) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5236 Participante Load (0.000435) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5237 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5238Completed in 0.04554 (21 reqs/sec) | Rendering: 0.03427 (75%) | DB: 0.00187 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
5239
5240
5241Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:34:05) [GET]
5242 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5243NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5244c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
5245QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
5246 Parameters: {"action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror"}
5247 User Load (0.000375) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5248 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5249 UrbanTerrorTeam Load (0.000405) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5250Rendering template within layouts/normal
5251Rendering urban_terror/agregar_miembros
5252 SQL (0.000329) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5253 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5254Completed in 0.12064 (8 reqs/sec) | Rendering: 0.01336 (11%) | DB: 0.00111 (0%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5255
5256
5257Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:34:07) [GET]
5258 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5259bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5260NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5261 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"ge"}}
5262 User Load (0.000984) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5263 Participante Load (0.002436) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%ge%') ORDER BY nombre ASC LIMIT 10
5264Completed in 0.06543 (15 reqs/sec) | Rendering: 0.00638 (9%) | DB: 0.00342 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=ge]
5265
5266
5267Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:34:09) [POST]
5268 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5269NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5270c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5271 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"gema fitoria"}}
5272 User Load (0.000380) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5273 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5274 UrbanTerrorTeam Load (0.000378) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5275 Participante Load (0.000494) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'gema fitoria') LIMIT 1
5276 UrbanTerrorPlayer Load (0.000460) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 31) LIMIT 1
5277Rendering template within layouts/normal
5278Rendering urban_terror/agregar_miembros
5279 SQL (0.000300) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5280 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5281Completed in 0.04435 (22 reqs/sec) | Rendering: 0.00830 (18%) | DB: 0.00201 (4%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5282
5283
5284Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:34:11) [GET]
5285 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5286bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjhFbCBqdWdhZG9yIGFncmVnYWRv
5287IG5vIGV4aXN0ZSBvIHlhIGhhIHNpZG8gYWdyZWdhZG8GOgpAdXNlZHsGOwdG
5288Ogxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--0ccf726388989f7236bfb449d66693f85cd5bf43
5289 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pi"}}
5290 User Load (0.000398) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5291 Participante Load (0.000966) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%pi%') ORDER BY nombre ASC LIMIT 10
5292Completed in 0.02421 (41 reqs/sec) | Rendering: 0.00237 (9%) | DB: 0.00136 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=pi]
5293
5294
5295Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:34:14) [POST]
5296 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5297NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5298c2g6OkZsYXNoSGFzaHsGOgplcnJvciI4RWwganVnYWRvciBhZ3JlZ2FkbyBu
5299byBleGlzdGUgbyB5YSBoYSBzaWRvIGFncmVnYWRvBjoKQHVzZWR7BjsIVA==--c76e79bca2c06c0227ed1a42465a8b1ed35ab675
5300 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pipo"}}
5301 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5302 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5303 UrbanTerrorTeam Load (0.000379) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5304 Participante Load (0.000476) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'pipo') LIMIT 1
5305 UrbanTerrorPlayer Load (0.000266) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 17) LIMIT 1
5306 SQL (0.000300) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5307 Participante Load (0.000483) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5308 UrbanTerrorPlayer Load (0.000372) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5309
5310
5311NoMethodError (You have a nil object when you didn't expect it!
5312The error occurred while evaluating nil.urban_terror_team=):
5313 /app/controllers/urban_terror_controller.rb:46:in `agregar_miembros'
5314 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5315 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5316 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5317 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5318 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5319 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5320 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5321 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5322 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5323 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5324 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5325 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5326 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5327 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5328 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5329 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5330 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5331 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5332 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5333 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5334 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5335 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5336 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5337 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5338 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5339 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5340 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5341 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5342 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5343 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5344 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5345 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5346 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5347 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5348 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5349 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5350 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5351 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5352 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5353 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5354 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5355 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5356 /vendor/rails/railties/lib/commands/server.rb:39
5357 script/server:3:in `require'
5358 script/server:3
5359
5360Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5361
5362
5363Processing ApplicationController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:34:56) [POST]
5364 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5365bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5366NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5367 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pipo"}}
5368
5369
5370SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:45: syntax error, unexpected ')', expecting kEND):
5371 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
5372 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
5373 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5374 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
5375 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
5376 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
5377 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
5378 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
5379 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
5380 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
5381 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
5382 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
5383 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5384 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5385 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5386 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5387 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5388 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5389 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5390 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5391 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5392 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5393 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5394 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5395 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5396 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5397 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5398 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5399 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5400 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5401 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5402 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5403 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5404 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5405 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5406 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5407 /vendor/rails/railties/lib/commands/server.rb:39
5408 script/server:3:in `require'
5409 script/server:3
5410
5411Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5412 Participante Load (0.010347) SELECT * FROM "participantes" 
5413 Participante Load (0.009680) SELECT * FROM "participantes" 
5414 Participante Load (0.009667) SELECT * FROM "participantes" 
5415 Participante Load (0.010036) SELECT * FROM "participantes" 
5416
5417
5418Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:36:27) [POST]
5419 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5420NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5421c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5422 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pipo"}}
5423 User Load (0.001204) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5424 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5425 UrbanTerrorTeam Load (0.000418) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5426 Participante Load (0.000510) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'pipo') LIMIT 1
5427 UrbanTerrorPlayer Load (0.000282) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 17) LIMIT 1
5428 SQL (0.000341) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5429 Participante Load (0.000488) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5430 UrbanTerrorPlayer Load (0.000378) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5431 UrbanTerrorPlayer Create (0.000371) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(3, 'player', '2009-09-08 16:36:28', '2009-09-08 16:36:28', 17)
5432Rendering template within layouts/normal
5433Rendering urban_terror/agregar_miembros
5434 SQL (0.000386) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5435 User Load (0.000404) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5436Completed in 0.05737 (17 reqs/sec) | Rendering: 0.00686 (11%) | DB: 0.00478 (8%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5437
5438
5439Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:36:32) [GET]
5440 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5441bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
5442CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
5443Y2VlODA1MmU5--9081668c6bc39e51436eb2769359d4dde465f9eb
5444 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pi"}}
5445 User Load (0.000412) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5446 Participante Load (0.000949) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%pi%') ORDER BY nombre ASC LIMIT 10
5447Completed in 0.02494 (40 reqs/sec) | Rendering: 0.00247 (9%) | DB: 0.00136 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=pi]
5448
5449
5450Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 16:36:33) [GET]
5451 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5452NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5453c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
5454dXNlZHsGOwhU--9a29dc46ce8ff048b486b12b0844428d44a6cd8d
5455 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pip"}}
5456 User Load (0.000378) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5457 Participante Load (0.000610) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%pip%') ORDER BY nombre ASC LIMIT 10
5458Completed in 0.02924 (34 reqs/sec) | Rendering: 0.00224 (7%) | DB: 0.00099 (3%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=pip]
5459
5460
5461Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:36:35) [POST]
5462 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5463bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5464NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5465 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pipo"}}
5466 User Load (0.000374) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5467 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5468 UrbanTerrorTeam Load (0.000374) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5469 Participante Load (0.000471) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'pipo') LIMIT 1
5470 UrbanTerrorPlayer Load (0.000474) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 17) LIMIT 1
5471Rendering template within layouts/normal
5472Rendering urban_terror/agregar_miembros
5473 SQL (0.000325) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5474 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5475Completed in 0.04921 (20 reqs/sec) | Rendering: 0.00950 (19%) | DB: 0.00202 (4%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5476
5477
5478Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:37:17) [POST]
5479 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5480NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5481c2g6OkZsYXNoSGFzaHsGOgplcnJvciI4RWwganVnYWRvciBhZ3JlZ2FkbyBu
5482byBleGlzdGUgbyB5YSBoYSBzaWRvIGFncmVnYWRvBjoKQHVzZWR7BjsIRg==--9958eed31d446665d9dab77fbf343151fef16722
5483 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"asdfasdf "}}
5484 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5485 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5486 UrbanTerrorTeam Load (0.000397) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5487 Participante Load (0.000400) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'asdfasdf ') LIMIT 1
5488
5489
5490NoMethodError (You have a nil object when you didn't expect it!
5491The error occurred while evaluating nil.urban_terror_player):
5492 /app/controllers/urban_terror_controller.rb:44:in `agregar_miembros'
5493 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
5494 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
5495 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5496 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5497 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5498 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5499 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5500 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5501 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5502 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5503 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5504 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5505 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5506 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5507 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5508 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5509 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5510 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5511 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5512 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5513 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5514 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5515 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5516 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5517 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5518 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5519 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5520 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5521 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5522 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5523 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5524 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5525 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5526 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5527 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5528 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5529 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5530 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5531 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5532 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5533 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5534 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5535 /vendor/rails/railties/lib/commands/server.rb:39
5536 script/server:3:in `require'
5537 script/server:3
5538
5539Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5540
5541
5542Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:37:39) [POST]
5543 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5544bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjhFbCBqdWdhZG9yIGFncmVnYWRv
5545IG5vIGV4aXN0ZSBvIHlhIGhhIHNpZG8gYWdyZWdhZG8GOgpAdXNlZHsGOwdU
5546Ogxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--c326ddc0a0cbe6d117e6a339c6620c72751e3d9b
5547 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"3", "controller"=>"urban_terror", "participante"=>{"nombre"=>"asdfasdf "}}
5548 User Load (0.000382) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5549 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5550 UrbanTerrorTeam Load (0.000395) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5551 Participante Load (0.000288) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'asdfasdf ') LIMIT 1
5552Rendering template within layouts/normal
5553Rendering urban_terror/agregar_miembros
5554 SQL (0.000349) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5555 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5556Completed in 0.05232 (19 reqs/sec) | Rendering: 0.01239 (23%) | DB: 0.00141 (2%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/3]
5557 UrbanTerrorTeam Load (0.001432) SELECT * FROM "urban_terror_teams" 
5558 UrbanTerrorTeam Load (0.001371) SELECT * FROM "urban_terror_teams" 
5559 UrbanTerrorTeam Load (0.001379) SELECT * FROM "urban_terror_teams" 
5560 UrbanTerrorTeam Load (0.001376) SELECT * FROM "urban_terror_teams" 
5561 UrbanTerrorPlayer Load (0.001463) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5562 UrbanTerrorTeam Load (0.001521) SELECT * FROM "urban_terror_teams" 
5563 UrbanTerrorPlayer Load (0.001094) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."tipo" = 'leader') AND ("urban_terror_players".urban_terror_team_id = 3) LIMIT 1
5564
5565
5566Processing ApplicationController#equipo (for 127.0.0.1 at 2009-09-08 16:43:00) [GET]
5567 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5568NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5569c2g6OkZsYXNoSGFzaHsGOgplcnJvciI4RWwganVnYWRvciBhZ3JlZ2FkbyBu
5570byBleGlzdGUgbyB5YSBoYSBzaWRvIGFncmVnYWRvBjoKQHVzZWR7BjsIRg==--9958eed31d446665d9dab77fbf343151fef16722
5571 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5572
5573
5574SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:75: syntax error, unexpected kELSE, expecting kEND
5575/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:79: syntax error, unexpected $end, expecting kEND):
5576 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
5577 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
5578 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5579 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
5580 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
5581 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
5582 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
5583 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
5584 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
5585 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
5586 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
5587 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
5588 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5589 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5590 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5591 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5592 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5593 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5594 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5595 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5596 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5597 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5598 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5599 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5600 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5601 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5602 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5603 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5604 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5605 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5606 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5607 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5608 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5609 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5610 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5611 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5612 /vendor/rails/railties/lib/commands/server.rb:39
5613 script/server:3:in `require'
5614 script/server:3
5615
5616Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5617
5618
5619Processing ApplicationController#equipo (for 127.0.0.1 at 2009-09-08 16:43:01) [GET]
5620 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5621bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjhFbCBqdWdhZG9yIGFncmVnYWRv
5622IG5vIGV4aXN0ZSBvIHlhIGhhIHNpZG8gYWdyZWdhZG8GOgpAdXNlZHsGOwdU
5623Ogxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--c326ddc0a0cbe6d117e6a339c6620c72751e3d9b
5624 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5625
5626
5627SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:75: syntax error, unexpected kELSE, expecting kEND
5628/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:79: syntax error, unexpected $end, expecting kEND):
5629 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
5630 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
5631 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5632 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
5633 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
5634 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
5635 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
5636 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
5637 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
5638 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
5639 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
5640 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
5641 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5642 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5643 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5644 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5645 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5646 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5647 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5648 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5649 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5650 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5651 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5652 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5653 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5654 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5655 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5656 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5657 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5658 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5659 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5660 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5661 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5662 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5663 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5664 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5665 /vendor/rails/railties/lib/commands/server.rb:39
5666 script/server:3:in `require'
5667 script/server:3
5668
5669Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5670
5671
5672Processing ApplicationController#equipo (for 127.0.0.1 at 2009-09-08 16:43:04) [GET]
5673 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5674NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5675c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5676 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5677
5678
5679SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:75: syntax error, unexpected kELSE, expecting kEND
5680/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:79: syntax error, unexpected $end, expecting kEND):
5681 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
5682 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
5683 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5684 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
5685 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
5686 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
5687 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
5688 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
5689 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
5690 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
5691 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
5692 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
5693 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5694 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5695 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5696 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5697 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5698 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5699 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5700 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5701 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5702 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5703 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5704 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5705 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5706 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5707 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5708 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5709 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5710 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5711 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
5712 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5713 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5714 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5715 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5716 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5717 /vendor/rails/railties/lib/commands/server.rb:39
5718 script/server:3:in `require'
5719 script/server:3
5720
5721Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
5722
5723
5724Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:43:12) [GET]
5725 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5726bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5727NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5728 Parameters: {"action"=>"equipo", "id"=>"3", "controller"=>"urban_terror"}
5729 UrbanTerrorTeam Load (0.000468) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '3') LIMIT 1
5730Rendering template within layouts/normal
5731Rendering urban_terror/equipo
5732 SQL (0.000365) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5733 UrbanTerrorPlayer Load (0.000617) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 3) 
5734 Participante Load (0.000436) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5735 Participante Load (0.000476) SELECT * FROM "participantes" WHERE ("participantes"."id" = 17) 
5736 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5737Completed in 0.05390 (18 reqs/sec) | Rendering: 0.03900 (72%) | DB: 0.00275 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/3]
5738
5739
5740Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:43:15) [GET]
5741 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5742NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5743c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5744 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"6", "controller"=>"urban_terror"}
5745 User Load (0.000400) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5746 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5747 Participante Load (0.000542) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5748 UrbanTerrorPlayer Load (0.000442) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
5749 UrbanTerrorPlayer Load (0.000453) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '6') LIMIT 1
5750 UrbanTerrorTeam Load (0.000340) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 3) 
5751 UrbanTerrorTeam Delete all (0.003021) DELETE FROM "urban_terror_teams" WHERE ("id" IN (3)) 
5752 UrbanTerrorPlayer Delete all (0.002017) DELETE FROM "urban_terror_players" WHERE ("id" IN (6)) 
5753Redirected to http://0.0.0.0:3000/urban_terror
5754Completed in 0.04770 (20 reqs/sec) | DB: 0.00721 (15%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/6?confirm=%C2%BFEst%C3%A1+seguro%3F]
5755
5756
5757Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:43:15) [GET]
5758 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5759bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIgU3UgZXF1aXBvIGhhIHNpZG8g
5760ZWxpbWluYWRvBjoKQHVzZWR7BjsHRjoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1
5761OTc4NmY4ODVhMjNjZWU4MDUyZTk=--814a5d679d25273d415fbee551bc5fdb48bf9b8e
5762 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
5763Rendering template within layouts/normal
5764Rendering urban_terror/index
5765 User Load (0.000390) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5766Completed in 0.01729 (57 reqs/sec) | Rendering: 0.01471 (85%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/urban_terror]
5767
5768
5769Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:43:21) [GET]
5770 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5771NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5772c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIFN1IGVxdWlwbyBoYSBzaWRvIGVs
5773aW1pbmFkbwY6CkB1c2VkewY7CFQ=--f16ee75830ff7e3487e93795aabb42d07ef95ae5
5774 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
5775 UrbanTerrorTeam Load (0.001092) SELECT * FROM "urban_terror_teams" 
5776Rendering template within layouts/normal
5777Rendering urban_terror/lista_equipos
5778 User Load (0.000411) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5779Completed in 0.02469 (40 reqs/sec) | Rendering: 0.01584 (64%) | DB: 0.00150 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
5780
5781
5782Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:46:28) [GET]
5783 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5784bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5785NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5786 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
5787 User Load (0.000412) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5788Rendering template within layouts/normal
5789Rendering urban_terror/crear_equipo
5790 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5791Completed in 0.01785 (56 reqs/sec) | Rendering: 0.00501 (28%) | DB: 0.00041 (2%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
5792
5793
5794Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:46:33) [POST]
5795 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5796NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5797c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5798 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"remalos"}, "controller"=>"urban_terror"}
5799 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5800 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5801 Participante Load (0.000525) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
5802 SQL (0.000321) SELECT count(*) AS count_all FROM "urban_terror_teams" 
5803 SQL (0.000196) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name = 'remalos') 
5804 UrbanTerrorTeam Create (0.000329) INSERT INTO "urban_terror_teams" ("name", "created_at", "updated_at") VALUES('remalos', '2009-09-08 16:46:33', '2009-09-08 16:46:33')
5805 UrbanTerrorPlayer Create (0.000859) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(4, 'leader', '2009-09-08 16:46:33', '2009-09-08 16:46:33', 39)
5806Redirected to http://0.0.0.0:3000/urban_terror
5807Completed in 0.29734 (3 reqs/sec) | DB: 0.00261 (0%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
5808
5809
5810Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:46:33) [GET]
5811 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5812bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIhRXF1aXBvIGd1YXJkYWRvLiBQ
5813cmFjdGlxdWVuIQY6CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJj
5814NTk3ODZmODg1YTIzY2VlODA1MmU5--f0fa9ea1cf7a218da3d53cc86e0c0d8994d21eab
5815 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
5816Rendering template within layouts/normal
5817Rendering urban_terror/index
5818 User Load (0.000404) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5819Completed in 0.01885 (53 reqs/sec) | Rendering: 0.01593 (84%) | DB: 0.00040 (2%) | 200 OK [http://0.0.0.0/urban_terror]
5820
5821
5822Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:46:38) [GET]
5823 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5824NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5825c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIUVxdWlwbyBndWFyZGFkby4gUHJh
5826Y3RpcXVlbiEGOgpAdXNlZHsGOwhU--db82a523d9713de1082e18659c7cee279f7fb5f4
5827 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
5828 UrbanTerrorTeam Load (0.001187) SELECT * FROM "urban_terror_teams" 
5829Rendering template within layouts/normal
5830Rendering urban_terror/lista_equipos
5831 User Load (0.000391) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5832Completed in 0.02534 (39 reqs/sec) | Rendering: 0.01632 (64%) | DB: 0.00158 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
5833
5834
5835Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:46:40) [GET]
5836 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
5837bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
5838NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
5839 Parameters: {"action"=>"equipo", "id"=>"4", "controller"=>"urban_terror"}
5840 UrbanTerrorTeam Load (0.000523) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '4') LIMIT 1
5841Rendering template within layouts/normal
5842Rendering urban_terror/equipo
5843 SQL (0.000299) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
5844 UrbanTerrorPlayer Load (0.000372) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
5845 Participante Load (0.000435) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
5846 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5847Completed in 0.13432 (7 reqs/sec) | Rendering: 0.12189 (90%) | DB: 0.00204 (1%) | 200 OK [http://0.0.0.0/urban_terror/equipo/4]
5848
5849
5850Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:46:45) [GET]
5851 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
5852NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
5853c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
5854 Parameters: {"action"=>"agregar_miembros", "id"=>"4", "controller"=>"urban_terror"}
5855 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5856 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
5857 UrbanTerrorTeam Load (0.000378) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '4') LIMIT 1
5858Rendering template within layouts/normal
5859Rendering urban_terror/agregar_miembros
5860ERROR: compiling _run_erb_47app47views47urban_terror47agregar_miembros46html46erb RAISED compile error
5861/media/disk/home/fitoria/code/sfd-reg/app/views/urban_terror/agregar_miembros.html.erb:25: syntax error, unexpected $end, expecting kEND
5862Function body: def _run_erb_47app47views47urban_terror47agregar_miembros46html46erb(local_assigns)
5863_erbout = ''; _erbout.concat "<h1>Agregar Miembros al equipo: "; _erbout.concat(( h(@equipo.name) ).to_s); _erbout.concat "</h1>\n"
5864; unless flash[:notice].blank? ; _erbout.concat "\n\t <div id=\"notification\">"
5865; _erbout.concat(( flash[:notice]).to_s); _erbout.concat " </div>\n\t\t"
5866; end ; _erbout.concat "\n"
5867; unless flash[:error].blank? ; _erbout.concat "\n <div id=\"error\">"
5868; _erbout.concat(( flash[:error] ).to_s); _erbout.concat "</div>\n"
5869; end; _erbout.concat "\n\n"
5870
5871; form_for :urban_terror_team do |form| ; _erbout.concat "\n<table>\n <tr>\n <td>"
5872
5873
5874; _erbout.concat(( text_field_with_auto_complete :participante, :nombre, {}, {:method => :get, :skip_style => true} ).to_s); _erbout.concat "</td>\n </tr>\n <tr>\n <td>"
5875
5876
5877; _erbout.concat(( submit_tag "Agregar al equipo" ).to_s); _erbout.concat "\n </tr>\n</table>\nSu equipo tiene: "
5878
5879
5880; _erbout.concat(( @equipo.urban_terror_players.count ).to_s); _erbout.concat " miembros de 4 permitidos\n<ul>\n"
5881
5882; for dude in @equipo.urban_terror_players ; _erbout.concat "\n <li>"
5883; _erbout.concat(( dude.participante.nombre ).to_s); _erbout.concat " "; _erbout.concat(( link_to "Eliminar", :action => "eliminar_miembros", :id => dude ).to_s); _erbout.concat "\n"
5884; end; _erbout.concat "\n\n"
5885
5886; _erbout
5887end
5888Backtrace: /media/disk/home/fitoria/code/sfd-reg/app/views/urban_terror/agregar_miembros.html.erb:25:in `compile_template'
5889/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5890/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5891/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5892/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5893/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5894/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5895/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5896/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5897/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5898/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5899/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5900/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5901/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5902/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5903/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5904/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5905/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5906/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5907/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5908/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5909/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5910/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5911/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5912/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5913/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5914/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5915/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5916/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5917/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5918/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5919/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5920/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5921/media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5922/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5923/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5924/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5925/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5926/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5927/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5928/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5929/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5930/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5931/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5932/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5933/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5934/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5935/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/servers/webrick.rb:66
5936/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
5937/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
5938/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5939/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
5940/media/disk/home/fitoria/code/sfd-reg/vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
5941/media/disk/home/fitoria/code/sfd-reg/vendor/rails/railties/lib/commands/server.rb:39
5942script/server:3:in `require'
5943script/server:3
5944
5945
5946ActionView::TemplateError (compile error
5947/media/disk/home/fitoria/code/sfd-reg/app/views/urban_terror/agregar_miembros.html.erb:25: syntax error, unexpected $end, expecting kEND) on line #25 of urban_terror/agregar_miembros.html.erb:
594822: <% end%>
594923:
5950
5951 app/views/urban_terror/agregar_miembros.html.erb:25:in `compile_template'
5952 vendor/rails/actionpack/lib/action_view/template.rb:55:in `prepare!'
5953 vendor/rails/actionpack/lib/action_view/template.rb:34:in `render'
5954 vendor/rails/actionpack/lib/action_view/template.rb:22:in `render_template'
5955 vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
5956 vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
5957 vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
5958 vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
5959 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5960 vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
5961 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
5962 vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
5963 vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
5964 vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
5965 vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
5966 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5967 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
5968 vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
5969 vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
5970 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
5971 vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
5972 vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
5973 vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
5974 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
5975 vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
5976 vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
5977 vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
5978 vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
5979 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
5980 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
5981 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
5982 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
5983 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
5984 vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
5985 vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
5986 vendor/rails/railties/lib/webrick_server.rb:78:in `service'
5987 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
5988 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
5989 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
5990 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
5991 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
5992 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
5993 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
5994 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
5995 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
5996 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
5997 vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
5998 vendor/rails/railties/lib/commands/servers/webrick.rb:66
5999 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6000 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6001 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6002 vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6003 vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6004 vendor/rails/railties/lib/commands/server.rb:39
6005 script/server:3:in `require'
6006 script/server:3
6007
6008Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6009
6010
6011Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:47:11) [GET]
6012 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6013bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6014NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6015 Parameters: {"action"=>"agregar_miembros", "id"=>"4", "controller"=>"urban_terror"}
6016 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6017 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6018 UrbanTerrorTeam Load (0.000402) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '4') LIMIT 1
6019Rendering template within layouts/normal
6020Rendering urban_terror/agregar_miembros
6021 SQL (0.000336) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6022 UrbanTerrorPlayer Load (0.000450) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6023 Participante Load (0.000483) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
6024 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6025Completed in 0.14240 (7 reqs/sec) | Rendering: 0.12157 (85%) | DB: 0.00206 (1%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/4]
6026
6027
6028Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:47:36) [GET]
6029 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6030NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6031c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6032 Parameters: {"action"=>"agregar_miembros", "id"=>"4", "controller"=>"urban_terror"}
6033 User Load (0.000467) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6034 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6035 UrbanTerrorTeam Load (0.000476) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '4') LIMIT 1
6036Rendering template within layouts/normal
6037Rendering urban_terror/agregar_miembros
6038 SQL (0.000394) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6039 UrbanTerrorPlayer Load (0.001473) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6040 Participante Load (0.000580) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
6041 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6042Completed in 0.06464 (15 reqs/sec) | Rendering: 0.03631 (56%) | DB: 0.00339 (5%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/4]
6043
6044
6045Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:47:57) [GET]
6046 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6047bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6048NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6049 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
6050Rendering template within layouts/normal
6051Rendering urban_terror/index
6052 User Load (0.000395) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6053Completed in 0.01871 (53 reqs/sec) | Rendering: 0.01596 (85%) | DB: 0.00040 (2%) | 200 OK [http://0.0.0.0/urban_terror/]
6054
6055
6056Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:47:59) [GET]
6057 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6058NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6059c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6060 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
6061 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6062Rendering template within layouts/normal
6063Rendering urban_terror/crear_equipo
6064 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6065Completed in 0.01738 (57 reqs/sec) | Rendering: 0.00500 (28%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
6066
6067
6068Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 16:48:03) [POST]
6069 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6070bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6071NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6072 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"otro team"}, "controller"=>"urban_terror"}
6073 User Load (0.000968) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6074 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6075 Participante Load (0.000523) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6076 SQL (0.000319) SELECT count(*) AS count_all FROM "urban_terror_teams" 
6077 SQL (0.000212) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name = 'otro team') 
6078 UrbanTerrorTeam Create (0.000331) INSERT INTO "urban_terror_teams" ("name", "created_at", "updated_at") VALUES('otro team', '2009-09-08 16:48:03', '2009-09-08 16:48:03')
6079 UrbanTerrorPlayer Create (0.000368) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(5, 'leader', '2009-09-08 16:48:03', '2009-09-08 16:48:03', 39)
6080Redirected to http://0.0.0.0:3000/urban_terror
6081Completed in 0.18340 (5 reqs/sec) | DB: 0.00272 (1%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
6082
6083
6084Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:48:04) [GET]
6085 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6086NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6087c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIUVxdWlwbyBndWFyZGFkby4gUHJh
6088Y3RpcXVlbiEGOgpAdXNlZHsGOwhG--42cc5897644eab88d6c5e67b7fa0f29770c7f37a
6089 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
6090Rendering template within layouts/normal
6091Rendering urban_terror/index
6092 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6093Completed in 0.01822 (54 reqs/sec) | Rendering: 0.01542 (84%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/urban_terror]
6094
6095
6096Processing ApplicationController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:52:49) [GET]
6097 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6098bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIhRXF1aXBvIGd1YXJkYWRvLiBQ
6099cmFjdGlxdWVuIQY6CkB1c2VkewY7B1Q6DGNzcmZfaWQiJTE0MzJhYjM1MjJj
6100NTk3ODZmODg1YTIzY2VlODA1MmU5--815ebcabc79757e3c56b622b11a63f252a16625d
6101 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6102
6103
6104SyntaxError (/media/disk/home/fitoria/code/sfd-reg/app/controllers/urban_terror_controller.rb:88: syntax error, unexpected $end, expecting kEND):
6105 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_without_new_constant_marking'
6106 /vendor/rails/activesupport/lib/active_support/dependencies.rb:215:in `load_file'
6107 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6108 /vendor/rails/activesupport/lib/active_support/dependencies.rb:214:in `load_file'
6109 /vendor/rails/activesupport/lib/active_support/dependencies.rb:95:in `require_or_load'
6110 /vendor/rails/activesupport/lib/active_support/dependencies.rb:260:in `load_missing_constant'
6111 /vendor/rails/activesupport/lib/active_support/dependencies.rb:467:in `const_missing'
6112 /vendor/rails/activesupport/lib/active_support/dependencies.rb:479:in `const_missing'
6113 /vendor/rails/activesupport/lib/active_support/inflector.rb:283:in `constantize'
6114 /vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
6115 /vendor/rails/actionpack/lib/action_controller/routing/route_set.rb:386:in `recognize'
6116 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:148:in `handle_request'
6117 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6118 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6119 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6120 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6121 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6122 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6123 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6124 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6125 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6126 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6127 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6128 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6129 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6130 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6131 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6132 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6133 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6134 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6135 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6136 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6137 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6138 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6139 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6140 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6141 /vendor/rails/railties/lib/commands/server.rb:39
6142 script/server:3:in `require'
6143 script/server:3
6144
6145Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6146
6147
6148Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:55:23) [GET]
6149 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6150NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6151c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6152 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6153 UrbanTerrorTeam Load (0.001987) SELECT * FROM "urban_terror_teams" 
6154Rendering template within layouts/normal
6155Rendering urban_terror/lista_equipos
6156 User Load (0.000392) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6157Completed in 0.03697 (27 reqs/sec) | Rendering: 0.02386 (64%) | DB: 0.00238 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6158
6159
6160Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:55:23) [GET]
6161 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6162NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6163c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6164 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6165 UrbanTerrorTeam Load (0.001289) SELECT * FROM "urban_terror_teams" 
6166Rendering template within layouts/normal
6167Rendering urban_terror/lista_equipos
6168 User Load (0.000387) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6169Completed in 0.02518 (39 reqs/sec) | Rendering: 0.01620 (64%) | DB: 0.00168 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6170
6171
6172Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:55:25) [GET]
6173 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6174bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6175NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6176 Parameters: {"action"=>"equipo", "id"=>"5", "controller"=>"urban_terror"}
6177 UrbanTerrorTeam Load (0.000414) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '5') LIMIT 1
6178Rendering template within layouts/normal
6179Rendering urban_terror/equipo
6180 SQL (0.000328) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6181 UrbanTerrorPlayer Load (0.000398) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6182 Participante Load (0.000531) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
6183 User Load (0.000398) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6184Completed in 0.05009 (19 reqs/sec) | Rendering: 0.03737 (74%) | DB: 0.00207 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/5]
6185
6186
6187Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:55:27) [GET]
6188 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6189NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6190c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6191 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"14", "controller"=>"urban_terror"}
6192 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6193 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6194 Participante Load (0.000525) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6195 UrbanTerrorPlayer Load (0.000463) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6196 UrbanTerrorPlayer Load (0.000443) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '14') LIMIT 1
6197 UrbanTerrorPlayer Delete all (0.002556) DELETE FROM "urban_terror_players" WHERE ("id" IN (14)) 
6198 UrbanTerrorTeam Load (0.000354) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 4) 
6199Redirected to http://0.0.0.0:3000/urban_terror/equipo/4
6200Completed in 0.04217 (23 reqs/sec) | DB: 0.00473 (11%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/14?confirm=%C2%BFEst%C3%A1+seguro%3F]
6201
6202
6203Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:55:27) [GET]
6204 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6205bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
6206OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
6207M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
6208 Parameters: {"action"=>"equipo", "id"=>"4", "controller"=>"urban_terror"}
6209 UrbanTerrorTeam Load (0.000384) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '4') LIMIT 1
6210Rendering template within layouts/normal
6211Rendering urban_terror/equipo
6212 SQL (0.000421) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6213 UrbanTerrorPlayer Load (0.000419) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 4) 
6214 Participante Load (0.000511) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
6215 User Load (0.000424) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6216Completed in 0.13486 (7 reqs/sec) | Rendering: 0.12331 (91%) | DB: 0.00216 (1%) | 200 OK [http://0.0.0.0/urban_terror/equipo/4]
6217
6218
6219Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:55:35) [GET]
6220 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6221NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6222c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
6223QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
6224 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"13", "controller"=>"urban_terror"}
6225 User Load (0.000386) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6226 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6227 Participante Load (0.000529) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6228 UrbanTerrorPlayer Load (0.000436) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6229 UrbanTerrorPlayer Load (0.000455) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '13') LIMIT 1
6230 UrbanTerrorTeam Load (0.000352) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 4) 
6231 UrbanTerrorTeam Delete all (0.002449) DELETE FROM "urban_terror_teams" WHERE ("id" IN (4)) 
6232 UrbanTerrorPlayer Delete all (0.001830) DELETE FROM "urban_terror_players" WHERE ("id" IN (13)) 
6233Redirected to http://0.0.0.0:3000/urban_terror
6234Completed in 0.04533 (22 reqs/sec) | DB: 0.00644 (14%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/13?confirm=%C2%BFEst%C3%A1+seguro%3F]
6235
6236
6237Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 16:55:35) [GET]
6238 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6239bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIgU3UgZXF1aXBvIGhhIHNpZG8g
6240ZWxpbWluYWRvBjoKQHVzZWR7BjsHRjoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1
6241OTc4NmY4ODVhMjNjZWU4MDUyZTk=--814a5d679d25273d415fbee551bc5fdb48bf9b8e
6242 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
6243Rendering template within layouts/normal
6244Rendering urban_terror/index
6245 User Load (0.000370) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6246Completed in 0.01722 (58 reqs/sec) | Rendering: 0.01464 (85%) | DB: 0.00037 (2%) | 200 OK [http://0.0.0.0/urban_terror]
6247
6248
6249Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:55:39) [GET]
6250 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6251NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6252c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIFN1IGVxdWlwbyBoYSBzaWRvIGVs
6253aW1pbmFkbwY6CkB1c2VkewY7CFQ=--f16ee75830ff7e3487e93795aabb42d07ef95ae5
6254 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6255 UrbanTerrorTeam Load (0.001235) SELECT * FROM "urban_terror_teams" 
6256Rendering template within layouts/normal
6257Rendering urban_terror/lista_equipos
6258 User Load (0.000389) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6259Completed in 0.02610 (38 reqs/sec) | Rendering: 0.01673 (64%) | DB: 0.00162 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6260
6261
6262Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:55:41) [GET]
6263 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6264bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6265NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6266 Parameters: {"action"=>"equipo", "id"=>"5", "controller"=>"urban_terror"}
6267 UrbanTerrorTeam Load (0.000382) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '5') LIMIT 1
6268Rendering template within layouts/normal
6269Rendering urban_terror/equipo
6270 SQL (0.000306) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6271 UrbanTerrorPlayer Load (0.000196) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6272 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6273Completed in 0.03286 (30 reqs/sec) | Rendering: 0.02216 (67%) | DB: 0.00127 (3%) | 200 OK [http://0.0.0.0/urban_terror/equipo/5]
6274
6275
6276Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 16:55:44) [GET]
6277 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6278NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6279c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6280 Parameters: {"action"=>"agregar_miembros", "id"=>"5", "controller"=>"urban_terror"}
6281 User Load (0.000412) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6282 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6283 UrbanTerrorTeam Load (0.000418) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '5') LIMIT 1
6284Rendering template within layouts/normal
6285Rendering urban_terror/agregar_miembros
6286 SQL (0.000369) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6287 UrbanTerrorPlayer Load (0.000210) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6288 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6289Completed in 0.12242 (8 reqs/sec) | Rendering: 0.01392 (11%) | DB: 0.00141 (1%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/5]
6290
6291
6292Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:55:49) [GET]
6293 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6294bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6295NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6296 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
6297 UrbanTerrorTeam Load (0.000440) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
6298Rendering template within layouts/normal
6299Rendering urban_terror/equipo
6300 SQL (0.000306) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6301 UrbanTerrorPlayer Load (0.000700) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6302 Participante Load (0.000449) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
6303 Participante Load (0.000478) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
6304 Participante Load (0.000472) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
6305 Participante Load (0.000455) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
6306 User Load (0.000382) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6307Completed in 0.05121 (19 reqs/sec) | Rendering: 0.03801 (74%) | DB: 0.00368 (7%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
6308
6309
6310Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:55:51) [GET]
6311 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6312NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6313c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6314 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6315 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6316 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6317 Participante Load (0.000539) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6318 UrbanTerrorPlayer Load (0.000243) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6319
6320
6321NoMethodError (You have a nil object when you didn't expect it!
6322The error occurred while evaluating nil.tipo):
6323 /app/controllers/urban_terror_controller.rb:75:in `eliminar_miembros'
6324 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
6325 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
6326 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6327 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6328 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6329 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6330 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6331 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6332 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6333 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6334 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6335 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6336 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6337 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6338 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6339 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6340 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6341 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6342 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6343 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6344 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6345 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6346 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6347 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6348 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6349 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6350 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6351 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6352 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6353 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6354 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6355 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6356 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6357 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6358 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6359 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6360 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6361 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6362 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6363 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6364 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6365 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6366 /vendor/rails/railties/lib/commands/server.rb:39
6367 script/server:3:in `require'
6368 script/server:3
6369
6370Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6371
6372
6373Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:57:06) [GET]
6374 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6375bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6376NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6377 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6378 User Load (0.000504) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6379 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6380 Participante Load (0.000653) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6381 UrbanTerrorPlayer Load (0.000245) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6382Rendering template within layouts/normal
6383Rendering urban_terror/eliminar_miembros
6384
6385
6386ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
6387 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
6388 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
6389 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
6390 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
6391 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
6392 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
6393 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
6394 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
6395 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6396 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
6397 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6398 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
6399 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
6400 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6401 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6402 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6403 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6404 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6405 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6406 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6407 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6408 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6409 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6410 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6411 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6412 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6413 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6414 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6415 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6416 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6417 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6418 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6419 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6420 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6421 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6422 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6423 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6424 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6425 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6426 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6427 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6428 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6429 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6430 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6431 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6432 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6433 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6434 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6435 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6436 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6437 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6438 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6439 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6440 /vendor/rails/railties/lib/commands/server.rb:39
6441 script/server:3:in `require'
6442 script/server:3
6443
6444Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6445
6446
6447Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:57:07) [GET]
6448 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6449NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6450c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6451 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6452 User Load (0.000376) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6453 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6454 Participante Load (0.000551) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6455 UrbanTerrorPlayer Load (0.000234) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6456Rendering template within layouts/normal
6457Rendering urban_terror/eliminar_miembros
6458
6459
6460ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
6461 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
6462 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
6463 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
6464 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
6465 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
6466 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
6467 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
6468 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
6469 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6470 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
6471 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6472 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
6473 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
6474 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6475 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6476 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6477 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6478 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6479 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6480 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6481 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6482 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6483 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6484 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6485 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6486 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6487 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6488 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6489 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6490 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6491 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6492 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6493 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6494 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6495 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6496 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6497 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6498 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6499 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6500 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6501 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6502 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6503 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6504 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6505 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6506 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6507 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6508 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6509 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6510 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6511 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6512 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6513 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6514 /vendor/rails/railties/lib/commands/server.rb:39
6515 script/server:3:in `require'
6516 script/server:3
6517
6518Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6519
6520
6521Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:57:07) [GET]
6522 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6523bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6524NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6525 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6526 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6527 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6528 Participante Load (0.000532) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6529 UrbanTerrorPlayer Load (0.000273) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6530Rendering template within layouts/normal
6531Rendering urban_terror/eliminar_miembros
6532
6533
6534ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
6535 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
6536 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
6537 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
6538 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
6539 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
6540 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
6541 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
6542 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
6543 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6544 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
6545 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6546 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
6547 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
6548 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6549 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6550 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6551 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6552 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6553 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6554 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6555 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6556 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6557 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6558 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6559 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6560 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6561 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6562 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6563 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6564 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6565 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6566 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6567 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6568 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6569 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6570 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6571 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6572 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6573 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6574 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6575 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6576 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6577 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6578 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6579 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6580 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6581 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6582 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6583 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6584 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6585 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6586 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6587 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6588 /vendor/rails/railties/lib/commands/server.rb:39
6589 script/server:3:in `require'
6590 script/server:3
6591
6592Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6593
6594
6595Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:57:16) [GET]
6596 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6597NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6598c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6599 Parameters: {"action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6600 User Load (0.000404) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6601 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6602 Participante Load (0.000520) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6603 UrbanTerrorPlayer Load (0.000271) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6604Rendering template within layouts/normal
6605Rendering urban_terror/eliminar_miembros
6606
6607
6608ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
6609 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
6610 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
6611 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
6612 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
6613 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
6614 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
6615 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
6616 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
6617 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6618 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
6619 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6620 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
6621 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
6622 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6623 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6624 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6625 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6626 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6627 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6628 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6629 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6630 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6631 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6632 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6633 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6634 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6635 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6636 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6637 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6638 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6639 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6640 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6641 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6642 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6643 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6644 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6645 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6646 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6647 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6648 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6649 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6650 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6651 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6652 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6653 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6654 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6655 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6656 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6657 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6658 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6659 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6660 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6661 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6662 /vendor/rails/railties/lib/commands/server.rb:39
6663 script/server:3:in `require'
6664 script/server:3
6665
6666Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6667
6668
6669Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:57:18) [GET]
6670 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6671bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6672NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6673 Parameters: {"action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6674 User Load (0.000395) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6675 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6676 Participante Load (0.000551) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6677 UrbanTerrorPlayer Load (0.000251) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6678Rendering template within layouts/normal
6679Rendering urban_terror/eliminar_miembros
6680
6681
6682ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
6683 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
6684 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
6685 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
6686 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
6687 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
6688 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
6689 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
6690 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
6691 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6692 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
6693 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
6694 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
6695 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
6696 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6697 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6698 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6699 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6700 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6701 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6702 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6703 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6704 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6705 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6706 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6707 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6708 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6709 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6710 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6711 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6712 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6713 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6714 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6715 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6716 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6717 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6718 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6719 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6720 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6721 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6722 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6723 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6724 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6725 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6726 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6727 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6728 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6729 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6730 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6731 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6732 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6733 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6734 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6735 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6736 /vendor/rails/railties/lib/commands/server.rb:39
6737 script/server:3:in `require'
6738 script/server:3
6739
6740Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
6741
6742
6743Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:58:06) [GET]
6744 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6745NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6746c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6747 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
6748 UrbanTerrorTeam Load (0.000443) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
6749Rendering template within layouts/normal
6750Rendering urban_terror/equipo
6751 SQL (0.000474) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6752 UrbanTerrorPlayer Load (0.000787) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6753 Participante Load (0.000549) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
6754 Participante Load (0.000482) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
6755 Participante Load (0.000469) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
6756 Participante Load (0.000483) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
6757 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6758Completed in 0.05870 (17 reqs/sec) | Rendering: 0.04219 (71%) | DB: 0.00407 (6%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
6759
6760
6761Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:58:08) [GET]
6762 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6763bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6764NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6765 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"4", "controller"=>"urban_terror"}
6766 User Load (0.000426) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6767 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6768 Participante Load (0.000573) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6769 UrbanTerrorPlayer Load (0.000249) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6770Redirected to http://0.0.0.0:3000/urban_terror/equipos
6771Completed in 0.03022 (33 reqs/sec) | DB: 0.00125 (4%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/4?confirm=%C2%BFEst%C3%A1+seguro%3F]
6772
6773
6774Processing UrbanTerrorController#equipos (for 127.0.0.1 at 2009-09-08 16:58:08) [GET]
6775 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6776NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6777c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6778 Parameters: {"action"=>"equipos", "controller"=>"urban_terror"}
6779 User Load (0.000381) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6780
6781
6782ActionController::UnknownAction (No action responded to equipos):
6783 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
6784 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
6785 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6786 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
6787 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
6788 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
6789 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
6790 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
6791 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
6792 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
6793 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
6794 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
6795 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
6796 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
6797 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
6798 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
6799 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
6800 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
6801 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
6802 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
6803 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
6804 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
6805 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
6806 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
6807 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
6808 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
6809 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
6810 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
6811 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
6812 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
6813 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
6814 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
6815 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
6816 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
6817 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
6818 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
6819 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
6820 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6821 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
6822 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
6823 /vendor/rails/railties/lib/commands/server.rb:39
6824 script/server:3:in `require'
6825 script/server:3
6826
6827Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (not_found)
6828
6829
6830Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:58:23) [GET]
6831 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6832bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6833NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6834 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
6835 UrbanTerrorTeam Load (0.000465) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
6836Rendering template within layouts/normal
6837Rendering urban_terror/equipo
6838 SQL (0.000361) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6839 UrbanTerrorPlayer Load (0.000894) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6840 Participante Load (0.000547) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
6841 Participante Load (0.000597) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
6842 Participante Load (0.000577) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
6843 Participante Load (0.000581) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
6844 User Load (0.000456) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6845Completed in 0.15519 (6 reqs/sec) | Rendering: 0.13832 (89%) | DB: 0.00448 (2%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
6846
6847
6848Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:58:24) [GET]
6849 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6850NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6851c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6852 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"4", "controller"=>"urban_terror"}
6853 User Load (0.000382) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6854 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6855 Participante Load (0.000525) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6856 UrbanTerrorPlayer Load (0.000242) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6857Redirected to http://0.0.0.0:3000/urban_terror/lista_equipos
6858Completed in 0.02827 (35 reqs/sec) | DB: 0.00115 (4%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/4?confirm=%C2%BFEst%C3%A1+seguro%3F]
6859
6860
6861Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:58:24) [GET]
6862 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6863bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6864NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6865 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6866 UrbanTerrorTeam Load (0.001194) SELECT * FROM "urban_terror_teams" 
6867Rendering template within layouts/normal
6868Rendering urban_terror/lista_equipos
6869 User Load (0.000401) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6870Completed in 0.02473 (40 reqs/sec) | Rendering: 0.01596 (64%) | DB: 0.00160 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6871
6872
6873Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:58:54) [GET]
6874 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6875NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6876c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6877 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6878 UrbanTerrorTeam Load (0.001263) SELECT * FROM "urban_terror_teams" 
6879Rendering template within layouts/normal
6880Rendering urban_terror/lista_equipos
6881 User Load (0.000471) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6882Completed in 0.02702 (37 reqs/sec) | Rendering: 0.01733 (64%) | DB: 0.00173 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6883
6884
6885Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:58:55) [GET]
6886 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6887bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6888NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6889 Parameters: {"action"=>"equipo", "id"=>"5", "controller"=>"urban_terror"}
6890 UrbanTerrorTeam Load (0.000379) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '5') LIMIT 1
6891Rendering template within layouts/normal
6892Rendering urban_terror/equipo
6893 SQL (0.000299) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6894 UrbanTerrorPlayer Load (0.000191) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 5) 
6895 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6896Completed in 0.03262 (30 reqs/sec) | Rendering: 0.02193 (67%) | DB: 0.00125 (3%) | 200 OK [http://0.0.0.0/urban_terror/equipo/5]
6897
6898
6899Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:58:58) [GET]
6900 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6901NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6902c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6903 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
6904 UrbanTerrorTeam Load (0.000451) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
6905Rendering template within layouts/normal
6906Rendering urban_terror/equipo
6907 SQL (0.000313) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6908 UrbanTerrorPlayer Load (0.000694) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6909 Participante Load (0.000447) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
6910 Participante Load (0.000508) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
6911 Participante Load (0.000480) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
6912 Participante Load (0.000470) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
6913 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6914Completed in 0.05179 (19 reqs/sec) | Rendering: 0.03816 (73%) | DB: 0.00375 (7%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
6915
6916
6917Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:58:59) [GET]
6918 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6919bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6920NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6921 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
6922 User Load (0.000380) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6923 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6924 Participante Load (0.000526) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6925 UrbanTerrorPlayer Load (0.000270) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6926Redirected to http://0.0.0.0:3000/urban_terror/lista_equipos
6927Completed in 0.02809 (35 reqs/sec) | DB: 0.00118 (4%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/1?confirm=%C2%BFEst%C3%A1+seguro%3F]
6928
6929
6930Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:59:00) [GET]
6931 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6932NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6933c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6934 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6935 UrbanTerrorTeam Load (0.001303) SELECT * FROM "urban_terror_teams" 
6936Rendering template within layouts/normal
6937Rendering urban_terror/lista_equipos
6938 User Load (0.000397) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6939Completed in 0.02619 (38 reqs/sec) | Rendering: 0.01670 (63%) | DB: 0.00170 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6940
6941
6942Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 16:59:02) [GET]
6943 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6944bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6945NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6946 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
6947 UrbanTerrorTeam Load (0.000388) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
6948Rendering template within layouts/normal
6949Rendering urban_terror/equipo
6950 SQL (0.000301) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6951 UrbanTerrorPlayer Load (0.000731) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
6952 Participante Load (0.000440) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
6953 Participante Load (0.000481) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
6954 Participante Load (0.000469) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
6955 Participante Load (0.000484) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
6956 User Load (0.000393) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6957Completed in 0.05061 (19 reqs/sec) | Rendering: 0.03744 (73%) | DB: 0.00369 (7%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
6958
6959
6960Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 16:59:03) [GET]
6961 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6962NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6963c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6964 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
6965 User Load (0.000378) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6966 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6967 Participante Load (0.000551) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
6968 UrbanTerrorPlayer Load (0.000301) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
6969Redirected to http://0.0.0.0:3000/urban_terror/lista_equipos
6970Completed in 0.11639 (8 reqs/sec) | DB: 0.00123 (1%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/2?confirm=%C2%BFEst%C3%A1+seguro%3F]
6971
6972
6973Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 16:59:03) [GET]
6974 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6975bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6976NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
6977 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
6978 UrbanTerrorTeam Load (0.001230) SELECT * FROM "urban_terror_teams" 
6979Rendering template within layouts/normal
6980Rendering urban_terror/lista_equipos
6981 User Load (0.000408) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6982Completed in 0.02519 (39 reqs/sec) | Rendering: 0.01618 (64%) | DB: 0.00164 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
6983
6984
6985Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 16:59:59) [GET]
6986 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
6987NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
6988c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
6989 Parameters: {"action"=>"welcome", "controller"=>"index"}
6990Rendering template within layouts/normal
6991Rendering index/welcome
6992 User Load (0.000384) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
6993Completed in 0.01681 (59 reqs/sec) | Rendering: 0.01430 (85%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/]
6994
6995
6996Processing JuegosController#index (for 127.0.0.1 at 2009-09-08 17:00:01) [GET]
6997 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
6998bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
6999NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7000 Parameters: {"action"=>"index", "controller"=>"juegos"}
7001Rendering template within layouts/normal
7002Rendering juegos/index
7003 User Load (0.000410) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7004Completed in 0.01845 (54 reqs/sec) | Rendering: 0.01571 (85%) | DB: 0.00041 (2%) | 200 OK [http://0.0.0.0/juegos]
7005
7006
7007Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 17:00:03) [GET]
7008 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7009NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7010c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7011 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
7012Rendering template within layouts/normal
7013Rendering urban_terror/index
7014 User Load (0.000379) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7015Completed in 0.01735 (57 reqs/sec) | Rendering: 0.01477 (85%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/urban_terror]
7016
7017
7018Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 17:00:05) [GET]
7019 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7020bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7021NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7022 Parameters: {"action"=>"crear_equipo", "controller"=>"urban_terror"}
7023 User Load (0.000383) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7024Rendering template within layouts/normal
7025Rendering urban_terror/crear_equipo
7026 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7027Completed in 0.02031 (49 reqs/sec) | Rendering: 0.00506 (24%) | DB: 0.00038 (1%) | 200 OK [http://0.0.0.0/urban_terror/crear_equipo]
7028
7029
7030Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 17:00:08) [POST]
7031 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7032NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7033c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7034 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"waka"}, "controller"=>"urban_terror"}
7035 User Load (0.000407) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7036 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7037 Participante Load (0.000576) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7038 UrbanTerrorPlayer Load (0.000239) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7039 SQL (0.000330) SELECT count(*) AS count_all FROM "urban_terror_teams" 
7040 SQL (0.000243) SELECT "name" FROM "urban_terror_teams" WHERE ("urban_terror_teams".name = 'waka') 
7041 UrbanTerrorTeam Create (0.000411) INSERT INTO "urban_terror_teams" ("name", "created_at", "updated_at") VALUES('waka', '2009-09-08 17:00:08', '2009-09-08 17:00:08')
7042 UrbanTerrorPlayer Create (0.000412) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(6, 'leader', '2009-09-08 17:00:08', '2009-09-08 17:00:08', 39)
7043Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7044
7045
7046ActionController::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".):
7047 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7048 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7049 /app/controllers/urban_terror_controller.rb:37:in `crear_equipo'
7050 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7051 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7052 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7053 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7054 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7055 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7056 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7057 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7058 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7059 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7060 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7061 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7062 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7063 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7064 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7065 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7066 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7067 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7068 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7069 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7070 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7071 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7072 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7073 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7074 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7075 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7076 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7077 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7078 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7079 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7080 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7081 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7082 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7083 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7084 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7085 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7086 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7087 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7088 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7089 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7090 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7091 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7092 /vendor/rails/railties/lib/commands/server.rb:39
7093 script/server:3:in `require'
7094 script/server:3
7095
7096Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7097
7098
7099Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 17:01:25) [POST]
7100 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7101bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIhRXF1aXBvIGd1YXJkYWRvLiBQ
7102cmFjdGlxdWVuIQY6CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJj
7103NTk3ODZmODg1YTIzY2VlODA1MmU5--f0fa9ea1cf7a218da3d53cc86e0c0d8994d21eab
7104 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"waka"}, "controller"=>"urban_terror"}
7105 User Load (0.000477) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7106 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7107 Participante Load (0.000574) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7108 UrbanTerrorPlayer Load (0.000446) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7109 UrbanTerrorTeam Load (0.000343) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7110Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7111
7112
7113ActionController::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".):
7114 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7115 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7116 /app/controllers/urban_terror_controller.rb:38:in `crear_equipo'
7117 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7118 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7119 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7120 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7121 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7122 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7123 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7124 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7125 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7126 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7127 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7128 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7129 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7130 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7131 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7132 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7133 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7134 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7135 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7136 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7137 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7138 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7139 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7140 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7141 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7142 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7143 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7144 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7145 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7146 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7147 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7148 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7149 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7150 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7151 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7152 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7153 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7154 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7155 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7156 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7157 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7158 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7159 /vendor/rails/railties/lib/commands/server.rb:39
7160 script/server:3:in `require'
7161 script/server:3
7162
7163Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7164
7165
7166Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 17:01:29) [POST]
7167 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7168NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7169c2g6OkZsYXNoSGFzaHsHOgplcnJvciI+dXN0ZWQgeWEgcG9zZWUgdW4gZXF1
7170aXBvIHNpIGVsaW1pbmVsbyBzaSBkZXNlYSBjcmVhciBvdHJvOgtub3RpY2Ui
7171IUVxdWlwbyBndWFyZGFkby4gUHJhY3RpcXVlbiEGOgpAdXNlZHsHOwhGOwlU--906239126b61ba1382fa348648f592b491fded15
7172 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"waka"}, "controller"=>"urban_terror"}
7173 User Load (0.000508) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7174 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7175 Participante Load (0.000582) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7176 UrbanTerrorPlayer Load (0.000464) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7177 UrbanTerrorTeam Load (0.000433) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7178Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7179
7180
7181ActionController::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".):
7182 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7183 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7184 /app/controllers/urban_terror_controller.rb:38:in `crear_equipo'
7185 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7186 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7187 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7188 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7189 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7190 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7191 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7192 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7193 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7194 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7195 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7196 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7197 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7198 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7199 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7200 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7201 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7202 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7203 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7204 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7205 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7206 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7207 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7208 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7209 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7210 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7211 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7212 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7213 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7214 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7215 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7216 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7217 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7218 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7219 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7220 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7221 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7222 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7223 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7224 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7225 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7226 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7227 /vendor/rails/railties/lib/commands/server.rb:39
7228 script/server:3:in `require'
7229 script/server:3
7230
7231Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7232
7233
7234Processing UrbanTerrorController#crear_equipo (for 127.0.0.1 at 2009-09-08 17:02:09) [POST]
7235 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7236bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIj51c3RlZCB5YSBwb3NlZSB1biBl
7237cXVpcG8gc2kgZWxpbWluZWxvIHNpIGRlc2VhIGNyZWFyIG90cm8GOgpAdXNl
7238ZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgw
7239NTJlOQ==--e793a23b25d283b3e946648391db9bc0aed51e63
7240 Parameters: {"commit"=>"Agregar Equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"crear_equipo", "urban_terror_team"=>{"name"=>"waka"}, "controller"=>"urban_terror"}
7241 User Load (0.000417) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7242 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7243 Participante Load (0.000662) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7244 UrbanTerrorPlayer Load (0.000453) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7245 UrbanTerrorTeam Load (0.000403) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7246Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7247Completed in 0.04032 (24 reqs/sec) | DB: 0.00194 (4%) | 302 Found [http://0.0.0.0/urban_terror/crear_equipo]
7248
7249
7250Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:02:09) [GET]
7251 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7252NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7253c2g6OkZsYXNoSGFzaHsGOgplcnJvciI+dXN0ZWQgeWEgcG9zZWUgdW4gZXF1
7254aXBvIHNpIGVsaW1pbmVsbyBzaSBkZXNlYSBjcmVhciBvdHJvBjoKQHVzZWR7
7255BjsIRg==--03791ccef02aae93d6502dcc6fba464eeb7082cd
7256 Parameters: {"action"=>"equipo", "id"=>"6", "controller"=>"urban_terror"}
7257 UrbanTerrorTeam Load (0.000402) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7258Rendering template within layouts/normal
7259Rendering urban_terror/equipo
7260 SQL (0.000344) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7261 UrbanTerrorPlayer Load (0.000389) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7262 Participante Load (0.000433) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7263 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7264Completed in 0.04872 (20 reqs/sec) | Rendering: 0.03604 (73%) | DB: 0.00195 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/6]
7265
7266
7267Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 17:02:19) [GET]
7268 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7269bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIj51c3RlZCB5YSBwb3NlZSB1biBl
7270cXVpcG8gc2kgZWxpbWluZWxvIHNpIGRlc2VhIGNyZWFyIG90cm8GOgpAdXNl
7271ZHsGOwdUOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgw
7272NTJlOQ==--56108ae93d23bde38e9f592a92a270414656cc85
7273 Parameters: {"action"=>"agregar_miembros", "id"=>"6", "controller"=>"urban_terror"}
7274 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7275 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7276 UrbanTerrorTeam Load (0.000422) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7277Rendering template within layouts/normal
7278Rendering urban_terror/agregar_miembros
7279 SQL (0.000323) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7280 UrbanTerrorPlayer Load (0.000438) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7281 Participante Load (0.000490) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7282 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7283Completed in 0.13681 (7 reqs/sec) | Rendering: 0.11581 (84%) | DB: 0.00205 (1%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/6]
7284
7285
7286Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 17:02:22) [GET]
7287 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7288NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7289c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7290 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pi"}}
7291 User Load (0.000386) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7292 Participante Load (0.000882) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%pi%') ORDER BY nombre ASC LIMIT 10
7293Completed in 0.02325 (43 reqs/sec) | Rendering: 0.00234 (10%) | DB: 0.00127 (5%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=pi]
7294
7295
7296Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 17:02:24) [POST]
7297 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7298bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7299NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7300 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"6", "controller"=>"urban_terror", "participante"=>{"nombre"=>"pipo"}}
7301 User Load (0.000372) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7302 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7303 UrbanTerrorTeam Load (0.000406) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7304 Participante Load (0.000472) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'pipo') LIMIT 1
7305 UrbanTerrorPlayer Load (0.000761) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 17) LIMIT 1
7306Rendering template within layouts/normal
7307Rendering urban_terror/agregar_miembros
7308 SQL (0.000295) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7309 UrbanTerrorPlayer Load (0.000361) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7310 Participante Load (0.000480) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7311 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7312Completed in 0.05922 (16 reqs/sec) | Rendering: 0.01270 (21%) | DB: 0.00315 (5%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/6]
7313
7314
7315Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 17:02:26) [GET]
7316 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7317NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7318c2g6OkZsYXNoSGFzaHsGOgplcnJvciI4RWwganVnYWRvciBhZ3JlZ2FkbyBu
7319byBleGlzdGUgbyB5YSBoYSBzaWRvIGFncmVnYWRvBjoKQHVzZWR7BjsIRg==--9958eed31d446665d9dab77fbf343151fef16722
7320 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"s"}}
7321 User Load (0.000394) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7322 Participante Load (0.001798) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%s%') ORDER BY nombre ASC LIMIT 10
7323Completed in 0.02520 (39 reqs/sec) | Rendering: 0.00255 (10%) | DB: 0.00219 (8%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=s]
7324
7325
7326Processing UrbanTerrorController#auto_complete_for_participante_nombre (for 127.0.0.1 at 2009-09-08 17:02:27) [GET]
7327 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7328bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjhFbCBqdWdhZG9yIGFncmVnYWRv
7329IG5vIGV4aXN0ZSBvIHlhIGhhIHNpZG8gYWdyZWdhZG8GOgpAdXNlZHsGOwdU
7330Ogxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--c326ddc0a0cbe6d117e6a339c6620c72751e3d9b
7331 Parameters: {"action"=>"auto_complete_for_participante_nombre", "controller"=>"urban_terror", "participante"=>{"nombre"=>"a"}}
7332 User Load (0.000466) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7333 Participante Load (0.002563) SELECT * FROM "participantes" WHERE (LOWER(nombre) LIKE '%a%') ORDER BY nombre ASC LIMIT 10
7334Completed in 0.03248 (30 reqs/sec) | Rendering: 0.00333 (10%) | DB: 0.00303 (9%) | 200 OK [http://0.0.0.0/urban_terror/auto_complete_for_participante_nombre?participante%5Bnombre%5D=a]
7335
7336
7337Processing UrbanTerrorController#agregar_miembros (for 127.0.0.1 at 2009-09-08 17:02:30) [POST]
7338 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7339NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7340c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7341 Parameters: {"commit"=>"Agregar al equipo", "authenticity_token"=>"622409680f9217851f99fffdeb5fbbeeb1582060", "action"=>"agregar_miembros", "id"=>"6", "controller"=>"urban_terror", "participante"=>{"nombre"=>"asdfg"}}
7342 User Load (0.000398) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7343 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7344 UrbanTerrorTeam Load (0.000407) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7345 Participante Load (0.000514) SELECT * FROM "participantes" WHERE ("participantes"."nombre" = 'asdfg') LIMIT 1
7346 UrbanTerrorPlayer Load (0.000290) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 21) LIMIT 1
7347 SQL (0.000341) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7348 Participante Load (0.000504) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7349 UrbanTerrorPlayer Load (0.000387) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7350 UrbanTerrorPlayer Create (0.000375) INSERT INTO "urban_terror_players" ("urban_terror_team_id", "tipo", "created_at", "updated_at", "participante_id") VALUES(6, 'player', '2009-09-08 17:02:30', '2009-09-08 17:02:30', 21)
7351Rendering template within layouts/normal
7352Rendering urban_terror/agregar_miembros
7353 SQL (0.000916) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7354 UrbanTerrorPlayer Load (0.001261) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7355 Participante Load (0.001210) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7356 Participante Load (0.001332) SELECT * FROM "participantes" WHERE ("participantes"."id" = 21) 
7357 User Load (0.001011) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7358Completed in 0.68172 (1 reqs/sec) | Rendering: 0.02905 (4%) | DB: 0.00895 (1%) | 200 OK [http://0.0.0.0/urban_terror/agregar_miembros/6]
7359
7360
7361Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 17:02:46) [GET]
7362 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7363bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIVSnVnYWRvciBhZ3JlZ2FkbwY6
7364CkB1c2VkewY7B0Y6DGNzcmZfaWQiJTE0MzJhYjM1MjJjNTk3ODZmODg1YTIz
7365Y2VlODA1MmU5--9081668c6bc39e51436eb2769359d4dde465f9eb
7366 Parameters: {"action"=>"welcome", "controller"=>"index"}
7367Rendering template within layouts/normal
7368Rendering index/welcome
7369 User Load (0.000376) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7370Completed in 0.01678 (59 reqs/sec) | Rendering: 0.01427 (85%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/]
7371
7372
7373Processing JuegosController#index (for 127.0.0.1 at 2009-09-08 17:02:47) [GET]
7374 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7375NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7376c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFUp1Z2Fkb3IgYWdyZWdhZG8GOgpA
7377dXNlZHsGOwhU--9a29dc46ce8ff048b486b12b0844428d44a6cd8d
7378 Parameters: {"action"=>"index", "controller"=>"juegos"}
7379Rendering template within layouts/normal
7380Rendering juegos/index
7381 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7382Completed in 0.01711 (58 reqs/sec) | Rendering: 0.01454 (84%) | DB: 0.00041 (2%) | 200 OK [http://0.0.0.0/juegos]
7383
7384
7385Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 17:02:49) [GET]
7386 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7387bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7388NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7389 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
7390Rendering template within layouts/normal
7391Rendering urban_terror/index
7392 User Load (0.000420) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7393Completed in 0.01777 (56 reqs/sec) | Rendering: 0.01505 (84%) | DB: 0.00042 (2%) | 200 OK [http://0.0.0.0/urban_terror]
7394
7395
7396Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 17:02:50) [GET]
7397 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7398NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7399c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7400 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
7401 UrbanTerrorTeam Load (0.001246) SELECT * FROM "urban_terror_teams" 
7402Rendering template within layouts/normal
7403Rendering urban_terror/lista_equipos
7404 User Load (0.000377) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7405Completed in 0.02528 (39 reqs/sec) | Rendering: 0.01631 (64%) | DB: 0.00162 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
7406
7407
7408Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:02:52) [GET]
7409 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7410bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7411NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7412 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7413 UrbanTerrorTeam Load (0.000376) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7414Rendering template within layouts/normal
7415Rendering urban_terror/equipo
7416 SQL (0.000300) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7417 UrbanTerrorPlayer Load (0.000708) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7418 Participante Load (0.000464) SELECT * FROM "participantes" WHERE ("participantes"."id" = 32) 
7419 Participante Load (0.000542) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
7420 Participante Load (0.000492) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
7421 Participante Load (0.000496) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
7422 User Load (0.000396) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7423Completed in 0.14733 (6 reqs/sec) | Rendering: 0.12549 (85%) | DB: 0.00377 (2%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
7424
7425
7426Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:02:53) [GET]
7427 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7428NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7429c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7430 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
7431 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7432 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7433 Participante Load (0.000530) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7434 UrbanTerrorPlayer Load (0.000432) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7435 UrbanTerrorPlayer Load (0.000441) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '1') LIMIT 1
7436 UrbanTerrorPlayer Delete all (0.002491) DELETE FROM "urban_terror_players" WHERE ("id" IN (1)) 
7437 UrbanTerrorTeam Load (0.000378) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7438Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7439
7440
7441ActionController::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".):
7442 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7443 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7444 /app/controllers/urban_terror_controller.rb:90:in `eliminar_miembros'
7445 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7446 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7447 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7448 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7449 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7450 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7451 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7452 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7453 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7454 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7455 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7456 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7457 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7458 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7459 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7460 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7461 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7462 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7463 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7464 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7465 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7466 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7467 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7468 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7469 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7470 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7471 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7472 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7473 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7474 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7475 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7476 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7477 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7478 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7479 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7480 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7481 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7482 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7483 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7484 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7485 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7486 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7487 /vendor/rails/railties/lib/commands/server.rb:39
7488 script/server:3:in `require'
7489 script/server:3
7490
7491Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7492
7493
7494Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:03:29) [GET]
7495 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7496bGFzaDo6Rmxhc2hIYXNoewc6CmVycm9yIjx1c3RlZCBubyBwdWVkZSBlZGl0
7497YXIgZXN0ZSBlcXVpcG8gc29sbyBlbCBjcmVhZG9yIHB1ZWRlOgtub3RpY2Ui
7498Fkp1Z2Fkb3IgRWxpbWluYWRvBjoKQHVzZWR7BzsHRjsIRjoMY3NyZl9pZCIl
7499MTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNjZWU4MDUyZTk=--3e281b68cfa20bef6eaed8d767ccf64af8fcc37c
7500 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
7501 User Load (0.000403) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7502 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7503 Participante Load (0.000600) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7504 UrbanTerrorPlayer Load (0.000456) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7505 UrbanTerrorPlayer Load (0.000301) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '1') LIMIT 1
7506 UrbanTerrorPlayer Delete all (0.000415) DELETE FROM "urban_terror_players" WHERE ("id" IN (NULL)) 
7507 UrbanTerrorTeam Load (0.000357) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7508Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7509
7510
7511ActionController::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".):
7512 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7513 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7514 /app/controllers/urban_terror_controller.rb:88:in `eliminar_miembros'
7515 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7516 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7517 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7518 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7519 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7520 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7521 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7522 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7523 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7524 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7525 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7526 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7527 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7528 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7529 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7530 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7531 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7532 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7533 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7534 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7535 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7536 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7537 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7538 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7539 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7540 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7541 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7542 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7543 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7544 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7545 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7546 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7547 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7548 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7549 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7550 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7551 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7552 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7553 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7554 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7555 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7556 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7557 /vendor/rails/railties/lib/commands/server.rb:39
7558 script/server:3:in `require'
7559 script/server:3
7560
7561Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7562
7563
7564Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:03:30) [GET]
7565 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7566NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7567c2g6OkZsYXNoSGFzaHsHOgplcnJvciI8dXN0ZWQgbm8gcHVlZGUgZWRpdGFy
7568IGVzdGUgZXF1aXBvIHNvbG8gZWwgY3JlYWRvciBwdWVkZToLbm90aWNlIhZK
7569dWdhZG9yIEVsaW1pbmFkbwY6CkB1c2Vkewc7CFQ7CUY=--f616b9d2edf7dfb3643720a9c010748cb4bab846
7570 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
7571 User Load (0.000383) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7572 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7573 Participante Load (0.000531) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7574 UrbanTerrorPlayer Load (0.000437) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7575 UrbanTerrorPlayer Load (0.000263) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '1') LIMIT 1
7576 UrbanTerrorPlayer Delete all (0.000303) DELETE FROM "urban_terror_players" WHERE ("id" IN (NULL)) 
7577 UrbanTerrorTeam Load (0.000332) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7578Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7579
7580
7581ActionController::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".):
7582 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7583 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7584 /app/controllers/urban_terror_controller.rb:88:in `eliminar_miembros'
7585 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7586 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7587 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7588 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7589 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7590 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7591 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7592 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7593 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7594 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7595 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7596 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7597 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7598 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7599 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7600 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7601 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7602 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7603 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7604 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7605 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7606 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7607 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7608 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7609 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7610 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7611 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7612 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7613 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7614 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7615 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7616 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7617 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7618 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7619 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7620 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7621 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7622 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7623 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7624 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7625 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7626 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7627 /vendor/rails/railties/lib/commands/server.rb:39
7628 script/server:3:in `require'
7629 script/server:3
7630
7631Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7632
7633
7634Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:03:33) [GET]
7635 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7636bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
7637OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
7638M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
7639 Parameters: {"action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
7640 User Load (0.000439) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7641 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7642 Participante Load (0.000547) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7643 UrbanTerrorPlayer Load (0.000440) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7644 UrbanTerrorPlayer Load (0.000298) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '1') LIMIT 1
7645 UrbanTerrorPlayer Delete all (0.000332) DELETE FROM "urban_terror_players" WHERE ("id" IN (NULL)) 
7646 UrbanTerrorTeam Load (0.000364) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7647Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7648
7649
7650ActionController::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".):
7651 /vendor/rails/actionpack/lib/action_controller/base.rb:1052:in `redirect_to'
7652 /vendor/rails/actionpack/lib/action_controller/base.rb:1065:in `redirect_to'
7653 /app/controllers/urban_terror_controller.rb:88:in `eliminar_miembros'
7654 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `send'
7655 /vendor/rails/actionpack/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
7656 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7657 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7658 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7659 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7660 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7661 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7662 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7663 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7664 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7665 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7666 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7667 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7668 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7669 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7670 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7671 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7672 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7673 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7674 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7675 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7676 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7677 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7678 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7679 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7680 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7681 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7682 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7683 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7684 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7685 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7686 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7687 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7688 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7689 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7690 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7691 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7692 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7693 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7694 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7695 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7696 /vendor/rails/railties/lib/commands/server.rb:39
7697 script/server:3:in `require'
7698 script/server:3
7699
7700Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7701
7702
7703Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:04:16) [GET]
7704 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7705NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7706c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
7707QHVzZWR7BjsIRg==--79fadeb5e7502e3b95dc391fe1d7a26770e4576a
7708 Parameters: {"action"=>"eliminar_miembros", "id"=>"1", "controller"=>"urban_terror"}
7709 User Load (0.000972) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7710 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7711 Participante Load (0.001332) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7712 UrbanTerrorPlayer Load (0.001124) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7713 UrbanTerrorPlayer Load (0.000715) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '1') LIMIT 1
7714 UrbanTerrorPlayer Delete all (0.000892) DELETE FROM "urban_terror_players" WHERE ("id" IN (NULL)) 
7715 UrbanTerrorTeam Load (0.000331) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7716Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7717Completed in 0.09979 (10 reqs/sec) | DB: 0.00537 (5%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/1]
7718
7719
7720Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:16) [GET]
7721 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7722bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
7723OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
7724M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
7725 Parameters: {"action"=>"equipo", "id"=>"6", "controller"=>"urban_terror"}
7726 UrbanTerrorTeam Load (0.000394) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7727Rendering template within layouts/normal
7728Rendering urban_terror/equipo
7729 SQL (0.000314) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7730 UrbanTerrorPlayer Load (0.000519) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7731 Participante Load (0.000449) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7732 Participante Load (0.000503) SELECT * FROM "participantes" WHERE ("participantes"."id" = 21) 
7733 User Load (0.000386) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7734Completed in 0.04899 (20 reqs/sec) | Rendering: 0.03658 (74%) | DB: 0.00256 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/6]
7735
7736
7737Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:04:22) [GET]
7738 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7739NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7740c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
7741QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
7742 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"16", "controller"=>"urban_terror"}
7743 User Load (0.000617) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7744 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7745 Participante Load (0.000534) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7746 UrbanTerrorPlayer Load (0.000425) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7747 UrbanTerrorPlayer Load (0.000437) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '16') LIMIT 1
7748 UrbanTerrorPlayer Delete all (0.002463) DELETE FROM "urban_terror_players" WHERE ("id" IN (16)) 
7749 UrbanTerrorTeam Load (0.000354) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7750Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7751Completed in 0.05917 (16 reqs/sec) | DB: 0.00483 (8%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/16?confirm=%C2%BFEst%C3%A1+seguro%3F]
7752
7753
7754Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:22) [GET]
7755 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7756bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
7757OgpAdXNlZHsGOwdGOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
7758M2NlZTgwNTJlOQ==--11437b2a69c6507f774c539b3100b009a9acdcf2
7759 Parameters: {"action"=>"equipo", "id"=>"6", "controller"=>"urban_terror"}
7760 UrbanTerrorTeam Load (0.000392) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7761Rendering template within layouts/normal
7762Rendering urban_terror/equipo
7763 SQL (0.000311) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7764 UrbanTerrorPlayer Load (0.000389) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7765 Participante Load (0.000449) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7766 User Load (0.000380) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7767Completed in 0.04693 (21 reqs/sec) | Rendering: 0.03519 (74%) | DB: 0.00192 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/6]
7768
7769
7770Processing IndexController#welcome (for 127.0.0.1 at 2009-09-08 17:04:26) [GET]
7771 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7772NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7773c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
7774QHVzZWR7BjsIVA==--d99344910462104196452dc1cfcae11a94b73c42
7775 Parameters: {"action"=>"welcome", "controller"=>"index"}
7776Rendering template within layouts/normal
7777Rendering index/welcome
7778 User Load (0.000383) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7779Completed in 0.01683 (59 reqs/sec) | Rendering: 0.01434 (85%) | DB: 0.00038 (2%) | 200 OK [http://0.0.0.0/]
7780
7781
7782Processing JuegosController#index (for 127.0.0.1 at 2009-09-08 17:04:28) [GET]
7783 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7784bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7785NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7786 Parameters: {"action"=>"index", "controller"=>"juegos"}
7787Rendering template within layouts/normal
7788Rendering juegos/index
7789 User Load (0.000435) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7790Completed in 0.01850 (54 reqs/sec) | Rendering: 0.01575 (85%) | DB: 0.00044 (2%) | 200 OK [http://0.0.0.0/juegos]
7791
7792
7793Processing UrbanTerrorController#index (for 127.0.0.1 at 2009-09-08 17:04:29) [GET]
7794 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7795NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7796c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7797 Parameters: {"action"=>"index", "controller"=>"urban_terror"}
7798Rendering template within layouts/normal
7799Rendering urban_terror/index
7800 User Load (0.000388) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7801Completed in 0.01754 (57 reqs/sec) | Rendering: 0.01492 (85%) | DB: 0.00039 (2%) | 200 OK [http://0.0.0.0/urban_terror]
7802
7803
7804Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 17:04:31) [GET]
7805 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7806bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7807NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7808 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
7809 UrbanTerrorTeam Load (0.003630) SELECT * FROM "urban_terror_teams" 
7810Rendering template within layouts/normal
7811Rendering urban_terror/lista_equipos
7812 User Load (0.000394) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7813Completed in 0.04069 (24 reqs/sec) | Rendering: 0.01728 (42%) | DB: 0.00402 (9%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]
7814
7815
7816Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:33) [GET]
7817 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7818NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7819c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7820 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7821 UrbanTerrorTeam Load (0.000458) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7822Rendering template within layouts/normal
7823Rendering urban_terror/equipo
7824 SQL (0.000314) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7825 UrbanTerrorPlayer Load (0.000591) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7826 Participante Load (0.000509) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
7827 Participante Load (0.000495) SELECT * FROM "participantes" WHERE ("participantes"."id" = 15) 
7828 Participante Load (0.000462) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
7829 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7830Completed in 0.05052 (19 reqs/sec) | Rendering: 0.03736 (73%) | DB: 0.00321 (6%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
7831
7832
7833Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:04:34) [GET]
7834 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7835bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7836NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7837 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"3", "controller"=>"urban_terror"}
7838 User Load (0.000474) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7839 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7840 Participante Load (0.000527) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7841 UrbanTerrorPlayer Load (0.000476) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7842 UrbanTerrorPlayer Load (0.000461) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '3') LIMIT 1
7843 UrbanTerrorPlayer Delete all (0.002163) DELETE FROM "urban_terror_players" WHERE ("id" IN (3)) 
7844 UrbanTerrorTeam Load (0.000417) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7845Redirected to http://0.0.0.0:3000/urban_terror/equipo/6
7846Completed in 0.04170 (23 reqs/sec) | DB: 0.00452 (10%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/3?confirm=%C2%BFEst%C3%A1+seguro%3F]
7847
7848
7849Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:34) [GET]
7850 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7851NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7852c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiFkp1Z2Fkb3IgRWxpbWluYWRvBjoK
7853QHVzZWR7BjsIRg==--79fadeb5e7502e3b95dc391fe1d7a26770e4576a
7854 Parameters: {"action"=>"equipo", "id"=>"6", "controller"=>"urban_terror"}
7855 UrbanTerrorTeam Load (0.000407) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '6') LIMIT 1
7856Rendering template within layouts/normal
7857Rendering urban_terror/equipo
7858 SQL (0.000334) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7859 UrbanTerrorPlayer Load (0.000387) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 6) 
7860 Participante Load (0.000490) SELECT * FROM "participantes" WHERE ("participantes"."id" = 39) 
7861 User Load (0.000409) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7862Completed in 0.04854 (20 reqs/sec) | Rendering: 0.03634 (74%) | DB: 0.00203 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/6]
7863
7864
7865Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:42) [GET]
7866 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7867bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSIWSnVnYWRvciBFbGltaW5hZG8G
7868OgpAdXNlZHsGOwdUOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4NWEy
7869M2NlZTgwNTJlOQ==--b640fa6ebc4ce9532884a12788af962ceb063353
7870 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7871 UrbanTerrorTeam Load (0.000381) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7872Rendering template within layouts/normal
7873Rendering urban_terror/equipo
7874 SQL (0.000304) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7875 UrbanTerrorPlayer Load (0.000493) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7876 Participante Load (0.000496) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
7877 Participante Load (0.000501) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
7878 User Load (0.000385) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7879Completed in 0.06005 (16 reqs/sec) | Rendering: 0.04387 (73%) | DB: 0.00256 (4%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
7880
7881
7882Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:43) [GET]
7883 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7884NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7885c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7886 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7887 UrbanTerrorTeam Load (0.000414) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7888Rendering template within layouts/normal
7889Rendering urban_terror/equipo
7890 SQL (0.000345) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7891 UrbanTerrorPlayer Load (0.000487) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7892 Participante Load (0.000441) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
7893 Participante Load (0.000735) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
7894 User Load (0.000403) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7895Completed in 0.04931 (20 reqs/sec) | Rendering: 0.03645 (73%) | DB: 0.00282 (5%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
7896
7897
7898Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:04:44) [GET]
7899 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7900bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiUxNDMyYWIz
7901NTIyYzU5Nzg2Zjg4NWEyM2NlZTgwNTJlOQ==--26e79896dde92e9b1ee613caac97e29134d2020a
7902 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7903 UrbanTerrorTeam Load (0.000377) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7904Rendering template within layouts/normal
7905Rendering urban_terror/equipo
7906 SQL (0.000303) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7907 UrbanTerrorPlayer Load (0.000481) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
7908 Participante Load (0.000464) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
7909 Participante Load (0.000523) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
7910 User Load (0.000405) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7911Completed in 0.13638 (7 reqs/sec) | Rendering: 0.12442 (91%) | DB: 0.00255 (1%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
7912
7913
7914Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:06:43) [GET]
7915 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
7916NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
7917c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--548e1d7a07ce42485cde70e266d3ade5f54a7df0
7918 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
7919 User Load (0.000428) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7920 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
7921 Participante Load (0.000529) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
7922 UrbanTerrorPlayer Load (0.000424) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
7923 UrbanTerrorPlayer Load (0.000445) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '2') LIMIT 1
7924 UrbanTerrorTeam Load (0.000340) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
7925 UrbanTerrorTeam Load (0.000380) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 1) 
7926Rendering template within layouts/normal
7927Rendering urban_terror/eliminar_miembros
7928
7929
7930ActionView::MissingTemplate (Missing template urban_terror/eliminar_miembros.html.erb in view path /media/disk/home/fitoria/code/sfd-reg/app/views):
7931 /vendor/rails/actionpack/lib/action_view/template.rb:85:in `raise_missing_template_exception'
7932 /vendor/rails/actionpack/lib/action_view/template.rb:78:in `set_extension_and_file_name'
7933 /vendor/rails/actionpack/lib/action_view/template.rb:15:in `initialize'
7934 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `new'
7935 /vendor/rails/actionpack/lib/action_view/base.rb:245:in `render_file'
7936 /vendor/rails/actionpack/lib/action_controller/base.rb:1108:in `render_for_file'
7937 /vendor/rails/actionpack/lib/action_controller/base.rb:841:in `render_with_no_layout'
7938 /vendor/rails/actionpack/lib/action_controller/layout.rb:251:in `render_without_benchmark'
7939 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
7940 /vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
7941 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
7942 /vendor/rails/actionpack/lib/action_controller/base.rb:1157:in `default_render'
7943 /vendor/rails/actionpack/lib/action_controller/base.rb:1163:in `perform_action_without_filters'
7944 /vendor/rails/actionpack/lib/action_controller/filters.rb:580:in `call_filters'
7945 /vendor/rails/actionpack/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
7946 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7947 /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
7948 /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
7949 /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
7950 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
7951 /vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
7952 /vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
7953 /vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
7954 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `send'
7955 /vendor/rails/actionpack/lib/action_controller/base.rb:529:in `process_without_filters'
7956 /vendor/rails/actionpack/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
7957 /vendor/rails/actionpack/lib/action_controller/session_management.rb:130:in `process'
7958 /vendor/rails/actionpack/lib/action_controller/base.rb:389:in `process'
7959 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:149:in `handle_request'
7960 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:107:in `dispatch'
7961 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `synchronize'
7962 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:104:in `dispatch'
7963 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
7964 /vendor/rails/actionpack/lib/action_controller/dispatcher.rb:35:in `dispatch'
7965 /vendor/rails/railties/lib/webrick_server.rb:112:in `handle_dispatch'
7966 /vendor/rails/railties/lib/webrick_server.rb:78:in `service'
7967 /usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
7968 /usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
7969 /usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
7970 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
7971 /usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
7972 /usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
7973 /usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
7974 /usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
7975 /usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
7976 /usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
7977 /vendor/rails/railties/lib/webrick_server.rb:62:in `dispatch'
7978 /vendor/rails/railties/lib/commands/servers/webrick.rb:66
7979 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
7980 /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
7981 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7982 /vendor/rails/activesupport/lib/active_support/dependencies.rb:354:in `new_constants_in'
7983 /vendor/rails/activesupport/lib/active_support/dependencies.rb:509:in `require'
7984 /vendor/rails/railties/lib/commands/server.rb:39
7985 script/server:3:in `require'
7986 script/server:3
7987
7988Rendering /media/disk/home/fitoria/code/sfd-reg/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
7989
7990
7991Processing UrbanTerrorController#equipo (for 127.0.0.1 at 2009-09-08 17:07:06) [GET]
7992 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
7993bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjlFbCBqdWdhZG9yIHF1ZSBxdWll
7994cmUgZWxpbWluYXIgbm8gZXN0w6EgZW4gc3UgZXF1aXBvBjoKQHVzZWR7BjsH
7995RjoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNjZWU4MDUyZTk=--6f7f914ce42f6a546056ab5187aeab84071ddc99
7996 Parameters: {"action"=>"equipo", "id"=>"1", "controller"=>"urban_terror"}
7997 UrbanTerrorTeam Load (0.000403) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = '1') LIMIT 1
7998Rendering template within layouts/normal
7999Rendering urban_terror/equipo
8000 SQL (0.000332) SELECT count(*) AS count_all FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
8001 UrbanTerrorPlayer Load (0.000530) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".urban_terror_team_id = 1) 
8002 Participante Load (0.000477) SELECT * FROM "participantes" WHERE ("participantes"."id" = 31) 
8003 Participante Load (0.000543) SELECT * FROM "participantes" WHERE ("participantes"."id" = 10) 
8004 User Load (0.000627) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
8005Completed in 0.14138 (7 reqs/sec) | Rendering: 0.12905 (91%) | DB: 0.00291 (2%) | 200 OK [http://0.0.0.0/urban_terror/equipo/1]
8006
8007
8008Processing UrbanTerrorController#eliminar_miembros (for 127.0.0.1 at 2009-09-08 17:07:09) [GET]
8009 Session ID: BAh7CDoMdXNlcl9pZGkrOgxjc3JmX2lkIiUxNDMyYWIzNTIyYzU5Nzg2Zjg4
8010NWEyM2NlZTgwNTJlOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
8011c2g6OkZsYXNoSGFzaHsGOgplcnJvciI5RWwganVnYWRvciBxdWUgcXVpZXJl
8012IGVsaW1pbmFyIG5vIGVzdMOhIGVuIHN1IGVxdWlwbwY6CkB1c2VkewY7CFQ=--89232069f4b525411a37cb3767291bb51700ec89
8013 Parameters: {"confirm"=>"¿Está seguro?", "action"=>"eliminar_miembros", "id"=>"2", "controller"=>"urban_terror"}
8014 User Load (0.000426) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
8015 CACHE (0.000000) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
8016 Participante Load (0.000595) SELECT * FROM "participantes" WHERE ("participantes".user_id = 38) LIMIT 1
8017 UrbanTerrorPlayer Load (0.000425) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players".participante_id = 39) LIMIT 1
8018 UrbanTerrorPlayer Load (0.000440) SELECT * FROM "urban_terror_players" WHERE ("urban_terror_players"."id" = '2') LIMIT 1
8019 UrbanTerrorTeam Load (0.000338) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 6) 
8020 UrbanTerrorTeam Load (0.000322) SELECT * FROM "urban_terror_teams" WHERE ("urban_terror_teams"."id" = 1) 
8021Redirected to http://0.0.0.0:3000/urban_terror/lista_equipos
8022Completed in 0.03966 (25 reqs/sec) | DB: 0.00255 (6%) | 302 Found [http://0.0.0.0/urban_terror/eliminar_miembros/2?confirm=%C2%BFEst%C3%A1+seguro%3F]
8023
8024
8025Processing UrbanTerrorController#lista_equipos (for 127.0.0.1 at 2009-09-08 17:07:09) [GET]
8026 Session ID: BAh7CDoMdXNlcl9pZGkrIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
8027bGFzaDo6Rmxhc2hIYXNoewY6CmVycm9yIjlFbCBqdWdhZG9yIHF1ZSBxdWll
8028cmUgZWxpbWluYXIgbm8gZXN0w6EgZW4gc3UgZXF1aXBvBjoKQHVzZWR7BjsH
8029RjoMY3NyZl9pZCIlMTQzMmFiMzUyMmM1OTc4NmY4ODVhMjNjZWU4MDUyZTk=--6f7f914ce42f6a546056ab5187aeab84071ddc99
8030 Parameters: {"action"=>"lista_equipos", "controller"=>"urban_terror"}
8031 UrbanTerrorTeam Load (0.001340) SELECT * FROM "urban_terror_teams" 
8032Rendering template within layouts/normal
8033Rendering urban_terror/lista_equipos
8034 User Load (0.000412) SELECT * FROM "users" WHERE ("users"."id" = 38) LIMIT 1
8035Completed in 0.02673 (37 reqs/sec) | Rendering: 0.01721 (64%) | DB: 0.00175 (6%) | 200 OK [http://0.0.0.0/urban_terror/lista_equipos]