locale_rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/ChangeLog +7 -0
  2. data/NEWS +7 -0
  3. data/README +33 -0
  4. data/Rakefile +72 -0
  5. data/doc/classes/ActionController/Base.html +442 -0
  6. data/doc/classes/ActionController/Caching.html +348 -0
  7. data/doc/classes/ActionController/Caching/Fragments.html +424 -0
  8. data/doc/classes/ActionView/Base.html +422 -0
  9. data/doc/classes/I18n.html +492 -0
  10. data/doc/classes/Locale.html +364 -0
  11. data/doc/created.rid +1 -0
  12. data/doc/files/ChangeLog.html +355 -0
  13. data/doc/files/README.html +409 -0
  14. data/doc/files/lib/locale_rails/action_controller_rb.html +349 -0
  15. data/doc/files/lib/locale_rails/action_view_rb.html +349 -0
  16. data/doc/files/lib/locale_rails/i18n_rb.html +342 -0
  17. data/doc/files/lib/locale_rails/version_rb.html +342 -0
  18. data/doc/files/lib/locale_rails_rb.html +349 -0
  19. data/doc/fr_class_index.html +7 -0
  20. data/doc/fr_file_index.html +8 -0
  21. data/doc/fr_method_index.html +11 -0
  22. data/doc/index.html +1 -0
  23. data/doc/rdoc-style.css +320 -0
  24. data/lib/locale_rails.rb +18 -0
  25. data/lib/locale_rails/action_controller.rb +141 -0
  26. data/lib/locale_rails/action_view.rb +43 -0
  27. data/lib/locale_rails/i18n.rb +56 -0
  28. data/lib/locale_rails/version.rb +4 -0
  29. data/locale_rails-0.1.0.gem +0 -0
  30. data/sample/README +22 -0
  31. data/sample/Rakefile +10 -0
  32. data/sample/app/controllers/application.rb +41 -0
  33. data/sample/app/controllers/samples_controller.rb +30 -0
  34. data/sample/app/helpers/application_helper.rb +3 -0
  35. data/sample/app/views/layouts/samples.html.erb +20 -0
  36. data/sample/app/views/samples/#cookie.rb# +3 -0
  37. data/sample/app/views/samples/_part.html.erb +68 -0
  38. data/sample/app/views/samples/_part_nl.html.erb +2 -0
  39. data/sample/app/views/samples/cached_action.html.erb +6 -0
  40. data/sample/app/views/samples/index.html.erb +24 -0
  41. data/sample/app/views/samples/index_uz_UZ.html.erb +15 -0
  42. data/sample/config/boot.rb +109 -0
  43. data/sample/config/database.yml +22 -0
  44. data/sample/config/environment.rb +25 -0
  45. data/sample/config/environments/development.rb +17 -0
  46. data/sample/config/environments/production.rb +24 -0
  47. data/sample/config/environments/test.rb +22 -0
  48. data/sample/config/initializers/inflections.rb +10 -0
  49. data/sample/config/initializers/mime_types.rb +5 -0
  50. data/sample/config/initializers/new_rails_defaults.rb +17 -0
  51. data/sample/config/routes.rb +13 -0
  52. data/sample/db/development.sqlite3 +0 -0
  53. data/sample/db/production.sqlite3 +0 -0
  54. data/sample/doc/README_FOR_APP +2 -0
  55. data/sample/log/development.log +2573 -0
  56. data/sample/log/production.log +80 -0
  57. data/sample/public/404.html +30 -0
  58. data/sample/public/422.html +30 -0
  59. data/sample/public/500.html +33 -0
  60. data/sample/public/dispatch.cgi +10 -0
  61. data/sample/public/dispatch.fcgi +24 -0
  62. data/sample/public/dispatch.rb +10 -0
  63. data/sample/public/favicon.ico +0 -0
  64. data/sample/public/images/rails.png +0 -0
  65. data/sample/public/javascripts/application.js +2 -0
  66. data/sample/public/javascripts/controls.js +963 -0
  67. data/sample/public/javascripts/dragdrop.js +972 -0
  68. data/sample/public/javascripts/effects.js +1120 -0
  69. data/sample/public/javascripts/prototype.js +4221 -0
  70. data/sample/public/robots.txt +5 -0
  71. data/sample/public/stylesheets/locale.css +81 -0
  72. data/sample/public/stylesheets/scaffold.css +74 -0
  73. data/sample/script/about +4 -0
  74. data/sample/script/console +3 -0
  75. data/sample/script/dbconsole +3 -0
  76. data/sample/script/destroy +3 -0
  77. data/sample/script/generate +3 -0
  78. data/sample/script/performance/benchmarker +3 -0
  79. data/sample/script/performance/profiler +3 -0
  80. data/sample/script/performance/request +3 -0
  81. data/sample/script/plugin +3 -0
  82. data/sample/script/process/inspector +3 -0
  83. data/sample/script/process/reaper +3 -0
  84. data/sample/script/process/spawner +3 -0
  85. data/sample/script/runner +3 -0
  86. data/sample/script/server +3 -0
  87. data/sample/test/performance/browsing_test.rb +9 -0
  88. data/sample/test/test_helper.rb +38 -0
  89. metadata +195 -0
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3-ruby (not necessary on OS X Leopard)
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,25 @@
1
+ # Be sure to restart your server when you modify this file
2
+
3
+ # Uncomment below to force Rails into production mode when
4
+ # you don't control web/app server and can't set it the proper way
5
+ # ENV['RAILS_ENV'] ||= 'production'
6
+
7
+ # Specifies gem version of Rails to use when vendor/rails is not present
8
+ RAILS_GEM_VERSION = '2.2.0' unless defined? RAILS_GEM_VERSION
9
+
10
+ # Bootstrap the Rails environment, frameworks, and default configuration
11
+ require File.join(File.dirname(__FILE__), 'boot')
12
+
13
+ Rails::Initializer.run do |config|
14
+ config.time_zone = 'UTC'
15
+
16
+ config.action_controller.session = {
17
+ :session_key => '_rails_session',
18
+ :secret => '25fe1cb0e4295d9ede3b21864a1a3b589a4656bd0032fee8b8a470a93d221d4d666e9076a35bd0e4fd0fe8ca12eec9dc85f46554cd6e26b4569548b6ee03323a'
19
+ }
20
+
21
+ config.gem "locale"
22
+ config.gem "locale_rails"
23
+ end
24
+
25
+ ActionController::Base.cache_store = :file_store, "#{RAILS_ROOT}/tmp/cache"
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = true
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
14
+ config.action_controller.perform_caching = true
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,24 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Enable threaded mode
8
+ # config.threadsafe!
9
+
10
+ # Use a different logger for distributed setups
11
+ # config.logger = SyslogLogger.new
12
+
13
+ # Full error reports are disabled and caching is turned on
14
+ config.action_controller.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Use a different cache store in production
18
+ # config.cache_store = :mem_cache_store
19
+
20
+ # Enable serving of images, stylesheets, and javascripts from an asset server
21
+ # config.action_controller.asset_host = "http://assets.example.com"
22
+
23
+ # Disable delivery errors, bad email addresses will be ignored
24
+ # config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,22 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Disable request forgery protection in test environment
17
+ config.action_controller.allow_forgery_protection = false
18
+
19
+ # Tell Action Mailer not to deliver emails to the real world.
20
+ # The :test delivery method accumulates sent emails in the
21
+ # ActionMailer::Base.deliveries array.
22
+ config.action_mailer.delivery_method = :test
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,17 @@
1
+ # These settings change the behavior of Rails 2 apps and will be defaults
2
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
3
+
4
+ if defined?(ActiveRecord)
5
+ # Include Active Record class name as root for JSON serialized output.
6
+ ActiveRecord::Base.include_root_in_json = true
7
+
8
+ # Store the full class name (including module namespace) in STI type column.
9
+ ActiveRecord::Base.store_full_sti_class = true
10
+ end
11
+
12
+ # Use ISO 8601 format for JSON serialized times and dates.
13
+ ActiveSupport.use_standard_json_time_format = true
14
+
15
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
16
+ # if you're including raw json in an HTML page.
17
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,13 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.resources :samples, :collection => {:clear_cookie => :get,
3
+ :cached_action => :get}
4
+
5
+ # Localized Routing.
6
+ map.connect '/:lang/:controller/:action/:id'
7
+ map.connect '/:lang/:controller/:action/:id.:format'
8
+
9
+ map.connect ':controller/:action/:id'
10
+ map.connect ':controller/:action/:id.:format'
11
+
12
+ map.root :controller => "samples"
13
+ end
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,2573 @@
1
+ SQL (0.4ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+
6
+
7
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:30:25) [GET]
8
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
9
+ Parameters: {"action"=>"index", "controller"=>"samples"}
10
+ Rendering template within layouts/samples
11
+ Rendering samples/index
12
+ Rendered samples/_part (10.9ms)
13
+ Completed in 37ms (View: 29, DB: 0) | 200 OK [http://localhost/samples]
14
+
15
+
16
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:30:31) [GET]
17
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
18
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
19
+ Rendering template within layouts/samples
20
+ Rendering samples/index
21
+
22
+
23
+ ActionView::TemplateError (You have a nil object when you didn't expect it!
24
+ The error occurred while evaluating nil.downcase) on line #66 of app/views/samples/_part.html.erb:
25
+ 63: <ol>
26
+ 64: <% (app_lang_tags - ["uz_UZ", "nl"]).each do |lang|
27
+ 65: url = url_for(:controller => :samples, :action => :cached_action, :lang => lang) %>
28
+ 66: <li><%= link_to h(url), {:action => :cached_action, :lang => lang} %> [<%= lang %>]</li>
29
+ 67: <% end %>
30
+ 68: </ol>
31
+
32
+ generated code (/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route.rb:145):7:in `generate_raw'
33
+ generated code (/usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route.rb:154):2:in `generate'
34
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:364:in `__send__'
35
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:364:in `generate'
36
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:363:in `each'
37
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:363:in `generate'
38
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/url_rewriter.rb:208:in `rewrite_path'
39
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/url_rewriter.rb:187:in `rewrite_url'
40
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/url_rewriter.rb:165:in `rewrite'
41
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:635:in `url_for'
42
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/helpers/url_helper.rb:85:in `send'
43
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/helpers/url_helper.rb:85:in `url_for'
44
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/helpers/url_helper.rb:228:in `link_to'
45
+ app/views/samples/_part.html.erb:66
46
+ app/views/samples/_part.html.erb:64:in `each'
47
+ app/views/samples/_part.html.erb:64
48
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable.rb:34:in `send'
49
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable.rb:34:in `render'
50
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable_partial.rb:20:in `render'
51
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:26:in `benchmark'
52
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
53
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:26:in `benchmark'
54
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable_partial.rb:19:in `render'
55
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/template.rb:73:in `render_template'
56
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable_partial.rb:45:in `render_partial'
57
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/partials.rb:152:in `render_partial'
58
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/base.rb:252:in `render'
59
+ app/views/samples/index.html.erb:14
60
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable.rb:34:in `send'
61
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/renderable.rb:34:in `render'
62
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/template.rb:73:in `render_template'
63
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/base.rb:250:in `render'
64
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/base.rb:353:in `_render_with_layout'
65
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_view/base.rb:248:in `render'
66
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:1156:in `render_for_file'
67
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:886:in `render_without_benchmark'
68
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:51:in `render'
69
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
70
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:51:in `render'
71
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:858:in `render_without_benchmark'
72
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:51:in `render'
73
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
74
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:51:in `render'
75
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:1208:in `default_render'
76
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:1214:in `perform_action_without_filters'
77
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:617:in `call_filters'
78
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:638:in `run_before_filters'
79
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:189:in `call'
80
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:189:in `call'
81
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:635:in `run_before_filters'
82
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
83
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
84
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
85
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
86
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
87
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
88
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
89
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
90
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
91
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
92
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
93
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
94
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
95
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
96
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
97
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
98
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
99
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
100
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
101
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
102
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
103
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
104
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
105
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
106
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
107
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
108
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
109
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
110
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
111
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
112
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
113
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
114
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
115
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
116
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
117
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
118
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
119
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
120
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
121
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
122
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
123
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
124
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
125
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
126
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
127
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
128
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
129
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
130
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
131
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
132
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
133
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
134
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
135
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
136
+ script/server:3
137
+
138
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (147.9ms)
139
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.7ms)
140
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
141
+ SQL (0.4ms)  SELECT name
142
+ FROM sqlite_master
143
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
144
+ 
145
+
146
+
147
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:31:27) [GET]
148
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
149
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
150
+ Rendering template within layouts/samples
151
+ Rendering samples/index
152
+ Rendered samples/_part (6.1ms)
153
+ Completed in 16ms (View: 13, DB: 0) | 200 OK [http://localhost/ja_JP/samples]
154
+
155
+
156
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:31:33) [GET]
157
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
158
+ Parameters: {"action"=>"index", "controller"=>"samples"}
159
+ Rendering template within layouts/samples
160
+ Rendering samples/index
161
+ Rendered samples/_part (8.5ms)
162
+ Completed in 29ms (View: 24, DB: 0) | 200 OK [http://localhost/samples]
163
+
164
+
165
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:31:40) [GET]
166
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
167
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
168
+ Rendering template within layouts/samples
169
+ Rendering samples/index
170
+ Rendered samples/_part (4.7ms)
171
+ Completed in 11ms (View: 10, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP]
172
+ SQL (0.4ms)  SELECT name
173
+ FROM sqlite_master
174
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
175
+ 
176
+
177
+
178
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:42:17) [GET]
179
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
180
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
181
+ Rendering template within layouts/samples
182
+ Rendering samples/index
183
+ Rendered samples/_part (11.0ms)
184
+ Completed in 27ms (View: 23, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP]
185
+ SQL (0.6ms)  SELECT name
186
+ FROM sqlite_master
187
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
188
+ 
189
+
190
+
191
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-11-24 14:48:10) [GET]
192
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BkY=--c700c88b5042ff1a5c23292bb6d67abdaa8998c6
193
+ Parameters: {"action"=>"set_cookie", "id"=>"ja_JP", "controller"=>"samples"}
194
+ Cookie set: lang=ja_JP; path=/
195
+ Redirected to actionindex
196
+ Completed in 9ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/ja_JP]
197
+
198
+
199
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:48:10) [GET]
200
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BkY=--c700c88b5042ff1a5c23292bb6d67abdaa8998c6
201
+ Parameters: {"action"=>"index", "controller"=>"samples"}
202
+ Rendering template within layouts/samples
203
+ Rendering samples/index
204
+ Rendered samples/_part (10.1ms)
205
+ Completed in 25ms (View: 22, DB: 0) | 200 OK [http://localhost/samples]
206
+
207
+
208
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:48:20) [GET]
209
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BlQ=--c5ce8251c879f27b4a55e90c44caa7e811ec2e69
210
+ Parameters: {"action"=>"index", "controller"=>"samples"}
211
+ Rendering template within layouts/samples
212
+ Rendering samples/index
213
+ Rendered samples/_part (8.6ms)
214
+ Completed in 21ms (View: 18, DB: 0) | 200 OK [http://localhost/samples]
215
+
216
+
217
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-11-24 14:48:27) [GET]
218
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
219
+ Parameters: {"action"=>"set_cookie", "id"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
220
+ Cookie set: lang=en_Latn_US_NYNORSK; path=/
221
+ Redirected to actionindex
222
+ Completed in 6ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/en_Latn_US_NYNORSK]
223
+
224
+
225
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:48:27) [GET]
226
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiLUNvb2tpZSBsYW5nIHZhbHVlIGlzOiBlbl9MYXRuX1VTX05ZTk9SU0sGOgpAdXNlZHsGOwZG--2753210a6ec3a7c1c8ec882ebccb133e8c356c90
227
+ Parameters: {"action"=>"index", "controller"=>"samples"}
228
+ Rendering template within layouts/samples
229
+ Rendering samples/index
230
+ Rendered samples/_part (8.6ms)
231
+ Completed in 25ms (View: 22, DB: 0) | 200 OK [http://localhost/samples]
232
+ SQL (0.4ms)  SELECT name
233
+ FROM sqlite_master
234
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
235
+ 
236
+
237
+
238
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:49:30) [GET]
239
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiLUNvb2tpZSBsYW5nIHZhbHVlIGlzOiBlbl9MYXRuX1VTX05ZTk9SU0sGOgpAdXNlZHsGOwZU--70eb36578491cc5b635a199426122e49e6133135
240
+ Parameters: {"action"=>"index", "controller"=>"samples"}
241
+ Rendering template within layouts/samples
242
+ Rendering samples/index
243
+ Rendered samples/_part (11.2ms)
244
+ Completed in 34ms (View: 29, DB: 0) | 200 OK [http://localhost/samples]
245
+
246
+
247
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:50:29) [GET]
248
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
249
+ Parameters: {"action"=>"index", "lang"=>"fr", "controller"=>"samples"}
250
+ Rendering template within layouts/samples
251
+ Rendering samples/index
252
+ Rendered samples/_part (4.6ms)
253
+ Completed in 12ms (View: 10, DB: 0) | 200 OK [http://localhost/fr/samples]
254
+
255
+
256
+ Processing SamplesController#cached_action (for 127.0.0.1 at 2008-11-24 14:50:37) [GET]
257
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
258
+ Parameters: {"action"=>"cached_action", "lang"=>"pt_BR", "controller"=>"samples"}
259
+ Cached fragment hit: views/localhost.3000/pt_BR/samples/cached_action_pt_BR (0.3ms)
260
+ Rendering template within layouts/samples
261
+ Rendering samples/cached_action
262
+ Cached fragment miss: views/localhost.3000/pt_BR/samples/cached_action_pt_BR (2.3ms)
263
+ Completed in 9ms (View: 3, DB: 0) | 200 OK [http://localhost/pt_BR/samples/cached_action]
264
+
265
+
266
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:50:49) [GET]
267
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
268
+ Parameters: {"action"=>"index", "controller"=>"samples"}
269
+ Rendering template within layouts/samples
270
+ Rendering samples/index
271
+ Rendered samples/_part (8.5ms)
272
+ Completed in 25ms (View: 23, DB: 0) | 200 OK [http://localhost/samples]
273
+
274
+
275
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:50:55) [GET]
276
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
277
+ Parameters: {"action"=>"index", "lang"=>"uz_UZ", "controller"=>"samples"}
278
+ Rendering template within layouts/samples
279
+ Rendering samples/index
280
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/uz_UZ/samples]
281
+
282
+
283
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 14:51:12) [GET]
284
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
285
+ Parameters: {"action"=>"index", "controller"=>"samples"}
286
+ Rendering template within layouts/samples
287
+ Rendering samples/index
288
+ Rendered samples/_part (9.0ms)
289
+ Completed in 26ms (View: 23, DB: 0) | 200 OK [http://localhost/samples]
290
+ SQL (0.4ms)  SELECT name
291
+ FROM sqlite_master
292
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
293
+ 
294
+
295
+
296
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 15:37:32) [GET]
297
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
298
+ Parameters: {"action"=>"index", "controller"=>"samples"}
299
+ Rendering template within layouts/samples
300
+ Rendering samples/index
301
+ Rendered samples/_part (22.1ms)
302
+ Completed in 44ms (View: 39, DB: 0) | 200 OK [http://localhost/samples]
303
+
304
+
305
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 15:37:42) [GET]
306
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
307
+ Parameters: {"action"=>"index", "LANG"=>"ko-KR", "controller"=>"samples"}
308
+ Rendering template within layouts/samples
309
+ Rendering samples/index
310
+ Rendered samples/_part (8.7ms)
311
+ Completed in 26ms (View: 24, DB: 0) | 200 OK [http://localhost/samples?LANG=ko-KR]
312
+
313
+
314
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 15:37:51) [GET]
315
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
316
+ Parameters: {"action"=>"index", "lang"=>"ko-KR", "controller"=>"samples"}
317
+ Rendering template within layouts/samples
318
+ Rendering samples/index
319
+ Rendered samples/_part (8.8ms)
320
+ Completed in 21ms (View: 19, DB: 0) | 200 OK [http://localhost/samples?lang=ko-KR]
321
+ SQL (0.3ms)  SELECT name
322
+ FROM sqlite_master
323
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
324
+ 
325
+
326
+
327
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-24 15:44:02) [GET]
328
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
329
+ Parameters: {"action"=>"index", "lang"=>"ko-KR", "controller"=>"samples"}
330
+ Rendering template within layouts/samples
331
+ Rendering samples/index
332
+ Rendered samples/_part (10.2ms)
333
+ Completed in 32ms (View: 24, DB: 0) | 200 OK [http://localhost/samples?lang=ko-KR]
334
+ SQL (0.4ms)  SELECT name
335
+ FROM sqlite_master
336
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
337
+ 
338
+ SQL (0.7ms)  SELECT name
339
+ FROM sqlite_master
340
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
341
+ 
342
+
343
+
344
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-26 01:54:00) [GET]
345
+ Session ID: df1b65f077e03e52543cc3755f2e146e
346
+ Parameters: {"action"=>"index", "controller"=>"samples"}
347
+ Rendering template within layouts/samples
348
+ Rendering samples/index
349
+ Rendered samples/_part (6.9ms)
350
+ Completed in 26ms (View: 21, DB: 0) | 200 OK [http://localhost/]
351
+
352
+
353
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-11-26 01:54:46) [GET]
354
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
355
+ Parameters: {"action"=>"set_cookie", "id"=>"pt_BR", "controller"=>"samples"}
356
+ Cookie set: lang=pt_BR; path=/
357
+ Redirected to actionindex
358
+ Completed in 7ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/pt_BR]
359
+
360
+
361
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-26 01:54:46) [GET]
362
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBwdF9CUgY6CkB1c2VkewY7BkY=--b4f8cce7beccfb502800a6f55b4af14fcacb20f4
363
+ Parameters: {"action"=>"index", "controller"=>"samples"}
364
+ Rendering template within layouts/samples
365
+ Rendering samples/index
366
+ Rendered samples/_part (5.1ms)
367
+ Completed in 21ms (View: 12, DB: 0) | 200 OK [http://localhost/samples]
368
+ SQL (0.5ms)  SELECT name
369
+ FROM sqlite_master
370
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
371
+ 
372
+
373
+
374
+ Processing ApplicationController#index (for 127.0.0.1 at 2008-11-30 12:37:37) [GET]
375
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
376
+ Parameters: {}
377
+
378
+
379
+ ActionController::RoutingError (No route matches "/articles" with {:method=>:get}):
380
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/recognition_optimisation.rb:66:in `recognize_path'
381
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:385:in `recognize'
382
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:179:in `handle_request'
383
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
384
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
385
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
386
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
387
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
388
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
389
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
390
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
391
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
392
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
393
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
394
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
395
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
396
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
397
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
398
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
399
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
400
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
401
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
402
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
403
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
404
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
405
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
406
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
407
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
408
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
409
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
410
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
411
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
412
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
413
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
414
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
415
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
416
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
417
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
418
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
419
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
420
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
421
+ script/server:3
422
+
423
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (not_found)
424
+
425
+
426
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 12:37:42) [GET]
427
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
428
+ Parameters: {"action"=>"index", "controller"=>"samples"}
429
+ Rendering template within layouts/samples
430
+ Rendering samples/index
431
+ Rendered samples/_part (5.8ms)
432
+ Completed in 32ms (View: 28, DB: 0) | 200 OK [http://localhost/samples]
433
+
434
+
435
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 12:37:48) [GET]
436
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
437
+ Parameters: {"action"=>"index", "lang"=>"nl", "controller"=>"samples"}
438
+
439
+
440
+ NoMethodError (undefined method `downcase' for ["nl"]:Array):
441
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
442
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
443
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
444
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
445
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
446
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
447
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
448
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
449
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
450
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
451
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
452
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
453
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
454
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
455
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
456
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
457
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
458
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
459
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
460
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
461
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
462
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
463
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
464
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
465
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
466
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
467
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
468
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
469
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
470
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
471
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
472
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
473
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
474
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
475
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
476
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
477
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
478
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
479
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
480
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
481
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
482
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
483
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
484
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
485
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
486
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
487
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
488
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
489
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
490
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
491
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
492
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
493
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
494
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
495
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
496
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
497
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
498
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
499
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
500
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
501
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
502
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
503
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
504
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
505
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
506
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
507
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
508
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
509
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
510
+ script/server:3
511
+
512
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (37.6ms)
513
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (1.0ms)
514
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
515
+
516
+
517
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 12:37:56) [GET]
518
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
519
+ Parameters: {"action"=>"index", "lang"=>"uz_UZ", "controller"=>"samples"}
520
+
521
+
522
+ NoMethodError (undefined method `downcase' for ["uz_UZ"]:Array):
523
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
524
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
525
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
526
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
527
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
528
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
529
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
530
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
531
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
532
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
533
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
534
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
535
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
536
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
537
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
538
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
539
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
540
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
541
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
542
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
543
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
544
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
545
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
546
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
547
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
548
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
549
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
550
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
551
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
552
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
553
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
554
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
555
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
556
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
557
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
558
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
559
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
560
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
561
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
562
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
563
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
564
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
565
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
566
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
567
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
568
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
569
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
570
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
571
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
572
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
573
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
574
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
575
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
576
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
577
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
578
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
579
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
580
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
581
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
582
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
583
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
584
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
585
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
586
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
587
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
588
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
589
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
590
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
591
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
592
+ script/server:3
593
+
594
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (69.8ms)
595
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (1.1ms)
596
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
597
+
598
+
599
+ Processing SamplesController#cached_action (for 127.0.0.1 at 2008-11-30 12:38:05) [GET]
600
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
601
+ Parameters: {"action"=>"cached_action", "lang"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
602
+
603
+
604
+ NoMethodError (undefined method `downcase' for ["en_Latn_US_NYNORSK"]:Array):
605
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
606
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
607
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
608
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
609
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
610
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
611
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
612
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
613
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
614
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
615
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
616
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
617
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
618
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
619
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
620
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
621
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
622
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
623
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
624
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
625
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
626
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
627
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
628
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
629
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
630
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
631
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
632
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
633
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
634
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
635
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
636
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
637
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
638
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
639
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
640
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
641
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
642
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
643
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
644
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
645
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
646
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
647
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
648
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
649
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
650
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
651
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
652
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
653
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
654
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
655
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
656
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
657
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
658
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
659
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
660
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
661
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
662
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
663
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
664
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
665
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
666
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
667
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
668
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
669
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
670
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
671
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
672
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
673
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
674
+ script/server:3
675
+
676
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (174.1ms)
677
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
678
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
679
+
680
+
681
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 12:38:14) [GET]
682
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
683
+ Parameters: {"action"=>"index", "lang"=>"pt_BR", "controller"=>"samples"}
684
+
685
+
686
+ NoMethodError (undefined method `downcase' for ["pt_BR"]:Array):
687
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
688
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
689
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
690
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
691
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
692
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
693
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
694
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
695
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
696
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
697
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
698
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
699
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
700
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
701
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
702
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
703
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
704
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
705
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
706
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
707
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
708
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
709
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
710
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
711
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
712
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
713
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
714
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
715
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
716
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
717
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
718
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
719
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
720
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
721
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
722
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
723
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
724
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
725
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
726
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
727
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
728
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
729
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
730
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
731
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
732
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
733
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
734
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
735
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
736
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
737
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
738
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
739
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
740
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
741
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
742
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
743
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
744
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
745
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
746
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
747
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
748
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
749
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
750
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
751
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
752
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
753
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
754
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
755
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
756
+ script/server:3
757
+
758
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (36.3ms)
759
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.5ms)
760
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
761
+ SQL (0.4ms)  SELECT name
762
+ FROM sqlite_master
763
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
764
+ 
765
+
766
+
767
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 23:10:43) [GET]
768
+ Session ID: 76d9beed21f196f91262f51e2fc65d4a
769
+ Parameters: {"action"=>"index", "controller"=>"samples"}
770
+ Rendering template within layouts/samples
771
+ Rendering samples/index
772
+ Rendered samples/_part (5.7ms)
773
+ Completed in 21ms (View: 17, DB: 0) | 200 OK [http://localhost/]
774
+
775
+
776
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 23:10:46) [GET]
777
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
778
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
779
+
780
+
781
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
782
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
783
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
784
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
785
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
786
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
787
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
788
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
789
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
790
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
791
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
792
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
793
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
794
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
795
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
796
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
797
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
798
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
799
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
800
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
801
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
802
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
803
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
804
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
805
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
806
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
807
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
808
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
809
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
810
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
811
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
812
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
813
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
814
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
815
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
816
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
817
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
818
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
819
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
820
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
821
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
822
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
823
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
824
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
825
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
826
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
827
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
828
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
829
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
830
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
831
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
832
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
833
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
834
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
835
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
836
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
837
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
838
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
839
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
840
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
841
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
842
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
843
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
844
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
845
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
846
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
847
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
848
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
849
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
850
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
851
+ script/server:3
852
+
853
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (38.1ms)
854
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.8ms)
855
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
856
+ SQL (0.5ms)  SELECT name
857
+ FROM sqlite_master
858
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
859
+ 
860
+
861
+
862
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 23:15:03) [GET]
863
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
864
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
865
+
866
+
867
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
868
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
869
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
870
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
871
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
872
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
873
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
874
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
875
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
876
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
877
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
878
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
879
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
880
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
881
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
882
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
883
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
884
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
885
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
886
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
887
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
888
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
889
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
890
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
891
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
892
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
893
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
894
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
895
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
896
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
897
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
898
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
899
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
900
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
901
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
902
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
903
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
904
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
905
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
906
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
907
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
908
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
909
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
910
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
911
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
912
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
913
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
914
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
915
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
916
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
917
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
918
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
919
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
920
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
921
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
922
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
923
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
924
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
925
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
926
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
927
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
928
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
929
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
930
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
931
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
932
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
933
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
934
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
935
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
936
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
937
+ script/server:3
938
+
939
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (162.9ms)
940
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.9ms)
941
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
942
+
943
+
944
+ Processing SamplesController#index (for 127.0.0.1 at 2008-11-30 23:15:06) [GET]
945
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
946
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
947
+
948
+
949
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
950
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
951
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
952
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
953
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
954
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
955
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
956
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
957
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
958
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
959
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
960
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
961
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
962
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
963
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
964
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
965
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
966
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
967
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
968
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
969
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
970
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
971
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
972
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
973
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
974
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
975
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
976
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
977
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
978
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
979
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
980
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
981
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
982
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
983
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
984
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
985
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
986
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
987
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
988
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
989
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
990
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
991
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
992
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
993
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
994
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
995
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
996
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
997
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
998
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
999
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1000
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1001
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1002
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1003
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1004
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1005
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1006
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1007
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1008
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1009
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1010
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1011
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1012
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1013
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1014
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1015
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1016
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1017
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1018
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1019
+ script/server:3
1020
+
1021
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (48.7ms)
1022
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.5ms)
1023
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1024
+ SQL (0.4ms)  SELECT name
1025
+ FROM sqlite_master
1026
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1027
+ 
1028
+
1029
+
1030
+ Processing ApplicationController#index (for 127.0.0.1 at 2008-12-01 00:21:05) [GET]
1031
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1032
+ Parameters: {}
1033
+
1034
+
1035
+ ActionController::RoutingError (No route matches "/articles" with {:method=>:get}):
1036
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/recognition_optimisation.rb:66:in `recognize_path'
1037
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/routing/route_set.rb:385:in `recognize'
1038
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:179:in `handle_request'
1039
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1040
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1041
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1042
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1043
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1044
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1045
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1046
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1047
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1048
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1049
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1050
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1051
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1052
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1053
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1054
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1055
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1056
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1057
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1058
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1059
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1060
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1061
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1062
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1063
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1064
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1065
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1066
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1067
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1068
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1069
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1070
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1071
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1072
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1073
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1074
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1075
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1076
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1077
+ script/server:3
1078
+
1079
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (not_found)
1080
+
1081
+
1082
+ Processing SamplesController#show (for 127.0.0.1 at 2008-12-01 00:21:10) [GET]
1083
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1084
+ Parameters: {"action"=>"show", "id"=>"cached_page", "controller"=>"samples"}
1085
+
1086
+
1087
+ ActionController::UnknownAction (No action responded to show. Actions: cached_action, clear_cookie, index translation missing: ja, support, array, sentence_connector set_cookie):
1088
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:617:in `call_filters'
1089
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:638:in `run_before_filters'
1090
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:189:in `call'
1091
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:189:in `call'
1092
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:635:in `run_before_filters'
1093
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1094
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1095
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1096
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1097
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1098
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1099
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1100
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1101
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1102
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1103
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1104
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1105
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1106
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1107
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1108
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1109
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1110
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1111
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1112
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1113
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1114
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1115
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1116
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1117
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1118
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1119
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1120
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1121
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1122
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1123
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1124
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1125
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1126
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1127
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1128
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1129
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1130
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1131
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1132
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1133
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1134
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1135
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1136
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1137
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1138
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1139
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1140
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1141
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1142
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1143
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1144
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1145
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1146
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1147
+ script/server:3
1148
+
1149
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (not_found)
1150
+
1151
+
1152
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:21:15) [GET]
1153
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1154
+ Parameters: {"action"=>"index", "controller"=>"samples"}
1155
+ Rendering template within layouts/samples
1156
+ Rendering samples/index
1157
+ Rendered samples/_part (11.9ms)
1158
+ Completed in 123ms (View: 120, DB: 0) | 200 OK [http://localhost/samples/]
1159
+
1160
+
1161
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:21:18) [GET]
1162
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1163
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1164
+
1165
+
1166
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1167
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
1168
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1169
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1170
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1171
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1172
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1173
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1174
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1175
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1176
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1177
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1178
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1179
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1180
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1181
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1182
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1183
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1184
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1185
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1186
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1187
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1188
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1189
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1190
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1191
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1192
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1193
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1194
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1195
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1196
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1197
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1198
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1199
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1200
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1201
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1202
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1203
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1204
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1205
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1206
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1207
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1208
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1209
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1210
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1211
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1212
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1213
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1214
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1215
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1216
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1217
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1218
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1219
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1220
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1221
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1222
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1223
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1224
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1225
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1226
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1227
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1228
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1229
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1230
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1231
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1232
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1233
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1234
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1235
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1236
+ script/server:3
1237
+
1238
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (48.5ms)
1239
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (1.4ms)
1240
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1241
+ SQL (0.4ms)  SELECT name
1242
+ FROM sqlite_master
1243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1244
+ 
1245
+
1246
+
1247
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:25:52) [GET]
1248
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1249
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1250
+
1251
+
1252
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1253
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:66:in `initialize'
1254
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1255
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1256
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1257
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1258
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1259
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1260
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1261
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1262
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1263
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1264
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1265
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1266
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1267
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1268
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1269
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1270
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1271
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1272
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1273
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1274
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1275
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1276
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1277
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1278
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1279
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1280
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1281
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1282
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1283
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1284
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1285
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1286
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1287
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1288
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1289
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1290
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1291
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1292
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1293
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1294
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1295
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1296
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1297
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1298
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1299
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1300
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1301
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1302
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1303
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1304
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1305
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1306
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1307
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1308
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1309
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1310
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1311
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1312
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1313
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1314
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1315
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1316
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1317
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1318
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1319
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1320
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1321
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1322
+ script/server:3
1323
+
1324
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (186.3ms)
1325
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.9ms)
1326
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1327
+ SQL (0.5ms)  SELECT name
1328
+ FROM sqlite_master
1329
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1330
+ 
1331
+
1332
+
1333
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:29:40) [GET]
1334
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1335
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1336
+
1337
+
1338
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1339
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1340
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1341
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1342
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1343
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1344
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1345
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1346
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1347
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1348
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1349
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1350
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1351
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1352
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1353
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1354
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1355
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1356
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1357
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1358
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1359
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1360
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1361
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1362
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1363
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1364
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1365
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1366
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1367
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1368
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1369
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1370
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1371
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1372
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1373
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1374
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1375
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1376
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1377
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1378
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1379
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1380
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1381
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1382
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1383
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1384
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1385
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1386
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1387
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1388
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1389
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1390
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1391
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1392
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1393
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1394
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1395
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1396
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1397
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1398
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1399
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1400
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1401
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1402
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1403
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1404
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1405
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1406
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1407
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1408
+ script/server:3
1409
+
1410
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (166.4ms)
1411
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.9ms)
1412
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1413
+
1414
+
1415
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:29:42) [GET]
1416
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1417
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1418
+
1419
+
1420
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1421
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1422
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1423
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1424
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1425
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1426
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1427
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1428
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1429
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1430
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1431
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1432
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1433
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1434
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1435
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1436
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1437
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1438
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1439
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1440
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1441
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1442
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1443
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1444
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1445
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1446
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1447
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1448
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1449
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1450
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1451
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1452
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1453
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1454
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1455
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1456
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1457
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1458
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1459
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1460
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1461
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1462
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1463
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1464
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1465
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1466
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1467
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1468
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1469
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1470
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1471
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1472
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1473
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1474
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1475
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1476
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1477
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1478
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1479
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1480
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1481
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1482
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1483
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1484
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1485
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1486
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1487
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1488
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1489
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1490
+ script/server:3
1491
+
1492
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (34.9ms)
1493
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
1494
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1495
+
1496
+
1497
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:29:44) [GET]
1498
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1499
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1500
+
1501
+
1502
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1503
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1504
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1505
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1506
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1507
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1508
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1509
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1510
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1511
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1512
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1513
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1514
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1515
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1516
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1517
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1518
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1519
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1520
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1521
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1522
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1523
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1524
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1525
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1526
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1527
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1528
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1529
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1530
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1531
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1532
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1533
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1534
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1535
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1536
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1537
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1538
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1539
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1540
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1541
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1542
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1543
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1544
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1545
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1546
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1547
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1548
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1549
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1550
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1551
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1552
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1553
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1554
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1555
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1556
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1557
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1558
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1559
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1560
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1561
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1562
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1563
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1564
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1565
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1566
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1567
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1568
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1569
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1570
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1571
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1572
+ script/server:3
1573
+
1574
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (63.1ms)
1575
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
1576
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1577
+
1578
+
1579
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:29:48) [GET]
1580
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1581
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1582
+
1583
+
1584
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1585
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1586
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1587
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1588
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1589
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1590
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1591
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1592
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1593
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1594
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1595
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1596
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1597
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1598
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1599
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1600
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1601
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1602
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1603
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1604
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1605
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1606
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1607
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1608
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1609
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1610
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1611
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1612
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1613
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1614
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1615
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1616
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1617
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1618
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1619
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1620
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1621
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1622
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1623
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1624
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1625
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1626
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1627
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1628
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1629
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1630
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1631
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1632
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1633
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1634
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1635
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1636
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1637
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1638
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1639
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1640
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1641
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1642
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1643
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1644
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1645
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1646
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1647
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1648
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1649
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1650
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1651
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1652
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1653
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1654
+ script/server:3
1655
+
1656
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (152.1ms)
1657
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
1658
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1659
+
1660
+
1661
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:30:52) [GET]
1662
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1663
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1664
+
1665
+
1666
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1667
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1668
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1669
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1670
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1671
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1672
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1673
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1674
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1675
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1676
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1677
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1678
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1679
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1680
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1681
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1682
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1683
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1684
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1685
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1686
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1687
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1688
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1689
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1690
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1691
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1692
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1693
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1694
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1695
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1696
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1697
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1698
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1699
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1700
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1701
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1702
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1703
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1704
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1705
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1706
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1707
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1708
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1709
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1710
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1711
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1712
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1713
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1714
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1715
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1716
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1717
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1718
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1719
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1720
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1721
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1722
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1723
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1724
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1725
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1726
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1727
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1728
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1729
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1730
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1731
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1732
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1733
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1734
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1735
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1736
+ script/server:3
1737
+
1738
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (51.8ms)
1739
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
1740
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1741
+ SQL (0.6ms)  SELECT name
1742
+ FROM sqlite_master
1743
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1744
+ 
1745
+
1746
+
1747
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:31:01) [GET]
1748
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1749
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1750
+
1751
+
1752
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1753
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1754
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1755
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1756
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1757
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1758
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1759
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1760
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1761
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:31:in `locale='
1762
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1763
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1764
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1765
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1766
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1767
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1768
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1769
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1770
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1771
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1772
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1773
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1774
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1775
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1776
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1777
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1778
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1779
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1780
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1781
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1782
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1783
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1784
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1785
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1786
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1787
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1788
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1789
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1790
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1791
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1792
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1793
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1794
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1795
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1796
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1797
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1798
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1799
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1800
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1801
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1802
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1803
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1804
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1805
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1806
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1807
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1808
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1809
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1810
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1811
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1812
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1813
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1814
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1815
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1816
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1817
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1818
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1819
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1820
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1821
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1822
+ script/server:3
1823
+
1824
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (137.9ms)
1825
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (1.1ms)
1826
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1827
+ SQL (0.4ms)  SELECT name
1828
+ FROM sqlite_master
1829
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1830
+ 
1831
+
1832
+
1833
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:31:48) [GET]
1834
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1835
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1836
+
1837
+
1838
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1839
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1840
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1841
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1842
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1843
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1844
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1845
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1846
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1847
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:32:in `locale='
1848
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1849
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1850
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1851
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1852
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1853
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1854
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1855
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1856
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1857
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1858
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1859
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1860
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1861
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1862
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1863
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1864
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1865
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1866
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1867
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1868
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1869
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1870
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1871
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1872
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1873
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1874
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1875
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1876
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1877
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1878
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1879
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1880
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1881
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1882
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1883
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1884
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1885
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1886
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1887
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1888
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1889
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1890
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1891
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1892
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1893
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1894
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1895
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1896
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1897
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1898
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1899
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1900
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1901
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1902
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1903
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1904
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1905
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1906
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1907
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1908
+ script/server:3
1909
+
1910
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (135.5ms)
1911
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (1.1ms)
1912
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1913
+
1914
+
1915
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:33:20) [GET]
1916
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1917
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
1918
+
1919
+
1920
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
1921
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
1922
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
1923
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
1924
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
1925
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
1926
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
1927
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
1928
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
1929
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:32:in `locale='
1930
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
1931
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
1932
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
1933
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
1934
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
1935
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
1936
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
1937
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
1938
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1939
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
1940
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
1941
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
1942
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
1943
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
1944
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
1945
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
1946
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
1947
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
1948
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
1949
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
1950
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
1951
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
1952
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
1953
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
1954
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
1955
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
1956
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
1957
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
1958
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
1959
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
1960
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
1961
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
1962
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
1963
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
1964
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1965
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
1966
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
1967
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
1968
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
1969
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
1970
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
1971
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
1972
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
1973
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
1974
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
1975
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
1976
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
1977
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
1978
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1979
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1980
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
1981
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
1982
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1983
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1984
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1985
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
1986
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
1987
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
1988
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
1989
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
1990
+ script/server:3
1991
+
1992
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (35.9ms)
1993
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.9ms)
1994
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
1995
+
1996
+
1997
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:33:29) [GET]
1998
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
1999
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2000
+
2001
+
2002
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
2003
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
2004
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
2005
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
2006
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
2007
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
2008
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
2009
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
2010
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
2011
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:32:in `locale='
2012
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
2013
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
2014
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
2015
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
2016
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
2017
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
2018
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
2019
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
2020
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2021
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
2022
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2023
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
2024
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
2025
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
2026
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
2027
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
2028
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
2029
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
2030
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
2031
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
2032
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
2033
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
2034
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
2035
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
2036
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
2037
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
2038
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
2039
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
2040
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
2041
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
2042
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
2043
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
2044
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
2045
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
2046
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2047
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
2048
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
2049
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2050
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
2051
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
2052
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
2053
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
2054
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
2055
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
2056
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
2057
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
2058
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
2059
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
2060
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2061
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2062
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2063
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
2064
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2065
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2066
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2067
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2068
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2069
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
2070
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2071
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2072
+ script/server:3
2073
+
2074
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (36.2ms)
2075
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.7ms)
2076
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
2077
+
2078
+
2079
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:33:39) [GET]
2080
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2081
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2082
+
2083
+
2084
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
2085
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
2086
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
2087
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
2088
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
2089
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
2090
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
2091
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
2092
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
2093
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:32:in `locale='
2094
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
2095
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
2096
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
2097
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
2098
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
2099
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
2100
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
2101
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
2102
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2103
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
2104
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2105
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
2106
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
2107
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
2108
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
2109
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
2110
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
2111
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
2112
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
2113
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
2114
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
2115
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
2116
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
2117
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
2118
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
2119
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
2120
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
2121
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
2122
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
2123
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
2124
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
2125
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
2126
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
2127
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
2128
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2129
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
2130
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
2131
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2132
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
2133
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
2134
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
2135
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
2136
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
2137
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
2138
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
2139
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
2140
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
2141
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
2142
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2143
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2144
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2145
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
2146
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2147
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2148
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2149
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2150
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2151
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
2152
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2153
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2154
+ script/server:3
2155
+
2156
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (147.7ms)
2157
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
2158
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
2159
+
2160
+
2161
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:33:48) [GET]
2162
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2163
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2164
+
2165
+
2166
+ NoMethodError (undefined method `downcase' for ["ja_JP"]:Array):
2167
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/simple.rb:67:in `initialize'
2168
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag/illegular.rb:21:in `initialize'
2169
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `new'
2170
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale/tag.rb:32:in `parse'
2171
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:130:in `set_current'
2172
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `each'
2173
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:126:in `set_current'
2174
+ /usr/lib/ruby/gems/1.8/gems/locale-0.9.0/lib/locale.rb:147:in `current='
2175
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/i18n.rb:32:in `locale='
2176
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
2177
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
2178
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
2179
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
2180
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
2181
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
2182
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
2183
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
2184
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2185
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
2186
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2187
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
2188
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
2189
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
2190
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
2191
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
2192
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
2193
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
2194
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
2195
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
2196
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
2197
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
2198
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
2199
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
2200
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
2201
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
2202
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
2203
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
2204
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
2205
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
2206
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
2207
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
2208
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
2209
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
2210
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2211
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
2212
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
2213
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2214
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
2215
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
2216
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
2217
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
2218
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
2219
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
2220
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
2221
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
2222
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
2223
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
2224
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2225
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2226
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2227
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
2228
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2229
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2230
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2231
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2232
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2233
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
2234
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2235
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2236
+ script/server:3
2237
+
2238
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (35.2ms)
2239
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.6ms)
2240
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
2241
+ SQL (0.4ms)  SELECT name
2242
+ FROM sqlite_master
2243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2244
+ 
2245
+
2246
+
2247
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:33:55) [GET]
2248
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2249
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2250
+ Rendering template within layouts/samples
2251
+ Rendering samples/index
2252
+ Rendered samples/_part (10.2ms)
2253
+ Completed in 27ms (View: 22, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP&lang=zh_CN]
2254
+
2255
+
2256
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:37:19) [GET]
2257
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2258
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2259
+ Rendering template within layouts/samples
2260
+ Rendering samples/index
2261
+ Rendered samples/_part (9.1ms)
2262
+ Completed in 22ms (View: 19, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP&lang=zh_CN]
2263
+
2264
+
2265
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:37:26) [GET]
2266
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2267
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2268
+
2269
+
2270
+ NoMethodError (You have a nil object when you didn't expect it!
2271
+ You might have expected an instance of ActiveRecord::Base.
2272
+ The error occurred while evaluating nil.[]):
2273
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-0.1.0/lib/locale_rails/action_controller.rb:39:in `init_locale'
2274
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `send'
2275
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:178:in `evaluate_method'
2276
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/callbacks.rb:166:in `call'
2277
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:225:in `call'
2278
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:629:in `run_before_filters'
2279
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:615:in `call_filters'
2280
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
2281
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2282
+ /usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
2283
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
2284
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/rescue.rb:136:in `perform_action_without_caching'
2285
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
2286
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/connection_adapters/abstract/query_cache.rb:48:in `cache'
2287
+ /usr/lib/ruby/gems/1.8/gems/activerecord-2.2.0/lib/active_record/query_cache.rb:8:in `cache'
2288
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
2289
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `send'
2290
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:533:in `process_without_filters'
2291
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/filters.rb:606:in `process_without_session_management_support'
2292
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/session_management.rb:134:in `process'
2293
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/base.rb:401:in `process'
2294
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:180:in `handle_request'
2295
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:107:in `dispatch_unlocked'
2296
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:120:in `dispatch'
2297
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `synchronize'
2298
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:119:in `dispatch'
2299
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:129:in `dispatch_cgi'
2300
+ /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/dispatcher.rb:36:in `dispatch'
2301
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
2302
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
2303
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
2304
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
2305
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
2306
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
2307
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2308
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
2309
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
2310
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
2311
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
2312
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
2313
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
2314
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
2315
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
2316
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
2317
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
2318
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
2319
+ /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
2320
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load_without_new_constant_marking'
2321
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2322
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2323
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:141:in `load'
2324
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/servers/mongrel.rb:64
2325
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2326
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2327
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2328
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:507:in `new_constants_in'
2329
+ /usr/lib/ruby/gems/1.8/gems/activesupport-2.2.0/lib/active_support/dependencies.rb:148:in `require'
2330
+ /usr/lib/ruby/gems/1.8/gems/rails-2.2.0/lib/commands/server.rb:49
2331
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
2332
+ /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
2333
+ script/server:3
2334
+
2335
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_trace (47.0ms)
2336
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/_request_and_response (0.8ms)
2337
+ Rendering /usr/lib/ruby/gems/1.8/gems/actionpack-2.2.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
2338
+ SQL (0.4ms)  SELECT name
2339
+ FROM sqlite_master
2340
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2341
+ 
2342
+
2343
+
2344
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:40:45) [GET]
2345
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2346
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2347
+ Rendering template within layouts/samples
2348
+ Rendering samples/index
2349
+ Rendered samples/_part (11.3ms)
2350
+ Completed in 40ms (View: 32, DB: 0) | 200 OK [http://localhost/samples]
2351
+
2352
+
2353
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:40:50) [GET]
2354
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2355
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2356
+ Rendering template within layouts/samples
2357
+ Rendering samples/index
2358
+ Rendered samples/_part (5.3ms)
2359
+ Completed in 130ms (View: 124, DB: 0) | 200 OK [http://localhost/samples]
2360
+
2361
+
2362
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:40:52) [GET]
2363
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2364
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2365
+ Rendering template within layouts/samples
2366
+ Rendering samples/index
2367
+ Rendered samples/_part (9.2ms)
2368
+ Completed in 23ms (View: 20, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP]
2369
+
2370
+
2371
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:40:57) [GET]
2372
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2373
+ Parameters: {"action"=>"index", "lang"=>"pt_BR", "controller"=>"samples"}
2374
+ Rendering template within layouts/samples
2375
+ Rendering samples/index
2376
+ Rendered samples/_part (9.1ms)
2377
+ Completed in 23ms (View: 20, DB: 0) | 200 OK [http://localhost/samples?lang=pt_BR]
2378
+
2379
+
2380
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:41:00) [GET]
2381
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2382
+ Parameters: {"action"=>"index", "lang"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
2383
+ Rendering template within layouts/samples
2384
+ Rendering samples/index
2385
+ Rendered samples/_part (8.4ms)
2386
+ Completed in 25ms (View: 22, DB: 0) | 200 OK [http://localhost/samples?lang=en_Latn_US_NYNORSK]
2387
+
2388
+
2389
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-12-01 00:41:08) [GET]
2390
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2391
+ Parameters: {"action"=>"set_cookie", "id"=>"zh_CN", "controller"=>"samples"}
2392
+ Cookie set: lang=zh_CN; path=/
2393
+ Redirected to actionindex
2394
+ Completed in 4ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/zh_CN]
2395
+
2396
+
2397
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:41:08) [GET]
2398
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiB6aF9DTgY6CkB1c2VkewY7BkY=--aadabcdd67d5cb09b656e6adf819e75dd5d76240
2399
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2400
+ Rendering template within layouts/samples
2401
+ Rendering samples/index
2402
+ Rendered samples/_part (4.4ms)
2403
+ Completed in 11ms (View: 10, DB: 0) | 200 OK [http://localhost/samples]
2404
+
2405
+
2406
+ Processing SamplesController#clear_cookie (for 127.0.0.1 at 2008-12-01 00:41:11) [GET]
2407
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiB6aF9DTgY6CkB1c2VkewY7BlQ=--d508ff761f63030a87e5585783cad381c63f2420
2408
+ Parameters: {"action"=>"clear_cookie", "controller"=>"samples"}
2409
+ Cookie set: lang=; path=/
2410
+ Redirected to actionindex
2411
+ Completed in 4ms (DB: 0) | 302 Found [http://localhost/samples/clear_cookie]
2412
+
2413
+
2414
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-01 00:41:11) [GET]
2415
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiI0Nvb2tpZSBsYW5nIHZhbHVlIGlzIGNsZWFyZWQuIAY6CkB1c2VkewY7BkY=--01b3e036153ed12c9b4bac40e6dc93db314d38c1
2416
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2417
+ Rendering template within layouts/samples
2418
+ Rendering samples/index
2419
+ Rendered samples/_part (8.1ms)
2420
+ Completed in 29ms (View: 24, DB: 0) | 200 OK [http://localhost/samples]
2421
+ SQL (0.4ms)  SELECT name
2422
+ FROM sqlite_master
2423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2424
+ 
2425
+
2426
+
2427
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:38:01) [GET]
2428
+ Session ID: f08cb2eb6e693c7d88be4da51d33c4e1
2429
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2430
+ Rendering template within layouts/samples
2431
+ Rendering samples/index
2432
+ Rendered samples/_part (11.0ms)
2433
+ Completed in 35ms (View: 29, DB: 0) | 200 OK [http://localhost/]
2434
+
2435
+
2436
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:38:44) [GET]
2437
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2438
+ Parameters: {"action"=>"index", "lang"=>"ja_JP", "controller"=>"samples"}
2439
+ Rendering template within layouts/samples
2440
+ Rendering samples/index
2441
+ Rendered samples/_part (97.2ms)
2442
+ Completed in 104ms (View: 103, DB: 0) | 200 OK [http://localhost/samples?lang=ja_JP]
2443
+
2444
+
2445
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:38:51) [GET]
2446
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2447
+ Parameters: {"action"=>"index", "lang"=>"fr", "controller"=>"samples"}
2448
+ Rendering template within layouts/samples
2449
+ Rendering samples/index
2450
+ Rendered samples/_part (8.9ms)
2451
+ Completed in 19ms (View: 18, DB: 0) | 200 OK [http://localhost/samples?lang=fr]
2452
+
2453
+
2454
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:17) [GET]
2455
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2456
+ Parameters: {"action"=>"index", "lang"=>"pt_BR", "controller"=>"samples"}
2457
+ Rendering template within layouts/samples
2458
+ Rendering samples/index
2459
+ Rendered samples/_part (8.4ms)
2460
+ Completed in 18ms (View: 17, DB: 0) | 200 OK [http://localhost/samples?lang=pt_BR]
2461
+
2462
+
2463
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:21) [GET]
2464
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2465
+ Parameters: {"action"=>"index", "lang"=>"zh_CN", "controller"=>"samples"}
2466
+ Rendering template within layouts/samples
2467
+ Rendering samples/index
2468
+ Rendered samples/_part (8.8ms)
2469
+ Completed in 19ms (View: 18, DB: 0) | 200 OK [http://localhost/samples?lang=zh_CN]
2470
+
2471
+
2472
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:25) [GET]
2473
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2474
+ Parameters: {"action"=>"index", "lang"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
2475
+ Rendering template within layouts/samples
2476
+ Rendering samples/index
2477
+ Rendered samples/_part (9.0ms)
2478
+ Completed in 25ms (View: 24, DB: 0) | 200 OK [http://localhost/samples?lang=en_Latn_US_NYNORSK]
2479
+
2480
+
2481
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-12-03 23:39:28) [GET]
2482
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2483
+ Parameters: {"action"=>"set_cookie", "id"=>"ja_JP", "controller"=>"samples"}
2484
+ Cookie set: lang=ja_JP; path=/
2485
+ Redirected to actionindex
2486
+ Completed in 5ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/ja_JP]
2487
+
2488
+
2489
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:28) [GET]
2490
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BkY=--c700c88b5042ff1a5c23292bb6d67abdaa8998c6
2491
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2492
+ Rendering template within layouts/samples
2493
+ Rendering samples/index
2494
+ Rendered samples/_part (8.3ms)
2495
+ Completed in 18ms (View: 17, DB: 0) | 200 OK [http://localhost/samples]
2496
+
2497
+
2498
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:33) [GET]
2499
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BlQ=--c5ce8251c879f27b4a55e90c44caa7e811ec2e69
2500
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2501
+ Rendering template within layouts/samples
2502
+ Rendering samples/index
2503
+ Rendered samples/_part (8.3ms)
2504
+ Completed in 18ms (View: 17, DB: 0) | 200 OK [http://localhost/samples]
2505
+
2506
+
2507
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-12-03 23:39:47) [GET]
2508
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2509
+ Parameters: {"action"=>"set_cookie", "id"=>"zh_CN", "controller"=>"samples"}
2510
+ Cookie set: lang=zh_CN; path=/
2511
+ Redirected to actionindex
2512
+ Completed in 3ms (DB: 0) | 302 Found [http://localhost/samples/set_cookie/zh_CN]
2513
+
2514
+
2515
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:47) [GET]
2516
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiB6aF9DTgY6CkB1c2VkewY7BkY=--aadabcdd67d5cb09b656e6adf819e75dd5d76240
2517
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2518
+ Rendering template within layouts/samples
2519
+ Rendering samples/index
2520
+ Rendered samples/_part (6.0ms)
2521
+ Completed in 14ms (View: 13, DB: 0) | 200 OK [http://localhost/samples]
2522
+
2523
+
2524
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:39:50) [GET]
2525
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiB6aF9DTgY6CkB1c2VkewY7BlQ=--d508ff761f63030a87e5585783cad381c63f2420
2526
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2527
+ Rendering template within layouts/samples
2528
+ Rendering samples/index
2529
+ Rendered samples/_part (8.3ms)
2530
+ Completed in 19ms (View: 17, DB: 0) | 200 OK [http://localhost/samples]
2531
+
2532
+
2533
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:40:04) [GET]
2534
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2535
+ Parameters: {"action"=>"index", "lang"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
2536
+ Rendering template within layouts/samples
2537
+ Rendering samples/index
2538
+ Rendered samples/_part (8.8ms)
2539
+ Completed in 25ms (View: 23, DB: 0) | 200 OK [http://localhost/en_Latn_US_NYNORSK/samples]
2540
+
2541
+
2542
+ Processing SamplesController#set_cookie (for 127.0.0.1 at 2008-12-03 23:40:08) [GET]
2543
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2544
+ Parameters: {"action"=>"set_cookie", "id"=>"ja_JP", "lang"=>"en_Latn_US_NYNORSK", "controller"=>"samples"}
2545
+ Cookie set: lang=ja_JP; path=/
2546
+ Redirected to actionindex
2547
+ Completed in 3ms (DB: 0) | 302 Found [http://localhost/en_Latn_US_NYNORSK/samples/set_cookie/ja_JP]
2548
+
2549
+
2550
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:40:09) [GET]
2551
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BkY=--c700c88b5042ff1a5c23292bb6d67abdaa8998c6
2552
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2553
+ Rendering template within layouts/samples
2554
+ Rendering samples/index
2555
+ Rendered samples/_part (9.0ms)
2556
+ Completed in 19ms (View: 18, DB: 0) | 200 OK [http://localhost/samples]
2557
+
2558
+
2559
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:40:27) [GET]
2560
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiIENvb2tpZSBsYW5nIHZhbHVlIGlzOiBqYV9KUAY6CkB1c2VkewY7BlQ=--c5ce8251c879f27b4a55e90c44caa7e811ec2e69
2561
+ Parameters: {"action"=>"index", "lang"=>"uz_UZ", "controller"=>"samples"}
2562
+ Rendering template within layouts/samples
2563
+ Rendering samples/index
2564
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://localhost/uz_UZ/samples]
2565
+
2566
+
2567
+ Processing SamplesController#index (for 127.0.0.1 at 2008-12-03 23:40:29) [GET]
2568
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--7cecde90ce50560b7db576de57d351f7e77d3231
2569
+ Parameters: {"action"=>"index", "controller"=>"samples"}
2570
+ Rendering template within layouts/samples
2571
+ Rendering samples/index
2572
+ Rendered samples/_part (9.0ms)
2573
+ Completed in 20ms (View: 19, DB: 0) | 200 OK [http://localhost/samples]